From 12ccd8bc7891296f69f1b1f08b9c1d4af438bab2 Mon Sep 17 00:00:00 2001 From: thelastWallE <12502210+thelastWallE@users.noreply.github.com> Date: Tue, 21 Sep 2021 23:30:37 +0200 Subject: [PATCH] fix: change fileposition for table hover rule change the order for the hover rule on striped tables to be after the rule for the odd table rows. --- css/darkgreen.css | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/css/darkgreen.css b/css/darkgreen.css index 15d92af..85be2fd 100644 --- a/css/darkgreen.css +++ b/css/darkgreen.css @@ -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); } @@ -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); }