mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Update to fix table row color and hover color (#13244)
The last update changed row color for all rows except the first instead of changing color for every 2nd row.
This commit is contained in:
@@ -7213,11 +7213,11 @@
|
||||
.expandable:hover span {
|
||||
background-color: #2e3338;
|
||||
}
|
||||
table tr:not(:first-child){
|
||||
background: #3e444c!important;
|
||||
table tr:nth-child(odd){
|
||||
background: #2a2e33!important;
|
||||
}
|
||||
table tr:not(:first-child):hover{
|
||||
background: #4f565f!important;
|
||||
table tr:hover{
|
||||
background: #2d3237!important;
|
||||
}
|
||||
div[role=listbox]{
|
||||
background: rgb(70, 76, 83);
|
||||
|
Reference in New Issue
Block a user