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
parenta3e5051290ddc889f1dfcd30e35730b017a506ca (diff)
Rearrange property order on legend element. #88
-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
-rw-r--r--sass/normalize/_normalize-mixin.scss4
-rw-r--r--test/fixtures/fork-versions/default/output.css8
-rw-r--r--test/fixtures/fork-versions/deprecated-compass/output.css8
-rw-r--r--test/fixtures/fork-versions/typey-chroma-kss/output.css6
-rw-r--r--test/fixtures/fork-versions/typey/output.css8
-rw-r--r--test/fixtures/import-now/output.css8
-rw-r--r--test/fixtures/normalize/exclude-multiple/output.css8
-rw-r--r--test/fixtures/normalize/exclude-string/output.css8
-rw-r--r--test/fixtures/variables/default/output.css8
-rw-r--r--test/fixtures/variables/font/output.css8
-rw-r--r--test/fixtures/variables/indent-amount-and-vertical-rhythm/output.css8
-rw-r--r--test/fixtures/variables/indent-amount/output.css8
16 files changed, 54 insertions, 54 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 */
}
/**
diff --git a/sass/normalize/_normalize-mixin.scss b/sass/normalize/_normalize-mixin.scss
index 0166670..ca62404 100644
--- a/sass/normalize/_normalize-mixin.scss
+++ b/sass/normalize/_normalize-mixin.scss
@@ -587,9 +587,9 @@
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/test/fixtures/fork-versions/default/output.css b/test/fixtures/fork-versions/default/output.css
index 047e693..4660414 100644
--- a/test/fixtures/fork-versions/default/output.css
+++ b/test/fixtures/fork-versions/default/output.css
@@ -359,12 +359,12 @@ legend {
/* 1 */
max-width: 100%;
/* 1 */
- white-space: normal;
- /* 1 */
+ padding: 0;
+ /* 3 */
color: inherit;
/* 2 */
- padding: 0;
- /* 3 */ }
+ white-space: normal;
+ /* 1 */ }
/**
* 1. Add the correct display in IE 9-.
diff --git a/test/fixtures/fork-versions/deprecated-compass/output.css b/test/fixtures/fork-versions/deprecated-compass/output.css
index f195aa4..395db29 100644
--- a/test/fixtures/fork-versions/deprecated-compass/output.css
+++ b/test/fixtures/fork-versions/deprecated-compass/output.css
@@ -386,12 +386,12 @@ legend {
/* 1 */
max-width: 100%;
/* 1 */
- white-space: normal;
- /* 1 */
+ padding: 0;
+ /* 3 */
color: inherit;
/* 2 */
- padding: 0;
- /* 3 */ }
+ white-space: normal;
+ /* 1 */ }
/**
* 1. Add the correct display in IE 9-.
diff --git a/test/fixtures/fork-versions/typey-chroma-kss/output.css b/test/fixtures/fork-versions/typey-chroma-kss/output.css
index b06481d..f8de1ee 100644
--- a/test/fixtures/fork-versions/typey-chroma-kss/output.css
+++ b/test/fixtures/fork-versions/typey-chroma-kss/output.css
@@ -324,10 +324,10 @@ legend {
box-sizing: border-box;
display: table;
max-width: 100%;
- white-space: normal;
- color: inherit;
margin-left: -5px;
- padding: 0 5px; }
+ padding: 0 5px;
+ color: inherit;
+ white-space: normal; }
progress {
display: inline-block;
diff --git a/test/fixtures/fork-versions/typey/output.css b/test/fixtures/fork-versions/typey/output.css
index 87e98df..717bfaf 100644
--- a/test/fixtures/fork-versions/typey/output.css
+++ b/test/fixtures/fork-versions/typey/output.css
@@ -424,12 +424,12 @@ legend {
/* 1 */
max-width: 100%;
/* 1 */
- white-space: normal;
- /* 1 */
+ padding: 0;
+ /* 3 */
color: inherit;
/* 2 */
- padding: 0;
- /* 3 */ }
+ white-space: normal;
+ /* 1 */ }
/**
* 1. Add the correct display in IE 9-.
diff --git a/test/fixtures/import-now/output.css b/test/fixtures/import-now/output.css
index 14897bb..e3c0a62 100644
--- a/test/fixtures/import-now/output.css
+++ b/test/fixtures/import-now/output.css
@@ -369,12 +369,12 @@ legend {
/* 1 */
max-width: 100%;
/* 1 */
- white-space: normal;
- /* 1 */
+ padding: 0;
+ /* 3 */
color: inherit;
/* 2 */
- padding: 0;
- /* 3 */ }
+ white-space: normal;
+ /* 1 */ }
/**
* 1. Add the correct display in IE 9-.
diff --git a/test/fixtures/normalize/exclude-multiple/output.css b/test/fixtures/normalize/exclude-multiple/output.css
index bc3db2d..a5f32e4 100644
--- a/test/fixtures/normalize/exclude-multiple/output.css
+++ b/test/fixtures/normalize/exclude-multiple/output.css
@@ -298,12 +298,12 @@ legend {
/* 1 */
max-width: 100%;
/* 1 */
- white-space: normal;
- /* 1 */
+ padding: 0;
+ /* 3 */
color: inherit;
/* 2 */
- padding: 0;
- /* 3 */ }
+ white-space: normal;
+ /* 1 */ }
/**
* 1. Add the correct display in IE 9-.
diff --git a/test/fixtures/normalize/exclude-string/output.css b/test/fixtures/normalize/exclude-string/output.css
index 63e262d..a0283ce 100644
--- a/test/fixtures/normalize/exclude-string/output.css
+++ b/test/fixtures/normalize/exclude-string/output.css
@@ -369,12 +369,12 @@ legend {
/* 1 */
max-width: 100%;
/* 1 */
- white-space: normal;
- /* 1 */
+ padding: 0;
+ /* 3 */
color: inherit;
/* 2 */
- padding: 0;
- /* 3 */ }
+ white-space: normal;
+ /* 1 */ }
/**
* 1. Add the correct display in IE 9-.
diff --git a/test/fixtures/variables/default/output.css b/test/fixtures/variables/default/output.css
index 14897bb..e3c0a62 100644
--- a/test/fixtures/variables/default/output.css
+++ b/test/fixtures/variables/default/output.css
@@ -369,12 +369,12 @@ legend {
/* 1 */
max-width: 100%;
/* 1 */
- white-space: normal;
- /* 1 */
+ padding: 0;
+ /* 3 */
color: inherit;
/* 2 */
- padding: 0;
- /* 3 */ }
+ white-space: normal;
+ /* 1 */ }
/**
* 1. Add the correct display in IE 9-.
diff --git a/test/fixtures/variables/font/output.css b/test/fixtures/variables/font/output.css
index 1fd3416..534aa32 100644
--- a/test/fixtures/variables/font/output.css
+++ b/test/fixtures/variables/font/output.css
@@ -431,12 +431,12 @@ legend {
/* 1 */
max-width: 100%;
/* 1 */
- white-space: normal;
- /* 1 */
+ padding: 0;
+ /* 3 */
color: inherit;
/* 2 */
- padding: 0;
- /* 3 */ }
+ white-space: normal;
+ /* 1 */ }
/**
* 1. Add the correct display in IE 9-.
diff --git a/test/fixtures/variables/indent-amount-and-vertical-rhythm/output.css b/test/fixtures/variables/indent-amount-and-vertical-rhythm/output.css
index b1c387c..05315d2 100644
--- a/test/fixtures/variables/indent-amount-and-vertical-rhythm/output.css
+++ b/test/fixtures/variables/indent-amount-and-vertical-rhythm/output.css
@@ -431,12 +431,12 @@ legend {
/* 1 */
max-width: 100%;
/* 1 */
- white-space: normal;
- /* 1 */
+ padding: 0;
+ /* 3 */
color: inherit;
/* 2 */
- padding: 0;
- /* 3 */ }
+ white-space: normal;
+ /* 1 */ }
/**
* 1. Add the correct display in IE 9-.
diff --git a/test/fixtures/variables/indent-amount/output.css b/test/fixtures/variables/indent-amount/output.css
index acbdb96..38292d9 100644
--- a/test/fixtures/variables/indent-amount/output.css
+++ b/test/fixtures/variables/indent-amount/output.css
@@ -369,12 +369,12 @@ legend {
/* 1 */
max-width: 100%;
/* 1 */
- white-space: normal;
- /* 1 */
+ padding: 0;
+ /* 3 */
color: inherit;
/* 2 */
- padding: 0;
- /* 3 */ }
+ white-space: normal;
+ /* 1 */ }
/**
* 1. Add the correct display in IE 9-.