Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Bootstrap
bootstrap
Commits
f21b5f9e
Commit
f21b5f9e
authored
6 years ago
by
XhmikosR
Browse files
Options
Download
Email Patches
Plain Diff
Remove unneeded stylelint disables.
parent
fcb03482
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
scss/_forms.scss
+0
-1
scss/_forms.scss
scss/_transitions.scss
+0
-2
scss/_transitions.scss
scss/mixins/_image.scss
+1
-2
scss/mixins/_image.scss
scss/mixins/_reset-text.scss
+1
-1
scss/mixins/_reset-text.scss
with
2 additions
and
6 deletions
+2
-6
scss/_forms.scss
+
0
-
1
View file @
f21b5f9e
...
@@ -157,7 +157,6 @@ select.form-control {
...
@@ -157,7 +157,6 @@ select.form-control {
}
}
}
}
// stylelint-disable-next-line no-duplicate-selectors
textarea
.form-control
{
textarea
.form-control
{
height
:
auto
;
height
:
auto
;
}
}
...
...
This diff is collapsed.
Click to expand it.
scss/_transitions.scss
+
0
-
2
View file @
f21b5f9e
// stylelint-disable selector-no-qualifying-type
.fade
{
.fade
{
@include
transition
(
$transition-fade
);
@include
transition
(
$transition-fade
);
...
...
This diff is collapsed.
Click to expand it.
scss/mixins/_image.scss
+
1
-
2
View file @
f21b5f9e
...
@@ -20,7 +20,6 @@
...
@@ -20,7 +20,6 @@
//
//
// Short retina mixin for setting background-image and -size.
// 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
)
{
@mixin
img-retina
(
$file-1x
,
$file-2x
,
$width-1x
,
$height-1x
)
{
background-image
:
url($file-1x)
;
background-image
:
url($file-1x)
;
...
@@ -29,7 +28,7 @@
...
@@ -29,7 +28,7 @@
// There's no such thing as unprefixed min-device-pixel-ratio since it's nonstandard.
// There's no such thing as unprefixed min-device-pixel-ratio since it's nonstandard.
// Compatibility info: https://caniuse.com/#feat=css-media-resolution
// Compatibility info: https://caniuse.com/#feat=css-media-resolution
@media
only
screen
and
(
min-resolution
:
192dpi
)
,
//
IE9-11
don
't support dppx
@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-image: url($file-2x);
background-size: $width-1x $height-1x;
background-size: $width-1x $height-1x;
}
}
...
...
This diff is collapsed.
Click to expand it.
scss/mixins/_reset-text.scss
+
1
-
1
View file @
f21b5f9e
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
font-weight
:
$font-weight-normal
;
font-weight
:
$font-weight-normal
;
line-height
:
$line-height-base
;
line-height
:
$line-height-base
;
text-align
:
left
;
// Fallback for where `start` is not supported
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-decoration
:
none
;
text-shadow
:
none
;
text-shadow
:
none
;
text-transform
:
none
;
text-transform
:
none
;
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment