had to update the striped table rows again cause they were failing, and update the floating labels

This commit is contained in:
Yohn 2025-01-22 18:40:49 -05:00
parent af735a6d75
commit ba48bb50da
6 changed files with 264 additions and 319 deletions

View file

@ -69,13 +69,13 @@
// Striped
@if enable-classes {
#{$parent-selector} table {
&.striped {
tbody tr:nth-child(/* clean-css ignore:start */ odd of /* clean-css ignore:end */:not([hidden])) th,
tbody tr:nth-child(/* clean-css ignore:start */ odd of /* clean-css ignore:end */:not([hidden])) td {
background-color: var(#{$css-var-prefix}table-row-stripped-background-color);
}
/* clean-css ignore:start */
#{$parent-selector} table.striped {
tbody tr:nth-child(odd of :not([hidden])) th,
tbody tr:nth-child(odd of :not([hidden])) td {
background-color: var(#{$css-var-prefix}table-row-stripped-background-color);
}
}
/* clean-css ignore:end */
}
}