diff options
author | Robin Poort <robin@timble.net> | 2016-05-11 13:46:19 +0200 |
---|---|---|
committer | Robin Poort <robin@timble.net> | 2016-05-11 13:46:19 +0200 |
commit | 2a822d7b45e83972ee84d3b5118c027258d70f5e (patch) | |
tree | 094f9b7959c0b6efa7aa26763ecd4e34715c58e2 /src/less/variables.less | |
parent | cc5b363d662cf9a4f60919a4cf94913e6b588149 (diff) | |
download | plyr-2a822d7b45e83972ee84d3b5118c027258d70f5e.tar.lz plyr-2a822d7b45e83972ee84d3b5118c027258d70f5e.tar.xz plyr-2a822d7b45e83972ee84d3b5118c027258d70f5e.zip |
Adding LESS settings
- Added setting to be able to disable the border-box if you already defined that in your own css
- Added setting to be able to disable touch-action if you already defined that in your own css
- Added setting to choose not to use !important for sr-only class
Diffstat (limited to 'src/less/variables.less')
-rw-r--r-- | src/less/variables.less | 5 |
1 files changed, 5 insertions, 0 deletions
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; |