Skip to content

Commit

Permalink
fix: change fileposition for table hover rule
Browse files Browse the repository at this point in the history
change the order for the hover rule on striped tables to be after the rule for the odd table rows.
  • Loading branch information
thelastWallE committed Sep 21, 2021
1 parent 9d57fe1 commit 12ccd8b
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions css/darkgreen.css
Original file line number Diff line number Diff line change
Expand Up @@ -377,20 +377,13 @@ td i.disabled, th i.disabled {
outline: 0;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc',endColorstr='#ff0077b3',GradientType=0);
}

#files .gcode_files .entry:hover,
#settings_dialog_content .table-hover tbody tr:hover td,
#settings_dialog_content .table-hover tbody tr:hover th,
.table-hover tbody tr:hover td,
.table-hover tbody tr:hover th {
background-color: var(--lighterish);
}
.legend > table {
color: var(--notquiteWhite) !important;
}
.progress {
background: var(--lighterish);
}

.table-bordered, .table-striped {
border: none var(--lighterish);
}
Expand All @@ -399,12 +392,19 @@ td i.disabled, th i.disabled {
border-left: none;
border-right: none;
}

#settings_dialog_content .table-striped tbody > tr:nth-child(odd) > td,
#settings_dialog_content .table-striped tbody th,
.table-striped tbody > tr:nth-child(odd) > td, .table-striped tbody th {
background-color: var(--darkish);
}
#files .gcode_files .entry:hover,
#settings_dialog_content .table-hover tbody tr:hover td,
#settings_dialog_content .table-hover tbody tr:hover th,
.table-hover tbody tr:hover td,
.table-hover tbody tr:hover th {
background-color: var(--lighterish);
}

.modal {
background-color: var(--darkish);
}
Expand Down

0 comments on commit 12ccd8b

Please sign in to comment.