From 6754eb9e62e70a1719b0b6c2adf15a1b45fae12d Mon Sep 17 00:00:00 2001 From: gilbN Date: Mon, 26 Jul 2021 00:25:57 +0200 Subject: [PATCH] some sabnzbd updates --- CSS/themes/sabnzbd/sabnzbd-base.css | 49 ++++++++++++++++++++++++++++- 1 file changed, 48 insertions(+), 1 deletion(-) diff --git a/CSS/themes/sabnzbd/sabnzbd-base.css b/CSS/themes/sabnzbd/sabnzbd-base.css index 6ba1a125..6dd7d283 100644 --- a/CSS/themes/sabnzbd/sabnzbd-base.css +++ b/CSS/themes/sabnzbd/sabnzbd-base.css @@ -497,6 +497,7 @@ tr td.row-extra-text, .history-table tr td.history-completedon, .history-table tr td.row-extra-text { color: var(--text); + border-top: none !important; } .table-messages .table-messages-remove { @@ -545,6 +546,11 @@ tr td.row-extra-text, color: rgb(var(--accent-color)); } +#history-tab .table>tbody>tr:nth-of-type(2n+1), +.table-striped>tbody>tr:nth-of-type(2n+1) { + background-color: rgba(255, 255, 255, 0.05); +} + .pagination>li>a, .pagination>li>span, .pagination>li>span:hover { @@ -689,7 +695,7 @@ table { .table>thead>tr>td, .table>tbody>tr>td, .table>tfoot>tr>td { - border-top: transparent; + border-top: none !important; } .section, @@ -826,7 +832,48 @@ input[type="week"]:focus { box-shadow: none !important; } +input[type="date"] { + background: transparent; + color: white; +} + +input[type="date"]::-webkit-calendar-picker-indicator { + filter: invert(100%); +} + /*Servers*/ + +.server-disabled { + background: repeating-linear-gradient(-55deg, + #444444, + #444444 10px, + #333 10px, + #333 20px) center center/cover no-repeat fixed; + color: var(--text-muted); +} + +.server-disabled p, +.server-disabled label, +.server-disabled h3 { + color: var(--text-muted) !important; +} + +.server-disabled button { + background: #363636; + border-color: #363636; + color: var(--text-muted); +} + +.server-disabled button:hover { + background: #464646; + border-color: #464646; + color: var(--text-muted); +} + +.section .server-disabled { + background-color: rgba(255, 255, 255, 0); +} + .Servers .ct-label { color: white; }