From 3d792287f7de966886cd4ce5413b484a669f4168 Mon Sep 17 00:00:00 2001 From: David Freina Date: Sat, 20 Feb 2021 22:36:38 +0100 Subject: [PATCH 1/3] added small improvements to queue table and progress indicators --- CSS/themes/sabnzbd/sabnzbd-base.css | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/CSS/themes/sabnzbd/sabnzbd-base.css b/CSS/themes/sabnzbd/sabnzbd-base.css index ea3246d6..1e0bf274 100644 --- a/CSS/themes/sabnzbd/sabnzbd-base.css +++ b/CSS/themes/sabnzbd/sabnzbd-base.css @@ -25,8 +25,8 @@ body { font-size: 1.4em !important; color: white; } - /* Scrollbar */ - @media only screen and (min-width: 768px) { + /* Scrollbar */ + @media only screen and (min-width: 768px) { html { height: 100%; width: 100%; @@ -106,6 +106,12 @@ body { .caret { border-top-color: white !important; } +svg.peity polygon { + fill: var(--nav-button-color) !important; +} +svg.peity polyline { + stroke: var(--nav-button-color) !important; +} /* BUTTONS */ .form-signin .btn { @@ -301,6 +307,20 @@ tbody>tr:last-child td { border-bottom: 1px solid transparent!important; background: rgba(255, 255, 255, 0.25); } +.progress { + background-color: transparent !important; + box-shadow: none !important; + -webkit-box-shadow: none !important; +} +.progress-bar strong { + color: hsla(0,0%,100%,.7) !important; +} +.progress-bar + span{ + color: hsla(0,0%,100%,.7) !important; +} +.progress-bar-info { + background-color: var(--nav-button-color); +} .multioperations-selector { From b21dff6b57c4a45c5bc6843ed3b05dedb3304cc9 Mon Sep 17 00:00:00 2001 From: David Freina Date: Tue, 23 Feb 2021 23:30:54 +0100 Subject: [PATCH 2/3] fixed problems mentioned in #146 --- CSS/themes/sabnzbd/sabnzbd-base.css | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/CSS/themes/sabnzbd/sabnzbd-base.css b/CSS/themes/sabnzbd/sabnzbd-base.css index 1e0bf274..05214170 100644 --- a/CSS/themes/sabnzbd/sabnzbd-base.css +++ b/CSS/themes/sabnzbd/sabnzbd-base.css @@ -321,6 +321,15 @@ tbody>tr:last-child td { .progress-bar-info { background-color: var(--nav-button-color); } +.glyphicon-compressed:before{ + color: #888; +} +.direct-unpack span{ + color: #888; +} +.processing-download > div { + background-color: #888; +} .multioperations-selector { @@ -634,4 +643,4 @@ label { } #content a, #content a:hover, #content a:active, #content a:visited, #serverResponse { color: #eee; -} \ No newline at end of file +} From 21b74abe5a6556cb61d1a7216135fe41f6918b9b Mon Sep 17 00:00:00 2001 From: David Freina Date: Tue, 23 Feb 2021 23:31:08 +0100 Subject: [PATCH 3/3] fixed table header in interface config --- CSS/themes/sabnzbd/sabnzbd-base.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CSS/themes/sabnzbd/sabnzbd-base.css b/CSS/themes/sabnzbd/sabnzbd-base.css index 05214170..b72f98df 100644 --- a/CSS/themes/sabnzbd/sabnzbd-base.css +++ b/CSS/themes/sabnzbd/sabnzbd-base.css @@ -644,3 +644,11 @@ label { #content a, #content a:hover, #content a:active, #content a:visited, #serverResponse { color: #eee; } + +/* interface configuration */ +#modal-options .table-server-connections th { + border-left: none; +} +#modal-options .table-server-connections th:last-child { + border-right: none; +} \ No newline at end of file