]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
update css with latest stylelint
authorMark Otto <markdotto@gmail.com>
Mon, 9 Apr 2018 01:08:03 +0000 (18:08 -0700)
committerMark Otto <markdotto@gmail.com>
Mon, 9 Apr 2018 01:08:03 +0000 (18:08 -0700)
docs/assets/less/customizer.less
docs/assets/less/masthead.less
docs/examples/justified-nav/justified-nav.css
less/glyphicons.less
less/mixins/gradients.less
less/mixins/hide-text.less

index a87fca971ef53248a75257d925496ed06240f69c..47417ae3ce17139fe3fb774d9a17a53c1f31151a 100644 (file)
@@ -1,4 +1,4 @@
-/* stylelint-disable property-no-vendor-prefix, selector-max-id */
+/* stylelint-disable property-no-vendor-prefix, selector-max-id, selector-no-qualifying-type */
 
 .bs-customizer .toggle {
   float: right;
index 284fdece70600aa2a9551048ae349d94b527dccb..ce4d173bf449f96614a42d9221a949dbe16228e7 100644 (file)
@@ -12,8 +12,8 @@
   background-image: -webkit-linear-gradient(top, #563d7c 0%, #6f5499 100%);
   background-image: -o-linear-gradient(top, #563d7c 0%, #6f5499 100%);
   background-image: linear-gradient(to bottom, #563d7c 0%, #6f5499 100%);
-  background-repeat: repeat-x;
   filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#563d7c", endColorstr="#6F5499", GradientType=0);
+  background-repeat: repeat-x;
 }
 
 // Masthead (headings and download button)
index 8e03ffb8cc3bba0ec348ae8b493c3409fdaabf7d..069e0ce7ba13da8b579cbe699d40b951b843721c 100644 (file)
@@ -40,8 +40,8 @@ body {
   background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e5e5e5 100%);
   background-image: -o-linear-gradient(top, #f5f5f5 0%, #e5e5e5 100%);
   background-image: linear-gradient(to bottom, #f5f5f5 0%, #e5e5e5 100%);
-  background-repeat: repeat-x; /* Repeat the gradient */
   filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f5f5f5", endColorstr="#e5e5e5", GradientType=0); /* IE6-9 */
+  background-repeat: repeat-x; /* Repeat the gradient */
   border-bottom: 1px solid #d5d5d5;
 }
 .nav-justified > .active > a,
index 266aaecdee4b082d2e447c12854e0e8b8f75b9ca..9ebcb0d941879315f3600f66b3341f540aa55260 100644 (file)
@@ -1,4 +1,4 @@
-/* stylelint-disable value-list-comma-newline-after, value-list-comma-space-after, indentation, declaration-colon-newline-after */
+/* stylelint-disable value-list-comma-newline-after, value-list-comma-space-after, indentation, declaration-colon-newline-after, font-family-no-missing-generic-family-keyword */
 
 //
 // Glyphicons for Bootstrap
index b0550837979952a0ac26f511d1acd4d05c6c4f5a..7dd2311cb599f3a45451a9dc27f6153958220b12 100644 (file)
@@ -1,4 +1,4 @@
-/* stylelint-disable value-no-vendor-prefix */
+/* stylelint-disable value-no-vendor-prefix, selector-max-id */
 
 #gradient {
 
@@ -10,8 +10,8 @@
     background-image: -webkit-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+
     background-image: -o-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Opera 12
     background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+
-    background-repeat: repeat-x;
     filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)", argb(@start-color), argb(@end-color))); // IE9 and down
+    background-repeat: repeat-x;
   }
 
   // Vertical gradient, from top to bottom
@@ -22,8 +22,8 @@
     background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent);  // Safari 5.1-6, Chrome 10+
     background-image: -o-linear-gradient(top, @start-color @start-percent, @end-color @end-percent);  // Opera 12
     background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+
-    background-repeat: repeat-x;
     filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)", argb(@start-color), argb(@end-color))); // IE9 and down
+    background-repeat: repeat-x;
   }
 
   .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {
     background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);
     background-image: -o-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);
     background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);
-    background-repeat: no-repeat;
     filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)", argb(@start-color), argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback
+    background-repeat: no-repeat;
   }
   .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {
     background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);
     background-image: -o-linear-gradient(@start-color, @mid-color @color-stop, @end-color);
     background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);
-    background-repeat: no-repeat;
     filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)", argb(@start-color), argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback
+    background-repeat: no-repeat;
   }
   .radial(@inner-color: #555; @outer-color: #333) {
     background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);
index ca7e6c5325a11fcfc4e3a19e9e9c9ad19d296735..ac9c6bf7cc95b4938aee9e02608fba9983da4c38 100644 (file)
@@ -1,4 +1,4 @@
-/* stylelint-disable font-family-name-quotes */
+/* stylelint-disable font-family-name-quotes, font-family-no-missing-generic-family-keyword */
 
 // CSS image replacement
 //