]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Remove unneeded stylelint disables.
authorXhmikosR <xhmikosr@gmail.com>
Sat, 5 Jan 2019 17:18:19 +0000 (19:18 +0200)
committerXhmikosR <xhmikosr@gmail.com>
Sat, 5 Jan 2019 18:50:07 +0000 (20:50 +0200)
scss/_forms.scss
scss/_transitions.scss
scss/mixins/_image.scss
scss/mixins/_reset-text.scss

index 92175b09027e458ccdc536d4f97861b19b717276..9d3b6e330feb561bb8929170cb78f1ca7c3b4a1d 100644 (file)
@@ -157,7 +157,6 @@ select.form-control {
   }
 }
 
-// stylelint-disable-next-line no-duplicate-selectors
 textarea.form-control {
   height: auto;
 }
index c8d91e27176a9ffe2fe0687e8f16328d2e2f1dd9..40be4d918add473357851dcd32b3b17f54afae27 100644 (file)
@@ -1,5 +1,3 @@
-// stylelint-disable selector-no-qualifying-type
-
 .fade {
   @include transition($transition-fade);
 
index 0544f0d2a348a6aa65896cae1424b9df55ad6c1e..e4e6e81441fe0c02f192ba0d12f4e41ce3380e9e 100644 (file)
@@ -20,7 +20,6 @@
 //
 // Short retina mixin for setting background-image and -size.
 
-// stylelint-disable indentation, media-query-list-comma-newline-after
 @mixin img-retina($file-1x, $file-2x, $width-1x, $height-1x) {
   background-image: url($file-1x);
 
@@ -29,7 +28,7 @@
   // There's no such thing as unprefixed min-device-pixel-ratio since it's nonstandard.
   // Compatibility info: https://caniuse.com/#feat=css-media-resolution
   @media only screen and (min-resolution: 192dpi), // IE9-11 don't support dppx
-  only screen and (min-resolution: 2dppx) { // Standardized
+    only screen and (min-resolution: 2dppx) { // Standardized
     background-image: url($file-2x);
     background-size: $width-1x $height-1x;
   }
index 71edb0061aea4a3a355d2cc5cdab58a323bc40b3..bfa9f6e9ad88ce10eac705bfc0559fcc2c5890c6 100644 (file)
@@ -5,7 +5,7 @@
   font-weight: $font-weight-normal;
   line-height: $line-height-base;
   text-align: left; // Fallback for where `start` is not supported
-  text-align: start; // stylelint-disable-line declaration-block-no-duplicate-properties
+  text-align: start;
   text-decoration: none;
   text-shadow: none;
   text-transform: none;