2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-20 20:00:36 +03:00

styles(tables): drop unused stylelint-disable

This commit is contained in:
Gaël Poupard
2021-06-16 17:47:42 +02:00
committed by Mark Otto
parent 7187e05cb9
commit f50ab21f01
-3
View File
@@ -24,7 +24,6 @@
// We need the child combinator to prevent styles leaking to nested tables which doesn't have a `.table` class. // We need the child combinator to prevent styles leaking to nested tables which doesn't have a `.table` class.
// We use the universal selectors here to simplify the selector (else we would need 6 different selectors). // We use the universal selectors here to simplify the selector (else we would need 6 different selectors).
// Another advantage is that this generates less code and makes the selector less specific making it easier to override. // Another advantage is that this generates less code and makes the selector less specific making it easier to override.
// stylelint-disable-next-line selector-max-universal
> tr > *, > tr > *,
> thead > tr > *, > thead > tr > *,
> tbody > tr > *, > tbody > tr > *,
@@ -62,7 +61,6 @@
// //
.table-sm { .table-sm {
// stylelint-disable-next-line selector-max-universal
> tr > *, > tr > *,
> thead > tr > *, > thead > tr > *,
> tbody > tr > *, > tbody > tr > *,
@@ -96,7 +94,6 @@
} }
.table-borderless { .table-borderless {
// stylelint-disable-next-line selector-max-universal
> tr > *, > tr > *,
> thead > tr > *, > thead > tr > *,
> tbody > tr > *, > tbody > tr > *,