Skip to content

Commit

Permalink
Merge pull request #27 from LazeMSS/development
Browse files Browse the repository at this point in the history
Fixed striped problem on darkgreen
  • Loading branch information
LazeMSS authored Sep 19, 2021
2 parents 557daa5 + 9d57fe1 commit 43cd629
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions css/darkgreen.css
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,12 @@ td i.disabled, th i.disabled {
outline: 0;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc',endColorstr='#ff0077b3',GradientType=0);
}
#files .gcode_files .entry:hover, .table-hover tbody tr:hover td, .table-hover tbody tr:hover th {

#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 {
Expand All @@ -394,6 +399,9 @@ 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);
}
Expand Down Expand Up @@ -531,4 +539,4 @@ input[disabled], select[disabled], textarea[disabled], input[readonly], select[r
.well {
background-color: var(--lighterish);
border: var(--darkerWhite);
}
}

0 comments on commit 43cd629

Please sign in to comment.