Only highlight relevant cells

This commit is contained in:
Jeremy Thomas
2020-05-11 00:40:11 +01:00
parent f79d8c09e2
commit 64bb3085b5
4 changed files with 39 additions and 16 deletions

View File

@@ -13176,18 +13176,26 @@ svg {
background-color: whitesmoke;
}
#spacingTable .bd-current-row td:first-child,
#spacingTable .bd-current-row .bd-current-column:not(:first-child) {
#spacingTable .bd-current-row:first-child {
background-color: #feecf0;
color: #363636;
}
#spacingTable .bd-current-row td:first-child code,
#spacingTable .bd-current-row .bd-current-column:not(:first-child) code {
#spacingTable .bd-current-row:first-child code {
background-color: #f14668;
color: #fff;
}
#spacingTable .bd-current-row.bd-current-column {
background-color: #ebfffc;
color: #363636;
}
#spacingTable .bd-current-row.bd-current-column code {
background-color: #00d1b2;
color: #fff;
}
#spacingTable .bd-current-column {
background-color: whitesmoke;
}