aboutsummaryrefslogtreecommitdiff
path: root/scss
diff options
context:
space:
mode:
authorMartijn Cuppens <[email protected]>2019-07-24 08:41:18 +0200
committerXhmikosR <[email protected]>2019-07-31 11:37:39 +0300
commitd59aa2c702bbbec8d5aeb8c4c4e4049e1e223eb4 (patch)
tree84f21bf0d08acdc55d46af12cb30a70ee1285aab /scss
parent22f6a4beeae438452f6567473f06cffce69b19c2 (diff)
downloadbootstrap-d59aa2c702bbbec8d5aeb8c4c4e4049e1e223eb4.tar.xz
bootstrap-d59aa2c702bbbec8d5aeb8c4c4e4049e1e223eb4.zip
Apply `at-mixin-argumentless-call-parentheses: always` stylelint rule
Diffstat (limited to 'scss')
-rw-r--r--scss/_dropdown.scss2
-rw-r--r--scss/_images.scss4
-rw-r--r--scss/_type.scss4
-rw-r--r--scss/mixins/_caret.scss8
4 files changed, 9 insertions, 9 deletions
diff --git a/scss/_dropdown.scss b/scss/_dropdown.scss
index ac3c8c8a2..c657c5d10 100644
--- a/scss/_dropdown.scss
+++ b/scss/_dropdown.scss
@@ -10,7 +10,7 @@
white-space: nowrap;
// Generate the caret automatically
- @include caret;
+ @include caret();
}
// The dropdown menu
diff --git a/scss/_images.scss b/scss/_images.scss
index cb9795e27..b11b45a37 100644
--- a/scss/_images.scss
+++ b/scss/_images.scss
@@ -6,7 +6,7 @@
// which weren't expecting the images within themselves to be involuntarily resized.
// See also https://github.com/twbs/bootstrap/issues/18178
.img-fluid {
- @include img-fluid;
+ @include img-fluid();
}
@@ -19,7 +19,7 @@
@include box-shadow($thumbnail-box-shadow);
// Keep them at most 100% wide
- @include img-fluid;
+ @include img-fluid();
}
//
diff --git a/scss/_type.scss b/scss/_type.scss
index f8ed09065..43dde7d0f 100644
--- a/scss/_type.scss
+++ b/scss/_type.scss
@@ -82,12 +82,12 @@ mark,
//
.list-unstyled {
- @include list-unstyled;
+ @include list-unstyled();
}
// Inline turns list items into inline-block
.list-inline {
- @include list-unstyled;
+ @include list-unstyled();
}
.list-inline-item {
display: inline-block;
diff --git a/scss/mixins/_caret.scss b/scss/mixins/_caret.scss
index 8ecef65b4..07d72280c 100644
--- a/scss/mixins/_caret.scss
+++ b/scss/mixins/_caret.scss
@@ -33,11 +33,11 @@
vertical-align: $caret-vertical-align;
content: "";
@if $direction == down {
- @include caret-down;
+ @include caret-down();
} @else if $direction == up {
- @include caret-up;
+ @include caret-up();
} @else if $direction == right {
- @include caret-right;
+ @include caret-right();
}
}
@@ -51,7 +51,7 @@
margin-right: $caret-spacing;
vertical-align: $caret-vertical-align;
content: "";
- @include caret-left;
+ @include caret-left();
}
}