Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/JohnAlbin/normalize-scss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJohnAlbin <virtually.johnalbin@gmail.com>2016-05-22 11:17:10 +0300
committerJohnAlbin <virtually.johnalbin@gmail.com>2016-05-22 11:17:10 +0300
commit7345052b3f8978866614058d8313e060ff290550 (patch)
tree8ec7b71c19089b77998f3b3d2fc37b5f8275b2a2 /test
parentef0ea67aa934c1f9e76675e28ca4ab7e93e96392 (diff)
Fix button styling in typey-chroma-kss fork.
Diffstat (limited to 'test')
-rw-r--r--test/fixtures/fork-versions/typey-chroma-kss/output.css131
1 files changed, 67 insertions, 64 deletions
diff --git a/test/fixtures/fork-versions/typey-chroma-kss/output.css b/test/fixtures/fork-versions/typey-chroma-kss/output.css
index 1e6fa2e..7393b4a 100644
--- a/test/fixtures/fork-versions/typey-chroma-kss/output.css
+++ b/test/fixtures/fork-versions/typey-chroma-kss/output.css
@@ -48,9 +48,8 @@ template,
[hidden] {
display: none; }
-:link {
+a {
color: #0072b9;
- background-color: transparent;
-webkit-text-decoration-skip: objects; }
:visited {
@@ -58,6 +57,8 @@ template,
a:active {
color: #c00; }
+ a:active:not(.button) {
+ background-color: transparent; }
a:active,
a:hover {
@@ -213,6 +214,52 @@ svg {
svg:not(:root) {
overflow: hidden; }
+button,
+input,
+optgroup,
+select,
+textarea {
+ box-sizing: border-box;
+ max-width: 100%;
+ font: inherit;
+ margin: 0; }
+
+button {
+ overflow: visible; }
+
+button,
+select {
+ text-transform: none; }
+
+input {
+ overflow: visible; }
+
+[type='number']::-webkit-inner-spin-button,
+[type='number']::-webkit-outer-spin-button {
+ height: auto; }
+
+[type='search'] {
+ -webkit-appearance: textfield;
+ outline-offset: -2px; }
+ [type='search']::-webkit-search-cancel-button, [type='search']::-webkit-search-decoration {
+ -webkit-appearance: none; }
+
+::-webkit-input-placeholder {
+ color: inherit;
+ opacity: .54; }
+
+::-webkit-file-upload-button {
+ -webkit-appearance: button;
+ font: inherit; }
+
+.button,
+button,
+html [type='button'],
+[type='reset'],
+[type='submit'] {
+ -moz-appearance: button;
+ -webkit-appearance: button; }
+
.button,
button,
[type='button'],
@@ -239,85 +286,41 @@ button,
outline: 1px dotted ButtonText; }
.button:hover, .button:focus, .button:active,
button:hover,
- [type='button']:hover,
- [type='reset']:hover,
- [type='submit']:hover,
button:focus,
- [type='button']:focus,
- [type='reset']:focus,
- [type='submit']:focus,
button:active,
+ [type='button']:hover,
+ [type='button']:focus,
[type='button']:active,
+ [type='reset']:hover,
+ [type='reset']:focus,
[type='reset']:active,
+ [type='submit']:hover,
+ [type='submit']:focus,
[type='submit']:active {
text-decoration: none;
color: #000; }
.button[disabled],
button[disabled],
- [disabled][type='button'],
- [disabled][type='reset'],
- [disabled][type='submit'] {
+ [type='button'][disabled],
+ [type='reset'][disabled],
+ [type='submit'][disabled] {
cursor: default;
color: #999999; }
.button[disabled]:hover, .button[disabled]:focus, .button[disabled]:active,
button[disabled]:hover,
- [disabled][type='button']:hover,
- [disabled][type='reset']:hover,
- [disabled][type='submit']:hover,
button[disabled]:focus,
- [disabled][type='button']:focus,
- [disabled][type='reset']:focus,
- [disabled][type='submit']:focus,
button[disabled]:active,
- [disabled][type='button']:active,
- [disabled][type='reset']:active,
- [disabled][type='submit']:active {
+ [type='button'][disabled]:hover,
+ [type='button'][disabled]:focus,
+ [type='button'][disabled]:active,
+ [type='reset'][disabled]:hover,
+ [type='reset'][disabled]:focus,
+ [type='reset'][disabled]:active,
+ [type='submit'][disabled]:hover,
+ [type='submit'][disabled]:focus,
+ [type='submit'][disabled]:active {
color: #999999; }
-button,
-input,
-optgroup,
-select,
-textarea {
- box-sizing: border-box;
- max-width: 100%;
- font: inherit;
- margin: 0; }
-
-button {
- overflow: visible; }
-
-button,
-select {
- text-transform: none; }
-
-button,
-html [type='button'],
-[type='reset'],
-[type='submit'] {
- -webkit-appearance: button; }
-
-input {
- overflow: visible; }
-
-[type='number']::-webkit-inner-spin-button,
-[type='number']::-webkit-outer-spin-button {
- height: auto; }
-
-[type='search'] {
- -webkit-appearance: textfield;
- outline-offset: -2px; }
- [type='search']::-webkit-search-cancel-button, [type='search']::-webkit-search-decoration {
- -webkit-appearance: none; }
-
-::-webkit-input-placeholder {
- color: inherit;
- opacity: .54; }
-
-::-webkit-file-upload-button {
- -webkit-appearance: button;
- font: inherit; }
-
[type='checkbox'],
[type='radio'] {
box-sizing: border-box;