diff options
| author | Martijn Cuppens <[email protected]> | 2019-07-24 08:41:18 +0200 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2019-07-24 10:31:49 +0300 |
| commit | b2ae6a6a94a70a027469fa64723e8268ca66254b (patch) | |
| tree | 8757e1fb3bae0b9a5fc532355a6dc6e398e6de82 /scss | |
| parent | f4cc5d3e4160e12519284a9c5ded27944265fea1 (diff) | |
| download | bootstrap-b2ae6a6a94a70a027469fa64723e8268ca66254b.tar.xz bootstrap-b2ae6a6a94a70a027469fa64723e8268ca66254b.zip | |
Apply `at-mixin-argumentless-call-parentheses: always` stylelint rule
Diffstat (limited to 'scss')
| -rw-r--r-- | scss/_dropdown.scss | 2 | ||||
| -rw-r--r-- | scss/_images.scss | 4 | ||||
| -rw-r--r-- | scss/_type.scss | 4 | ||||
| -rw-r--r-- | scss/helpers/_text.scss | 2 | ||||
| -rw-r--r-- | scss/mixins/_caret.scss | 8 |
5 files changed, 10 insertions, 10 deletions
diff --git a/scss/_dropdown.scss b/scss/_dropdown.scss index 3f4664154..70c07ab4b 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 bc8249f43..a7dbb1e73 100644 --- a/scss/_type.scss +++ b/scss/_type.scss @@ -71,12 +71,12 @@ // .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/helpers/_text.scss b/scss/helpers/_text.scss index 419703f1c..3c2dbbd1d 100644 --- a/scss/helpers/_text.scss +++ b/scss/helpers/_text.scss @@ -3,5 +3,5 @@ // .text-truncate { - @include text-truncate; + @include text-truncate(); } 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(); } } |
