Browse Source

Merge pull request #150 from davidfreina/master

Added small improvements to queue table and progress indicators for SABnzbd
pull/156/head
GilbN 4 years ago
committed by GitHub
parent
commit
5c3a4c39c8
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 41
      CSS/themes/sabnzbd/sabnzbd-base.css

41
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,29 @@ 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);
}
.glyphicon-compressed:before{
color: #888;
}
.direct-unpack span{
color: #888;
}
.processing-download > div {
background-color: #888;
}
.multioperations-selector {
@ -614,4 +643,12 @@ 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;
}
Loading…
Cancel
Save