mirror of
https://github.com/picocss/pico.git
synced 2025-04-24 02:16:15 -04:00
Remove explicit background-color on tr element
This commit is contained in:
parent
94fe6da60c
commit
92c21aa1d4
17 changed files with 17 additions and 38 deletions
|
@ -1663,12 +1663,8 @@ td {
|
||||||
text-align: start;
|
text-align: start;
|
||||||
}
|
}
|
||||||
|
|
||||||
tr {
|
|
||||||
background-color: var(--background-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
table[role=grid] tbody tr:nth-child(odd) {
|
table[role=grid] tbody tr:nth-child(odd) {
|
||||||
--background-color: var(--table-row-stripped-background-color);
|
background-color: var(--table-row-stripped-background-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
File diff suppressed because one or more lines are too long
2
css/pico.classless.min.css
vendored
2
css/pico.classless.min.css
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1850,12 +1850,8 @@ td {
|
||||||
text-align: start;
|
text-align: start;
|
||||||
}
|
}
|
||||||
|
|
||||||
tr {
|
|
||||||
background-color: var(--background-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
table[role=grid] tbody tr:nth-child(odd) {
|
table[role=grid] tbody tr:nth-child(odd) {
|
||||||
--background-color: var(--table-row-stripped-background-color);
|
background-color: var(--table-row-stripped-background-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1633,12 +1633,8 @@ td {
|
||||||
text-align: start;
|
text-align: start;
|
||||||
}
|
}
|
||||||
|
|
||||||
tr {
|
|
||||||
background-color: var(--background-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
table[role=grid] tbody tr:nth-child(odd) {
|
table[role=grid] tbody tr:nth-child(odd) {
|
||||||
--background-color: var(--table-row-stripped-background-color);
|
background-color: var(--table-row-stripped-background-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
File diff suppressed because one or more lines are too long
2
css/pico.fluid.classless.min.css
vendored
2
css/pico.fluid.classless.min.css
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
2
css/pico.min.css
vendored
2
css/pico.min.css
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1393,12 +1393,8 @@ td {
|
||||||
text-align: start;
|
text-align: start;
|
||||||
}
|
}
|
||||||
|
|
||||||
tr {
|
|
||||||
background-color: var(--background-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
table[role=grid] tbody tr:nth-child(odd) {
|
table[role=grid] tbody tr:nth-child(odd) {
|
||||||
--background-color: var(--table-row-stripped-background-color);
|
background-color: var(--table-row-stripped-background-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
File diff suppressed because one or more lines are too long
2
css/pico.slim.min.css
vendored
2
css/pico.slim.min.css
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -33,16 +33,11 @@ td {
|
||||||
text-align: start;
|
text-align: start;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Rows
|
|
||||||
tr {
|
|
||||||
background-color: var(--background-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Striped
|
// Striped
|
||||||
table {
|
table {
|
||||||
&[role="grid"] {
|
&[role="grid"] {
|
||||||
tbody tr:nth-child(odd) {
|
tbody tr:nth-child(odd) {
|
||||||
--background-color: var(--table-row-stripped-background-color);
|
background-color: var(--table-row-stripped-background-color);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue