diff options
| author | XhmikosR <[email protected]> | 2020-06-12 11:11:36 +0300 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-06-12 11:11:36 +0300 |
| commit | 3d8d0012c846caf2592319bace8b5826cef19c66 (patch) | |
| tree | fef8a728dbfb5b8f3ef19e7f7b17f3a80e638611 | |
| parent | 2a4e97b56c864a798d323e1460e602b2bddac604 (diff) | |
| download | bootstrap-3d8d0012c846caf2592319bace8b5826cef19c66.tar.xz bootstrap-3d8d0012c846caf2592319bace8b5826cef19c66.zip | |
Stylelint: remove redundant disables (#31006)
| -rw-r--r-- | scss/_buttons.scss | 2 | ||||
| -rw-r--r-- | scss/_tables.scss | 2 | ||||
| -rw-r--r-- | site/assets/scss/_component-examples.scss | 2 |
3 files changed, 1 insertions, 5 deletions
diff --git a/scss/_buttons.scss b/scss/_buttons.scss index db9d172e8..47f7fec14 100644 --- a/scss/_buttons.scss +++ b/scss/_buttons.scss @@ -41,7 +41,7 @@ &:disabled, &.disabled, - fieldset:disabled & { // stylelint-disable-line selector-no-qualifying-type + fieldset:disabled & { pointer-events: none; opacity: $btn-disabled-opacity; @include box-shadow(none); diff --git a/scss/_tables.scss b/scss/_tables.scss index b7a50b42a..1250a36c1 100644 --- a/scss/_tables.scss +++ b/scss/_tables.scss @@ -39,7 +39,6 @@ } // Highlight border color between thead, tbody and tfoot. - // stylelint-disable-next-line selector-max-universal > :not(:last-child) > :last-child > * { border-bottom-color: $table-group-seperator-color; } @@ -77,7 +76,6 @@ // to the `td`s or `th`s .table-bordered { - // stylelint-disable-next-line selector-max-universal > :not(caption) > * { border-width: $table-border-width 0; diff --git a/site/assets/scss/_component-examples.scss b/site/assets/scss/_component-examples.scss index e5a54b8ef..df735a41b 100644 --- a/site/assets/scss/_component-examples.scss +++ b/site/assets/scss/_component-examples.scss @@ -1,5 +1,3 @@ -// stylelint-disable no-duplicate-selectors - // // Grid examples // |
