aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSam Potts <sam@selz.com>2016-05-11 22:39:54 +1000
committerSam Potts <sam@selz.com>2016-05-11 22:39:54 +1000
commit31c933af3838669a6bb043cafe7778a810303f47 (patch)
tree30dffeffb1f038595e57a9715beae342c3fc5ce5 /src
parentcc5b363d662cf9a4f60919a4cf94913e6b588149 (diff)
parent00137fe46bc5709ef1a25e8a027694291b3c378d (diff)
downloadplyr-31c933af3838669a6bb043cafe7778a810303f47.tar.lz
plyr-31c933af3838669a6bb043cafe7778a810303f47.tar.xz
plyr-31c933af3838669a6bb043cafe7778a810303f47.zip
Merge pull request #209 from robinpoort/master
Add CSS settings
Diffstat (limited to 'src')
-rw-r--r--src/less/plyr.less45
-rw-r--r--src/less/variables.less5
-rw-r--r--src/scss/plyr.scss42
-rw-r--r--src/scss/variables.scss5
4 files changed, 68 insertions, 29 deletions
diff --git a/src/less/plyr.less b/src/less/plyr.less
index 69846a10..1b5c7eb2 100644
--- a/src/less/plyr.less
+++ b/src/less/plyr.less
@@ -21,18 +21,22 @@
min-width: 200px;
font-family: Avenir, "Avenir Next", "Helvetica Neue", "Segoe UI", Helvetica, Arial, sans-serif;
- // border-box everything
- // http://paulirish.com/2012/box-sizing-border-box-ftw/
- &,
- *,
- *::after,
- *::before {
- box-sizing: border-box;
+ & when (@plyr-border-box = true) {
+ // border-box everything
+ // http://paulirish.com/2012/box-sizing-border-box-ftw/
+ &,
+ *,
+ *::after,
+ *::before {
+ box-sizing: border-box;
+ }
}
- // Fix 300ms delay
- a, button, input, label {
- touch-action: manipulation;
+ & when (@plyr-touch-action = true) {
+ // Fix 300ms delay
+ a, button, input, label {
+ touch-action: manipulation;
+ }
}
// Media elements
@@ -138,13 +142,24 @@
// Screen reader only elements
.plyr__sr-only {
- position: absolute !important;
clip: rect(1px, 1px, 1px, 1px);
- padding: 0 !important;
- border: 0 !important;
- height: 1px !important;
- width: 1px !important;
overflow: hidden;
+
+ // !important is not always needed
+ & when (@plyr-sr-only-important = true) {
+ position: absolute !important;
+ padding: 0 !important;
+ border: 0 !important;
+ height: 1px !important;
+ width: 1px !important;
+ }
+ & when (@plyr-sr-only-important = false) {
+ position: absolute;
+ padding: 0;
+ border: 0;
+ height: 1px;
+ width: 1px;
+ }
}
// Video
diff --git a/src/less/variables.less b/src/less/variables.less
index ea5c6b8e..fa0f83e9 100644
--- a/src/less/variables.less
+++ b/src/less/variables.less
@@ -3,6 +3,11 @@
// https://github.com/selz/plyr
// ==========================================================================
+// Settings
+@plyr-border-box: true;
+@plyr-touch-action: true;
+@plyr-sr-only-important: true;
+
// Colors
@plyr-color-main: #3498db;
diff --git a/src/scss/plyr.scss b/src/scss/plyr.scss
index 0cb8968d..917c0645 100644
--- a/src/scss/plyr.scss
+++ b/src/scss/plyr.scss
@@ -21,18 +21,22 @@
min-width: 200px;
font-family: Avenir, "Avenir Next", "Helvetica Neue", "Segoe UI", Helvetica, Arial, sans-serif;
- // border-box everything
- // http://paulirish.com/2012/box-sizing-border-box-ftw/
- &,
- *,
- *::after,
- *::before {
- box-sizing: border-box;
+ @if $plyr-border-box == true {
+ // border-box everything
+ // http://paulirish.com/2012/box-sizing-border-box-ftw/
+ &,
+ *,
+ *::after,
+ *::before {
+ box-sizing: border-box;
+ }
}
- // Fix 300ms delay
- a, button, input, label {
+ @if $plyr-touch-action == true {
+ // Fix 300ms delay
+ a, button, input, label {
touch-action: manipulation;
+ }
}
// Media elements
@@ -138,13 +142,23 @@
// Screen reader only elements
.plyr__sr-only {
- position: absolute !important;
clip: rect(1px, 1px, 1px, 1px);
- padding: 0 !important;
- border: 0 !important;
- height: 1px !important;
- width: 1px !important;
overflow: hidden;
+
+ // !important is not always needed
+ @if $plyr-sr-only-important == true {
+ position: absolute !important;
+ padding: 0 !important;
+ border: 0 !important;
+ height: 1px !important;
+ width: 1px !important;
+ } @else {
+ position: absolute;
+ padding: 0;
+ border: 0;
+ height: 1px;
+ width: 1px;
+ }
}
// Video
diff --git a/src/scss/variables.scss b/src/scss/variables.scss
index baf47e25..7cc7e34c 100644
--- a/src/scss/variables.scss
+++ b/src/scss/variables.scss
@@ -4,6 +4,11 @@
// https://robots.thoughtbot.com/sass-default
// ==========================================================================
+// Settings
+$plyr-border-box: true !default;
+$plyr-touch-action: true !default;
+$plyr-sr-only-important: true !default;
+
// Colors
$plyr-color-main: #3498db !default;