diff options
author | Sam Potts <me@sampotts.me> | 2017-10-28 20:14:33 +1100 |
---|---|---|
committer | Sam Potts <me@sampotts.me> | 2017-10-28 20:14:33 +1100 |
commit | 3d50936b47fdd691816843de962d5699c3c8f596 (patch) | |
tree | 1ec372b21d86bd54cc0e9e679e1ef37f68344b32 /demo/src/less/lib/normalize.less | |
parent | dd9d5c8898bd5e58c6faec13d6213b8fe079446a (diff) | |
download | plyr-3d50936b47fdd691816843de962d5699c3c8f596.tar.lz plyr-3d50936b47fdd691816843de962d5699c3c8f596.tar.xz plyr-3d50936b47fdd691816843de962d5699c3c8f596.zip |
Split LESS into more granular files, Vimeo fixes
Diffstat (limited to 'demo/src/less/lib/normalize.less')
-rw-r--r-- | demo/src/less/lib/normalize.less | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/demo/src/less/lib/normalize.less b/demo/src/less/lib/normalize.less index 562891ab..34743e73 100644 --- a/demo/src/less/lib/normalize.less +++ b/demo/src/less/lib/normalize.less @@ -189,7 +189,7 @@ pre { */ q { - quotes: "\201C" "\201D" "\2018" "\2019"; + quotes: '\201C' '\201D' '\2018' '\2019'; } /** @@ -322,9 +322,9 @@ select { */ button, -html input[type="button"], /* 1 */ -input[type="reset"], -input[type="submit"] { +html input[type='button'], +input[type='reset'], +input[type='submit'] { -webkit-appearance: button; /* 2 */ cursor: pointer; /* 3 */ } @@ -343,8 +343,8 @@ html input[disabled] { * 2. Remove excess padding in IE 8/9/10. */ -input[type="checkbox"], -input[type="radio"] { +input[type='checkbox'], +input[type='radio'] { box-sizing: border-box; /* 1 */ padding: 0; /* 2 */ } @@ -355,7 +355,7 @@ input[type="radio"] { * (include `-moz` to future-proof). */ -input[type="search"] { +input[type='search'] { -webkit-appearance: textfield; /* 1 */ -moz-box-sizing: content-box; -webkit-box-sizing: content-box; /* 2 */ @@ -367,8 +367,8 @@ input[type="search"] { * on OS X. */ -input[type="search"]::-webkit-search-cancel-button, -input[type="search"]::-webkit-search-decoration { +input[type='search']::-webkit-search-cancel-button, +input[type='search']::-webkit-search-decoration { -webkit-appearance: none; } @@ -403,4 +403,4 @@ textarea { table { border-collapse: collapse; border-spacing: 0; -}
\ No newline at end of file +} |