1
0
mirror of https://github.com/gilbN/theme.park.git synced 2024-10-04 06:27:11 +02:00
theme.park/CSS/themes/sabnzbd/sabnzbd-base.css

1162 lines
24 KiB
CSS
Raw Normal View History

2019-07-13 14:46:40 +02:00
/* dP dP dP */
/* 88 88 88 */
/* d8888P 88d888b. .d8888b. 88d8b.d8b. .d8888b. 88d888b. .d8888b. 88d888b. 88 .dP */
/* 88 88' `88 88ooood8 88'`88'`88 88ooood8 88' `88 88' `88 88' `88 88888" */
/* 88 88 88 88. ... 88 88 88 88. ... 88. .88 88. .88 88 88 `8b. */
/* dP dP dP `88888P' dP dP dP `88888P' 88 88Y888P' `88888P8 dP dP `YP */
/* 88 */
/* dP */
/* Made by @gilbN */
/* https://github.com/gilbN/theme.park */
2021-07-31 14:36:39 +02:00
@import url(https://theme-park.dev/CSS/defaults/placeholders.css);
2019-07-13 14:46:40 +02:00
body {
background: var(--main-bg-color) !important;
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
background-color: transparent;
2021-03-13 18:48:48 +01:00
font-family: Open Sans Bold, Helvetica Neue, Helvetica, Arial, sans-serif !important;
2019-07-13 14:46:40 +02:00
font-size: 1.4em !important;
2021-07-24 01:46:04 +02:00
color: var(--text);
}
2021-07-31 14:39:33 +02:00
* {
outline: none !important;
}
2021-07-24 01:46:27 +02:00
h1,
h2,
h3,
h4,
h5,
h6,
label:not(.btn),
legend {
2021-07-24 01:46:04 +02:00
color: var(--text-hover) !important;
}
2021-07-24 01:46:27 +02:00
2021-07-24 01:46:04 +02:00
p {
color: var(--text);
}
2021-07-24 01:46:27 +02:00
2021-07-24 01:46:04 +02:00
a {
color: var(--link-color);
}
.speedlimit-dropdown.dropdown>div>div>a {
color: var(--button-text);
}
#navbar-collapse>ul>li.speedlimit-dropdown.dropdown>div>div:hover a.hover-button {
color: var(--button-text-hover);
opacity: 1;
}
2021-07-24 01:46:04 +02:00
a:active,
a:hover,
2021-07-24 01:46:27 +02:00
a:focus {
2021-07-24 01:46:04 +02:00
color: var(--link-color-hover);
}
#modal-options .modal-header a {
color: var(--link-color) !important;
2019-07-13 14:46:40 +02:00
}
2021-03-13 18:48:48 +01:00
2021-07-24 01:46:04 +02:00
#modal-options .modal-header a:hover {
color: var(--link-color-hover) !important;
}
2021-07-24 01:46:27 +02:00
2021-03-13 18:48:48 +01:00
/* Scrollbar */
@media only screen and (min-width: 768px) {
html {
height: 100%;
width: 100%;
overflow: hidden;
}
body {
overflow-y: auto;
height: 100%;
background: var(--main-bg-color);
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
2021-07-24 01:46:27 +02:00
-o-background-size: auto, cover;
2021-03-13 18:48:48 +01:00
}
}
::-webkit-scrollbar {
width: 14px;
}
::-webkit-scrollbar-thumb {
min-height: 50px;
border: 3px solid transparent;
border-radius: 8px;
background-color: hsla(0, 0%, 100%, .2);
background-clip: padding-box;
}
::-webkit-scrollbar-track {
background-color: transparent;
}
::-webkit-scrollbar-thumb:hover {
min-height: 50px;
border: 3px solid transparent;
border-radius: 8px;
background-color: hsla(0, 0%, 100%, .5);
background-clip: padding-box;
}
2019-07-13 14:46:40 +02:00
/* navbar */
2021-07-24 01:46:27 +02:00
.nav-tabs,
hr {
2021-07-24 01:46:04 +02:00
border-bottom: 1px solid rgb(var(--accent-color));
}
2021-07-24 01:46:27 +02:00
2021-07-24 01:46:04 +02:00
#modal-options #options-status hr {
border-top: 1px solid rgb(var(--accent-color));
}
2019-07-13 14:46:40 +02:00
.navbar-inverse {
background-color: rgba(0, 0, 0, .25);
border-color: transparent !important;
}
2021-07-24 01:46:27 +02:00
2021-07-24 01:46:04 +02:00
.navbar-nav>li>a {
color: rgb(var(--accent-color)) !important;
opacity: 1;
}
2021-07-24 01:46:27 +02:00
.navbar-nav>li>a:hover,
.main-menu-link:hover a {
2021-07-24 01:46:04 +02:00
opacity: 1;
color: var(--accent-color-hover) !important;
}
2021-07-24 01:46:27 +02:00
2021-07-24 01:46:04 +02:00
.main-menu-link .icon-bar {
display: block;
width: 16px;
height: 3px;
border-radius: 1px !important;
background-color: var(--link-color);
margin-top: 3px;
}
2021-07-24 01:46:27 +02:00
2021-07-24 01:46:04 +02:00
.main-menu-link:hover .icon-bar {
background-color: var(--link-color-hover);
2019-07-13 14:46:40 +02:00
}
2021-07-24 01:46:27 +02:00
2021-07-24 01:46:04 +02:00
/* .navbar-btn {
background: var(--button-color) !important;
border-color: transparent !important;
} */
2021-03-13 18:48:48 +01:00
.navbar-inverse .navbar-nav>.open>a,
.navbar-inverse .navbar-nav>.open>a:hover,
.navbar-inverse .navbar-nav>.open>a:focus {
background-color: hsla(0, 0%, 100%, .08);
2019-07-13 14:46:40 +02:00
}
2021-03-13 18:48:48 +01:00
.ui-slider-horizontal,
.ui-slider-range-min {
2021-07-24 01:46:04 +02:00
background: rgb(var(--accent-color)) !important;
2019-07-13 14:46:40 +02:00
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
.ui-slider .ui-slider-handle {
2021-07-24 01:46:04 +02:00
background-color: rgb(var(--accent-color));
2021-03-13 18:48:48 +01:00
border: 1px solid black;
2019-07-13 14:46:40 +02:00
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
.main-content {
background-color: rgba(0, 0, 0, 0.15);
border: none;
}
2021-03-13 18:48:48 +01:00
.dropdown-menu,
#feedback-slider {
2021-07-24 01:46:04 +02:00
background: var(--drop-down-menu-bg);
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
2021-07-24 01:46:27 +02:00
-o-background-size: auto, cover;
2019-07-13 14:46:40 +02:00
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
.dropdown-menu>li>a {
2021-07-24 01:46:04 +02:00
color: var(--text-hover);
2019-07-13 14:46:40 +02:00
}
2021-03-13 18:48:48 +01:00
.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:focus {
2021-07-24 01:46:04 +02:00
color: var(--text-hover);
2019-07-13 14:46:40 +02:00
background-color: rgba(255, 255, 255, 0.08);
}
2021-03-13 18:48:48 +01:00
2019-08-27 20:20:27 +02:00
.dropdown-header {
2021-07-24 01:46:04 +02:00
color: var(--text-hover);
2019-08-27 20:20:27 +02:00
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
.menu-options .form-control {
background: var(--drop-down-menu-bg);
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
2021-07-24 01:46:27 +02:00
-o-background-size: auto, cover;
2019-07-13 14:46:40 +02:00
}
2021-03-13 18:48:48 +01:00
2021-03-13 18:48:26 +01:00
.main-notification-box {
2021-07-28 18:14:02 +02:00
background: var(--modal-bg-color);
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
2021-07-24 01:46:27 +02:00
-o-background-size: auto, cover;
2021-03-13 18:48:26 +01:00
}
2021-03-13 18:48:48 +01:00
.main-filedrop.in,
.main-restarting.in {
color: var(--text-hover);
2019-07-13 14:46:40 +02:00
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
.caret {
border-top-color: white !important;
}
2021-03-13 18:48:48 +01:00
svg.peity polygon {
2021-07-24 01:46:04 +02:00
fill: var(--button-color) !important;
}
2021-03-13 18:48:48 +01:00
svg.peity polyline {
2021-07-24 01:46:04 +02:00
stroke: var(--button-color) !important;
}
2019-07-13 14:46:40 +02:00
.rss-icon-svg {
fill: var(--button-color);
border-radius: 3px !important;
}
2019-07-13 14:46:40 +02:00
/* BUTTONS */
.input-group-addon {
color: var(--button-text);
background: var(--button-color);
border-color: var(--button-color);
}
2019-08-27 19:34:14 +02:00
.form-signin .btn {
2021-07-24 01:46:04 +02:00
background: var(--button-color) !important;
2019-08-27 19:34:14 +02:00
outline: none !important;
}
2021-03-13 18:48:48 +01:00
2019-08-27 19:34:14 +02:00
.text-center a {
2021-07-24 01:46:04 +02:00
color: var(--text-hover);
2019-08-27 19:34:14 +02:00
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
.btn-default {
2021-07-24 01:46:04 +02:00
color: var(--button-text);
background: var(--button-color);
border-color: var(--button-color);
2019-08-27 19:34:14 +02:00
outline: none !important;
2019-07-13 14:46:40 +02:00
}
2021-03-13 18:48:48 +01:00
.btn-default:focus,
.btn-default.focus {
2021-07-24 01:46:04 +02:00
color: var(--button-text-hover);
background: var(--button-color-hover);
border-color: var(--button-color-hover);
2019-07-13 14:46:40 +02:00
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
.btn-default:hover {
2021-07-24 01:46:04 +02:00
color: var(--button-text-hover);
background: var(--button-color-hover);
border-color: var(--button-color-hover);
2019-07-13 14:46:40 +02:00
}
2021-03-13 18:48:48 +01:00
.btn-default:active:hover,
.btn-default.active:hover,
.open>.dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open>.dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open>.dropdown-toggle.btn-default.focus {
2021-07-24 01:46:04 +02:00
color: var(--button-text-hover);
background: var(--button-color-hover);
border-color: var(--button-color-hover);
2019-07-13 14:46:40 +02:00
}
2021-03-13 18:48:48 +01:00
.btn-default:active,
.btn-default.active,
.open>.dropdown-toggle.btn-default {
2021-07-24 01:46:04 +02:00
color: var(--button-text-hover) !important;
background: var(--button-color-hover) !important;
border-color: var(--button-color-hover) !important;
2019-07-13 14:46:40 +02:00
}
2021-03-13 18:48:48 +01:00
.btn-group>.btn:hover,
.btn-group-vertical>.btn:hover,
.btn-group>.btn:focus,
.btn-group-vertical>.btn:focus,
.btn-group>.btn:active,
.btn-group-vertical>.btn:active,
.btn-group>.btn.active,
.btn-group-vertical>.btn.active {
2019-07-13 14:46:40 +02:00
z-index: 0;
}
2021-03-13 18:48:48 +01:00
.btn-default:active:hover,
.btn-default.active:hover,
.open>.dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open>.dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open>.dropdown-toggle.btn-default.focus {
2021-07-24 01:46:04 +02:00
color: var(--button-text-hover);
background-color: var(--button-color-hover);
border-color: var(--button-color-hover);
2019-07-13 14:46:40 +02:00
}
2021-03-13 18:48:48 +01:00
.btn-default:active,
.btn-default.active,
.open>.dropdown-toggle.btn-default {
2021-07-24 01:46:27 +02:00
color: var(--button-text-hover) !important;
2021-07-24 01:46:04 +02:00
background-color: var(--button-color-hover) !important;
border-color: var(--button-color-hover) !important;
2019-07-13 14:46:40 +02:00
}
/* buttons settings */
.btn-default.sabnzbd_restart {
2021-07-24 01:46:04 +02:00
color: var(--button-text);
2019-07-13 14:46:40 +02:00
background-color: #a94442;
border-color: transparent;
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
.btn-default.sabnzbd_restart:hover {
2021-07-24 01:46:04 +02:00
color: var(--button-text-hover);
2019-07-13 14:46:40 +02:00
background-color: #d93935;
border-color: transparent;
}
.btn-default.saveButton {
2021-07-24 01:46:04 +02:00
color: var(--button-text);
2019-07-13 14:46:40 +02:00
background-color: #3c763d;
border-color: transparent;
}
2021-03-13 18:48:48 +01:00
.btn-default.saveButton:hover,
.btn-default.saveButton:focus,
.btn-default.saveButton:active {
2019-07-13 14:46:40 +02:00
color: #fff !important;
background-color: #42a543 !important;
border-color: transparent !important;
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
/* buttons categories */
.btn-default.delCat {
2021-07-24 01:46:04 +02:00
color: var(--button-text);
2019-07-13 14:46:40 +02:00
background-color: #a94442;
border-color: #2d2c2c;
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
.btn-default.delCat:hover {
2021-07-24 01:46:04 +02:00
color: var(--button-text-hover);
2019-07-13 14:46:40 +02:00
background-color: #d93935;
border-color: transparent;
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
.btn-default.fileBrowser {
2021-07-24 01:46:04 +02:00
color: var(--button-text);
background-color: var(--button-color);
2019-07-13 14:46:40 +02:00
border-color: transparent;
}
2021-03-13 18:48:48 +01:00
.btn-default.fileBrowser:hover,
.btn-default.fileBrowser:focus,
.btn-default.fileBrowser:active {
2019-07-13 14:46:40 +02:00
color: #fff !important;
2021-07-24 01:46:04 +02:00
background-color: var(--button-color-hover) !important;
2019-07-13 14:46:40 +02:00
border-color: transparent !important;
}
/* Button Switches*/
.btn-default.restoreDefaults {
2021-07-24 01:46:04 +02:00
color: var(--button-text);
2019-07-13 14:46:40 +02:00
background-color: #a94442;
border-color: transparent;
}
2021-03-13 18:48:48 +01:00
.btn-default.restoreDefaults:hover,
.btn-default.restoreDefaults:focus {
2021-07-24 01:46:27 +02:00
color: var(--button-text-hover);
2019-07-13 14:46:40 +02:00
background-color: #d93935;
border-color: transparent;
}
/*Button Sorting*/
.btn-default.clearBtn {
color: #fff !important;
background-color: #a94442;
border-color: transparent;
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
.btn-default.clearBtn:hover {
color: #fff !important;
background-color: #d93935;
border-color: none;
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
.btn-default.patternKey {
color: #fff !important;
2021-07-24 01:46:04 +02:00
background-color: var(--button-color);
2019-07-13 14:46:40 +02:00
border-color: transparent;
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
.btn-default.patternKey:hover {
color: #fff !important;
2021-07-24 01:46:04 +02:00
background-color: var(--button-color-hover);
2019-07-13 14:46:40 +02:00
border-color: transparent;
}
2021-03-13 18:48:48 +01:00
input[type="button"],
input[type="submit"] {
2019-07-13 14:46:40 +02:00
color: #fff !important;
2021-07-24 01:46:04 +02:00
background: var(--button-color);
2019-07-13 14:46:40 +02:00
border: 1px solid #00000000
}
2021-03-13 18:48:48 +01:00
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="button"]:active,
input[type="submit"]:active,
input[type="button"]:focus,
input[type="submit"]:focus {
2019-07-13 14:46:40 +02:00
color: #fff !important;
2021-07-24 01:46:04 +02:00
background-color: var(--button-color-hover) !important;
2019-07-13 14:46:40 +02:00
border: 1px solid #00000000
}
/* file button */
.btn-default.btn-file {
2021-07-24 01:46:04 +02:00
color: var(--text-hover);
background-color: var(--button-color);
2019-07-13 14:46:40 +02:00
border-color: transparent;
}
2021-03-13 18:48:48 +01:00
.btn-default.btn-file:hover,
.btn-default.btn-file:active,
.btn-default.btn-file:focus {
2019-07-13 14:46:40 +02:00
color: #fff !important;
2021-07-24 01:46:04 +02:00
background-color: var(--button-color-hover) !important;
2019-07-13 14:46:40 +02:00
border-color: transparent !important;
}
/* History */
2021-08-01 18:54:18 +02:00
.queue-table .row-extra-text, .history-table .row-extra-text {
color: var(--text-muted);
}
2019-07-13 14:46:40 +02:00
.caret {
border-top-color: white !important;
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
.table-striped>tbody>tr:nth-of-type(odd) {
background-color: rgba(0, 0, 0, 0.25);
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
tbody.no-downloads tr td {
border-bottom: 1px solid #1f1f1f !important;
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
tbody>tr>td:last-child {
border-right: 1px solid transparent !important;
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
tr td {
2021-03-13 18:48:48 +01:00
border-top: 1px solid transparent !important;
2019-07-13 14:46:40 +02:00
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
tbody>tr>td:first-child {
2021-03-13 18:48:48 +01:00
border-left: 1px solid transparent !important;
2019-07-13 14:46:40 +02:00
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
table {
background-color: rgba(0, 0, 0, 0.25) !important
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
table:hover {
background-color: rgba(0, 0, 0, 0.25) !important;
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
.table-hover>tbody>tr:hover {
2021-07-24 01:46:04 +02:00
background-color: rgba(255, 255, 255, 0.07) !important;
color: var(--text-hover);
2019-07-13 14:46:40 +02:00
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
tbody>tr:last-child td {
border-bottom: 1px solid transparent !important;
}
2021-03-13 18:48:48 +01:00
.history-table,
tr td.status,
.history-table,
tr td.history-completedon,
.history-table,
tr td.row-extra-text,
.history-table tr td.status,
.history-table tr td.history-completedon,
.history-table tr td.row-extra-text {
2021-07-24 01:46:04 +02:00
color: var(--text);
2021-07-26 00:25:57 +02:00
border-top: none !important;
2019-07-13 14:46:40 +02:00
}
2021-03-13 18:48:48 +01:00
2019-08-27 19:43:34 +02:00
.table-messages .table-messages-remove {
2021-03-13 18:48:48 +01:00
border-bottom: 1px solid transparent !important;
2019-08-27 19:43:34 +02:00
background: rgba(255, 255, 255, 0.25);
}
2021-03-13 18:48:48 +01:00
.progress .progress-bar .fileDetails {
color: var(--button-text);
}
.progress {
background-color: transparent !important;
box-shadow: none !important;
-webkit-box-shadow: none !important;
}
2021-03-13 18:48:48 +01:00
.progress-bar strong {
2021-03-13 18:48:48 +01:00
color: hsla(0, 0%, 100%, .7) !important;
}
2021-03-13 18:48:48 +01:00
.progress-bar+span {
color: hsla(0, 0%, 100%, .7) !important;
}
2021-03-13 18:48:48 +01:00
.progress-bar-info,
.progress-bar {
2021-07-24 01:46:04 +02:00
background-color: var(--button-color) !important;
}
2021-03-13 18:48:48 +01:00
.glyphicon-compressed:before {
2021-02-23 23:30:54 +01:00
color: #888;
}
2021-03-13 18:48:48 +01:00
.direct-unpack span {
2021-02-23 23:30:54 +01:00
color: #888;
}
2021-03-13 18:48:48 +01:00
.processing-download>div {
2021-02-23 23:30:54 +01:00
background-color: #888;
}
2019-07-13 14:46:40 +02:00
.multioperations-selector {
2019-08-27 20:18:38 +02:00
border: 1px solid transparent !important;
2019-07-13 14:46:40 +02:00
background-color: rgba(0, 0, 0, 0.25) !important;
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
#history-options .hover-button {
2021-07-24 01:46:04 +02:00
color: rgb(var(--accent-color));
2019-07-13 14:46:40 +02:00
}
2021-07-26 00:25:57 +02:00
#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);
}
2021-03-13 18:48:48 +01:00
.pagination>li>a,
.pagination>li>span,
.pagination>li>span:hover {
2021-07-24 01:46:04 +02:00
color: var(--button-text);
background-color: var(--button-color);
border: 1px solid var(--button-color);
2019-07-13 14:46:40 +02:00
}
2021-03-13 18:48:48 +01:00
.pagination>li>a,
.pagination>li>span {
2021-07-24 01:46:04 +02:00
color: var(--button-text);
background-color: var(--button-color);
border: 1px solid var(--button-color);
2019-07-13 14:46:40 +02:00
}
2021-03-13 18:48:48 +01:00
.pagination>li>a:hover,
.pagination>li>span:hover,
.pagination>li>a:focus,
.pagination>li>span:focus {
2021-07-24 01:46:04 +02:00
color: var(--button-text-hover);
background-color: var(--button-color-hover);
border: 1px solid var(--button-color-hover);
}
2021-07-24 01:46:27 +02:00
.pagination li.active a,
.pagination li.active span,
.pagination li.active a:hover,
.pagination li.active span:hover {
2021-07-24 01:46:04 +02:00
color: var(--button-text-hover);
background-color: var(--button-color-hover);
border: 1px solid var(--button-color-hover);
2019-07-13 14:46:40 +02:00
}
2021-03-13 18:48:48 +01:00
.pagination>.disabled>span,
.pagination>.disabled>span:hover,
.pagination>.disabled>span:focus,
.pagination>.disabled>a,
.pagination>.disabled>a:hover,
.pagination>.disabled>a:focus {
2021-07-24 01:46:04 +02:00
color: var(--text-muted);
2019-07-13 14:46:40 +02:00
background-color: rgba(0, 0, 0, .25);
2021-07-24 01:46:27 +02:00
border: 1px solid transparent;
2019-07-13 14:46:40 +02:00
}
.search-box input {
border: transparent;
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
.form-control {
color: white;
background-color: rgb(0 0 0 / 25%);
}
.form-control:focus {
border-color: var(--text-hover);
-webkit-box-shadow: none;
box-shadow: none;
background: #1b1b1b;
2019-07-13 14:46:40 +02:00
}
2019-08-27 20:03:53 +02:00
/*Tabbed sorting */
2021-03-13 18:48:48 +01:00
.history-queue-swicher .nav-tabs>li>a,
.history-queue-swicher .nav-tabs>li.active>a {
2019-08-27 20:03:53 +02:00
border-bottom: 1px solid transparent;
border: 1px solid transparent;
color: #fff !important;
}
2021-03-13 18:48:48 +01:00
2019-08-27 20:03:53 +02:00
.history-queue-swicher .nav {
border-bottom: 1px solid transparent;
}
2021-03-13 18:48:48 +01:00
.nav-tabs>li.active>a,
.nav-tabs>li.active>a:hover,
.nav-tabs>li.active>a:focus {
2019-08-27 20:03:53 +02:00
color: #555;
background-color: rgba(255, 255, 255, 0.15);
}
2021-03-13 18:48:48 +01:00
.nav>li>a:hover,
.nav>li>a:focus {
2019-08-27 20:03:53 +02:00
text-decoration: none;
background-color: rgba(255, 255, 255, 0.08);
}
2021-03-13 18:48:48 +01:00
2019-08-27 20:03:53 +02:00
.badge {
2021-07-24 01:46:04 +02:00
color: var(--label-text-color);
background-color: rgb(var(--accent-color));
2019-08-27 20:03:53 +02:00
}
2019-07-13 14:46:40 +02:00
/*Settings*/
.navbar-default {
background: var(--main-bg-color);
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
2021-07-24 01:46:27 +02:00
-o-background-size: auto, cover;
2019-07-13 14:46:40 +02:00
border: none;
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
.navbar-default .navbar-nav>li>a {
2021-07-24 01:46:04 +02:00
color: var(--text) !important;
2019-07-13 14:46:40 +02:00
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
.navbar-default .navbar-nav>.open>a {
2021-03-13 18:48:48 +01:00
background-color: hsla(0, 0%, 0%, .15);
2019-07-13 14:46:40 +02:00
}
2021-03-13 18:48:48 +01:00
.navbar-default .navbar-nav>li>a:hover,
.navbar-logo:hover {
2019-07-13 14:46:40 +02:00
background-color: transparent !important;
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
.navbar-default .navbar-nav>li>a:hover {
2021-03-13 18:48:48 +01:00
background-color: hsla(0, 0%, 100%, .08) !important;
2021-07-24 01:46:04 +02:00
color: var(--text-hover) !important;
2019-07-13 14:46:40 +02:00
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
.navbar-default .navbar-nav>li>a.active {
2021-03-13 18:48:48 +01:00
background-color: hsla(0, 0%, 0%, .15) !important;
2021-07-24 01:46:04 +02:00
color: rgb(var(--accent-color)) !important;
2019-07-13 14:46:40 +02:00
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
#content {
2021-07-24 01:46:04 +02:00
color: var(--text-hover);
2019-07-13 14:46:40 +02:00
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
.colmask {
border: none;
background-color: rgba(0, 0, 0, .25);
}
2021-07-24 01:46:27 +02:00
2021-07-24 01:46:04 +02:00
.padTable:not(.ui-sortable) {
background: var(--main-bg-color) !important;
}
2021-07-24 01:46:27 +02:00
2019-07-13 14:46:40 +02:00
table {
2021-03-13 18:48:48 +01:00
border-color: transparent !important;
2019-07-13 14:46:40 +02:00
}
2021-03-13 18:48:48 +01:00
.table>thead>tr>th,
.table>tbody>tr>th,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>tbody>tr>td,
.table>tfoot>tr>td {
2021-07-26 00:25:57 +02:00
border-top: none !important;
2019-07-13 14:46:40 +02:00
}
2021-03-13 18:48:48 +01:00
.section,
#addFeed,
#addFeedContent {
2019-07-13 14:46:40 +02:00
border-bottom: 1px solid transparent;
}
2021-03-13 18:48:48 +01:00
.alt,
.infoTableSeperator.alt {
2019-07-13 14:46:40 +02:00
background-color: rgba(0, 0, 0, .25);
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
.info-container {
2021-07-24 01:46:04 +02:00
color: var(--text-hover);
2019-07-13 14:46:40 +02:00
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
.col2 table {
background-color: transparent !important;
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
.col2 table:hover {
background-color: transparent !important;
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
/*General Settings*/
2021-03-13 18:48:48 +01:00
.Key tr:nth-child(odd),
.tab-pane tr:nth-child(odd),
.even {
2019-07-13 14:46:40 +02:00
background-color: transparent;
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
.path {
2021-07-24 01:46:04 +02:00
color: var(--text-hover);
2019-07-13 14:46:40 +02:00
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
.col2 h3 {
background: transparent;
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
.form-control.advanced-button.config-hover {
2021-07-24 01:46:04 +02:00
color: var(--text-hover);
2019-07-13 14:46:40 +02:00
background-color: rgba(255, 255, 255, 0.25);
border-color: rgba(255, 255, 255, 0.25);
border-radius: 3px !important;
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
.form-control.advanced-button.config-hover:hover {
2021-07-24 01:46:04 +02:00
color: var(--text-hover);
2019-07-13 14:46:40 +02:00
background-color: rgba(255, 255, 255, 0.3);
border-color: rgba(255, 255, 255, 0.3);
border-radius: 3px !important;
}
2019-08-27 19:41:33 +02:00
.form-control::-moz-placeholder {
2021-07-24 01:46:04 +02:00
color: var(--text-muted) !important;
2021-03-13 18:48:48 +01:00
opacity: 1
2019-08-27 19:41:33 +02:00
}
2021-03-13 18:48:48 +01:00
2019-08-27 19:41:33 +02:00
.form-control:-ms-input-placeholder {
2021-07-24 01:46:04 +02:00
color: var(--text-muted) !important;
2019-08-27 19:41:33 +02:00
}
2021-03-13 18:48:48 +01:00
2019-08-27 19:41:33 +02:00
.form-control::-webkit-input-placeholder {
2021-07-24 01:46:04 +02:00
color: var(--text-muted) !important;
2019-08-27 19:41:33 +02:00
}
2021-03-13 18:48:48 +01:00
.col2 p,
.col2-cats {
2021-07-24 01:46:04 +02:00
color: var(--text-hover);
2019-07-13 14:46:40 +02:00
}
/*Input*/
2021-03-13 18:48:48 +01:00
input[type="text"],
input[type="email"],
input[type="url"],
input[type="number"],
input[type="password"],
input[type="date"],
textarea,
select {
2019-07-13 14:46:40 +02:00
border: none;
2021-07-24 01:46:04 +02:00
background-color: rgba(0, 0, 0, 0.15);
2019-07-13 14:46:40 +02:00
border-radius: 3px !important;
2021-07-24 01:46:04 +02:00
color: var(--text-hover) !important;
2019-08-27 19:41:33 +02:00
outline: none;
2019-07-13 14:46:40 +02:00
}
2021-03-13 18:48:48 +01:00
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="date"]:focus,
textarea:focus,
select:focus {
2019-07-13 14:46:40 +02:00
border: none;
background-color: rgb(25, 26, 28);
border-radius: 3px !important;
2019-08-27 19:41:33 +02:00
outline: none;
2019-07-13 14:46:40 +02:00
}
2021-03-13 18:48:48 +01:00
textarea:hover,
input[type="date"]:hover,
input[type="datetime"]:hover,
input[type="datetime-local"]:hover,
input[type="email"]:hover,
input[type="month"]:hover,
input[type="number"]:hover,
input[type="password"]:hover,
input[type="search"]:hover,
input[type="tel"]:hover,
input[type="text"]:hover,
input[type="time"]:hover,
input[type="url"]:hover,
input[type="week"]:hover,
textarea:focus,
input[type="date"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="email"]:focus,
input[type="month"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
input[type="time"]:focus,
input[type="url"]:focus,
input[type="week"]:focus {
2021-07-24 01:46:04 +02:00
background-color: rgba(255, 255, 255, 0.1);
2019-07-13 14:46:40 +02:00
border: none;
2019-08-27 19:34:14 +02:00
-webkit-box-shadow: none !important;
2021-03-13 18:48:48 +01:00
box-shadow: none !important;
2019-07-13 14:46:40 +02:00
}
2021-07-26 00:25:57 +02:00
input[type="date"] {
background: transparent;
color: white;
}
input[type="date"]::-webkit-calendar-picker-indicator {
filter: invert(100%);
}
2019-07-13 14:46:40 +02:00
/*Servers*/
2021-07-26 00:25:57 +02:00
.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);
}
2019-07-13 14:46:40 +02:00
.Servers .ct-label {
color: white;
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
.Servers .ct-series-a .ct-point {
stroke: #337ab7;
stroke-width: 4px;
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
.Servers .ct-series-a .ct-line {
2021-07-24 01:46:04 +02:00
stroke: var(--text-hover);
2019-07-13 14:46:40 +02:00
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
.Servers .ct-series-a .ct-area {
2021-07-24 01:46:04 +02:00
fill: var(--text-hover);
2019-07-13 14:46:40 +02:00
}
/*Categories*/
.Categories form:first-of-type tr:last-of-type {
background-color: transparent;
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
.catTable {
background-color: transparent !important;
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
.catTable:hover {
background-color: transparent !important;
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
.Categories form.sorting-row:nth-child(2n-1) tr {
background-color: transparent;
}
2021-03-13 18:48:48 +01:00
input[disabled],
select[disabled] {
2019-07-13 14:46:40 +02:00
background-color: #1f1f1f;
opacity: .5;
}
2021-03-13 18:48:48 +01:00
input[disabled]:hover,
select[disabled]:hover {
2019-07-13 14:46:40 +02:00
background-color: #1f1f1f;
opacity: .5;
}
/*Folder modal*/
.list-group-item {
background-color: rgba(0, 0, 0, 0.25);
border: none;
}
.example {
2021-03-13 18:48:48 +01:00
background-color: rgba(255, 255, 255, 0.15);
2019-07-13 14:46:40 +02:00
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
/*modal*/
.modal-content {
background: var(--modal-bg-color);
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
2021-07-24 01:46:27 +02:00
-o-background-size: auto, cover;
2019-07-13 14:46:40 +02:00
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
.modal-body {
background: var(--modal-bg-color);
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
2021-07-24 01:46:27 +02:00
-o-background-size: auto, cover;
2019-07-13 14:46:40 +02:00
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
.modal-header {
2021-07-24 01:46:04 +02:00
background: var(--modal-header-color);
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
2021-07-24 01:46:27 +02:00
-o-background-size: auto, cover;
2019-07-13 14:46:40 +02:00
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
.modal-body>.nav-tabs>li>a {
2021-07-24 01:46:04 +02:00
color: var(--text) !important;
2019-07-13 14:46:40 +02:00
opacity: 1 !important;
border: transparent;
}
2021-03-13 18:48:48 +01:00
.modal-body>.nav-tabs>li.active>a,
.modal-body>.nav-tabs>li.active>a:hover,
.modal-body>.nav-tabs>li.active>a:focus {
2021-07-24 01:46:04 +02:00
color: rgb(var(--accent-color)) !important;
background-color: hsla(0, 0%, 100%, .08) !important;
2019-07-13 14:46:40 +02:00
border: transparent;
border-bottom-color: transparent;
cursor: default;
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
.modal-body>.nav-tabs>li>a:hover {
border-color: transparent !important;
}
2021-03-13 18:48:48 +01:00
.modal-body>.nav>li>a:hover,
.modal-body>.nav>li>a:focus {
background-color: hsla(0, 0%, 100%, .08) !important;
2021-07-24 01:46:04 +02:00
color: var(--text-hover) !important;
2019-07-13 14:46:40 +02:00
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
.modal-body>.tab-content>.active {
background: var(--modal-bg-color) !important;
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
2021-07-24 01:46:27 +02:00
-o-background-size: auto, cover;
2019-07-13 14:46:40 +02:00
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
#modal-options .tab-content h4 {
color: white;
}
2021-03-13 18:48:48 +01:00
#modal-options .options-switch label,
#modal-options #options-orphans .process-all-orphaned {
2019-07-13 14:46:40 +02:00
color: white;
}
2021-03-13 18:48:48 +01:00
#modal-options #options-status small {
color: var(--text-muted);
}
#modal-options .options-function-box .input-group-addon {
background-color: var(--button-color);
color: var(--button-text);
border: 1px solid var(--button-color);
}
#modal-options .table-server-connections thead {
background-color: rgba(0, 0, 0, .25);
}
#modal-options .table-server-connections thead {
background-color: rgba(0, 0, 0, .25);
}
#modal-item-files .item-files-table .progress small {
color: var(--text-muted) !important;
}
2021-03-13 18:48:48 +01:00
a.list-group-item,
button.list-group-item {
2021-07-24 01:46:04 +02:00
color: var(--text-hover);
2019-07-13 14:46:40 +02:00
}
2021-03-13 18:48:48 +01:00
a.list-group-item:hover,
button.list-group-item:hover,
a.list-group-item:focus,
button.list-group-item:focus {
text-decoration: none;
2021-07-24 01:46:04 +02:00
color: var(--text-hover);
2021-03-13 18:48:48 +01:00
background-color: rgba(255, 255, 255, 0.08);
2019-07-13 14:46:40 +02:00
}
.form-control {
border: transparent;
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
.fade.in {
background: rgba(0, 0, 0, 0.6);
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
.fade {
2021-03-13 18:48:48 +01:00
-webkit-transition: none;
-o-transition: none;
transition: none;
2019-07-13 14:46:40 +02:00
}
2021-03-13 18:48:48 +01:00
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
2020-11-17 21:17:04 +01:00
background-color: #919191;
opacity: 1;
}
2021-03-13 18:48:48 +01:00
2019-07-13 14:46:40 +02:00
/* Scheduling */
.time {
2021-07-24 01:46:04 +02:00
color: var(--text-hover);
2019-08-27 19:34:14 +02:00
}
2020-11-17 21:17:04 +01:00
/* Wizard */
.container {
border: 1px solid rgba(255, 255, 255, 0);
background-color: rgb(255 255 255 / 0);
}
2021-03-13 18:48:48 +01:00
2020-11-17 21:17:04 +01:00
.container #inner {
background-color: transparent;
}
2021-03-13 18:48:48 +01:00
2020-11-17 21:17:04 +01:00
.language:hover {
background-color: rgb(255 255 255 / 10%);
}
2021-03-13 18:48:48 +01:00
2020-11-17 21:17:04 +01:00
.container .quoteBlock {
background-color: rgb(0 0 0 / 25%);
}
2021-03-13 18:48:48 +01:00
#content a,
#content a:hover,
#content a:active,
#content a:visited,
#serverResponse {
2020-11-17 21:17:04 +01:00
color: #eee;
2021-02-23 23:30:54 +01:00
}
2021-02-23 23:31:08 +01:00
/* interface configuration */
#modal-options .table-server-connections th {
border-left: none;
}
2021-03-13 18:48:48 +01:00
2021-02-23 23:31:08 +01:00
#modal-options .table-server-connections th:last-child {
border-right: none;
2021-07-24 01:46:04 +02:00
}
.main-helplink {
display: block;
position: static;
float: right;
color: rgb(var(--accent-color)) !important;
padding: 0px;
font-size: 1.2em;
2021-03-13 18:48:48 +01:00
}