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
diff options
context:
space:
mode:
authorJohnAlbin <virtually.johnalbin@gmail.com>2016-10-24 09:43:08 +0300
committerJohnAlbin <virtually.johnalbin@gmail.com>2016-10-24 09:43:08 +0300
commit7f983c1fc88fa66f90e298eb982c09ffff130919 (patch)
tree455e7ecfa43cd9e727ddea7eec40bc82b03c11c3 /fork-versions
parenta3e5051290ddc889f1dfcd30e35730b017a506ca (diff)
Rearrange property order on legend element. #88
Diffstat (limited to 'fork-versions')
-rw-r--r--fork-versions/default/_normalize.scss4
-rw-r--r--fork-versions/deprecated-compass/_normalize.scss4
-rw-r--r--fork-versions/typey-chroma-kss/base/forms/_forms.scss6
-rw-r--r--fork-versions/typey/_normalize.scss4
4 files changed, 9 insertions, 9 deletions
diff --git a/fork-versions/default/_normalize.scss b/fork-versions/default/_normalize.scss
index 23f383f..e90a3e9 100644
--- a/fork-versions/default/_normalize.scss
+++ b/fork-versions/default/_normalize.scss
@@ -546,9 +546,9 @@ legend {
box-sizing: border-box; /* 1 */
display: table; /* 1 */
max-width: 100%; /* 1 */
- white-space: normal; /* 1 */
- color: inherit; /* 2 */
padding: 0; /* 3 */
+ color: inherit; /* 2 */
+ white-space: normal; /* 1 */
}
/**
diff --git a/fork-versions/deprecated-compass/_normalize.scss b/fork-versions/deprecated-compass/_normalize.scss
index 3f503be..6f1bdef 100644
--- a/fork-versions/deprecated-compass/_normalize.scss
+++ b/fork-versions/deprecated-compass/_normalize.scss
@@ -547,9 +547,9 @@ legend {
box-sizing: border-box; /* 1 */
display: table; /* 1 */
max-width: 100%; /* 1 */
- white-space: normal; /* 1 */
- color: inherit; /* 2 */
padding: 0; /* 3 */
+ color: inherit; /* 2 */
+ white-space: normal; /* 1 */
}
/**
diff --git a/fork-versions/typey-chroma-kss/base/forms/_forms.scss b/fork-versions/typey-chroma-kss/base/forms/_forms.scss
index 777c046..8ce8602 100644
--- a/fork-versions/typey-chroma-kss/base/forms/_forms.scss
+++ b/fork-versions/typey-chroma-kss/base/forms/_forms.scss
@@ -186,13 +186,13 @@ legend {
box-sizing: border-box;
display: table;
max-width: 100%;
- white-space: normal;
- // Correct the color inheritance from `fieldset` elements in IE.
- color: inherit;
// Align legend text with a fieldset's text while removing left padding so
// people aren't caught out if they zero out fieldset padding.
margin-left: -5px;
padding: 0 5px;
+ // Correct the color inheritance from `fieldset` elements in IE.
+ color: inherit;
+ white-space: normal;
}
// Labels
diff --git a/fork-versions/typey/_normalize.scss b/fork-versions/typey/_normalize.scss
index bde053f..8f1213c 100644
--- a/fork-versions/typey/_normalize.scss
+++ b/fork-versions/typey/_normalize.scss
@@ -497,9 +497,9 @@ legend {
box-sizing: border-box; /* 1 */
display: table; /* 1 */
max-width: 100%; /* 1 */
- white-space: normal; /* 1 */
- color: inherit; /* 2 */
padding: 0; /* 3 */
+ color: inherit; /* 2 */
+ white-space: normal; /* 1 */
}
/**