Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/scss
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2020-06-12 11:11:36 +0300
committerGitHub <noreply@github.com>2020-06-12 11:11:36 +0300
commit3d8d0012c846caf2592319bace8b5826cef19c66 (patch)
treefef8a728dbfb5b8f3ef19e7f7b17f3a80e638611 /scss
parent2a4e97b56c864a798d323e1460e602b2bddac604 (diff)
Stylelint: remove redundant disables (#31006)
Diffstat (limited to 'scss')
-rw-r--r--scss/_buttons.scss2
-rw-r--r--scss/_tables.scss2
2 files changed, 1 insertions, 3 deletions
diff --git a/scss/_buttons.scss b/scss/_buttons.scss
index db9d172e8e..47f7fec141 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 b7a50b42a1..1250a36c18 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;