0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-02-23 20:54:22 +01:00
This commit is contained in:
louismaxime.piton 2023-06-26 14:58:48 +02:00
parent 787dfea8a2
commit 63daac2fed
2 changed files with 6 additions and 5 deletions

View File

@ -8,9 +8,9 @@
--#{$prefix}table-bg-type: initial; --#{$prefix}table-bg-type: initial;
--#{$prefix}table-color-state: initial; --#{$prefix}table-color-state: initial;
--#{$prefix}table-bg-state: initial; --#{$prefix}table-bg-state: initial;
--#{$prefix}table-color: initial;
--#{$prefix}table-bg: initial;
// End of reset // End of reset
--#{$prefix}table-color: #{$table-color};
--#{$prefix}table-bg: #{$table-bg};
--#{$prefix}table-border-color: #{$table-border-color}; --#{$prefix}table-border-color: #{$table-border-color};
--#{$prefix}table-accent-bg: #{$table-accent-bg}; --#{$prefix}table-accent-bg: #{$table-accent-bg};
--#{$prefix}table-striped-color: #{$table-striped-color}; --#{$prefix}table-striped-color: #{$table-striped-color};
@ -22,7 +22,9 @@
width: 100%; width: 100%;
margin-bottom: $spacer; margin-bottom: $spacer;
color: $table-color;
vertical-align: $table-cell-vertical-align; vertical-align: $table-cell-vertical-align;
background-color: $table-bg;
border-color: var(--#{$prefix}table-border-color); border-color: var(--#{$prefix}table-border-color);
// Target th & td // Target th & td
@ -33,8 +35,8 @@
> :not(caption) > * > * { > :not(caption) > * > * {
padding: $table-cell-padding-y $table-cell-padding-x; padding: $table-cell-padding-y $table-cell-padding-x;
// Following the precept of cascades: https://codepen.io/miriamsuzanne/full/vYNgodb // Following the precept of cascades: https://codepen.io/miriamsuzanne/full/vYNgodb
color: var(--#{$prefix}table-color-state, var(--#{$prefix}table-color-type, var(--#{$prefix}table-color))); color: var(--#{$prefix}table-color-state, var(--#{$prefix}table-color-type, var(--#{$prefix}table-color, inherit)));
background-color: var(--#{$prefix}table-bg); background-color: var(--#{$prefix}table-bg, inherit);
border-bottom-width: $table-border-width; border-bottom-width: $table-border-width;
box-shadow: inset 0 0 0 9999px var(--#{$prefix}table-bg-state, var(--#{$prefix}table-bg-type, var(--#{$prefix}table-accent-bg))); box-shadow: inset 0 0 0 9999px var(--#{$prefix}table-bg-state, var(--#{$prefix}table-bg-type, var(--#{$prefix}table-accent-bg)));
} }

View File

@ -17,7 +17,6 @@
--#{$prefix}table-hover-bg: #{$hover-bg}; --#{$prefix}table-hover-bg: #{$hover-bg};
--#{$prefix}table-hover-color: #{color-contrast($hover-bg)}; --#{$prefix}table-hover-color: #{color-contrast($hover-bg)};
color: var(--#{$prefix}table-color);
border-color: var(--#{$prefix}table-border-color); border-color: var(--#{$prefix}table-border-color);
} }
} }