static: use "old school" way for alternate coloring of tables
This commit is contained in:
parent
67d8d0fff9
commit
0c12c8dbc8
2 changed files with 28 additions and 15 deletions
|
@ -25,6 +25,10 @@ table {
|
|||
}
|
||||
|
||||
|
||||
/* This is probably a better way to generate alternate coloring on tables. However,
|
||||
background color for selected track is overwritten this way. Therefore the "old
|
||||
school" way of alternate coloring is used for now.
|
||||
|
||||
table tr:nth-child(odd) td {
|
||||
background:#1e1f1a;
|
||||
}
|
||||
|
@ -32,6 +36,15 @@ table tr:nth-child(odd) td {
|
|||
table tr:nth-child(even) td {
|
||||
background:#171812;
|
||||
}
|
||||
*/
|
||||
|
||||
table tr.odd {
|
||||
background-color: #1e1f1a;
|
||||
}
|
||||
|
||||
table tr.even {
|
||||
background-color: #171812;
|
||||
}
|
||||
|
||||
#flexbox-container {
|
||||
display: flex;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue