1
0
mirror of https://github.com/gilbN/theme.park.git synced 2024-10-11 15:37:12 +02:00
theme.park/CSS/themes/nzbget/nzbget-base.css

659 lines
15 KiB
CSS
Raw Normal View History

2019-07-14 14:26:11 +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 */
body {
2021-07-30 19:01:52 +02:00
background: var(--main-bg-color);
2021-07-25 13:43:36 +02:00
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;
2021-07-30 19:01:52 +02:00
color: var(--text) !important;
2019-07-14 14:26:11 +02:00
}
/* scroller */
::-webkit-scrollbar-corner {
2021-07-25 13:43:36 +02:00
background-color: rgba(0, 0, 0, .25);
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
::-webkit-scrollbar {
width: 10px;
height: 10px;
background: #0c1218;
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
::-webkit-scrollbar-thumb {
-webkit-border-radius: 2px;
border-radius: 2px;
2021-07-25 13:43:36 +02:00
background-color: hsla(0, 0%, 100%, .08);
2019-07-14 14:26:11 +02:00
}
2021-07-30 19:02:33 +02:00
2021-07-30 19:01:52 +02:00
.modal-header {
padding: 9px 15px;
border-bottom: 1px solid rgb(var(--accent-color));
background: var(--modal-footer-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;
-o-background-size: auto, cover;
}
2021-07-30 19:02:33 +02:00
2019-07-14 14:26:11 +02:00
.modal {
2021-07-25 13:43:36 +02:00
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;
-o-background-size: auto, cover;
2021-07-30 19:01:52 +02:00
color: var(--text) !important;
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
.modal-footer {
2021-07-30 19:01:52 +02:00
background-color: var(--modal-footer-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;
-o-background-size: auto, cover;
border-top: 1px solid rgb(var(--accent-color));
-webkit-box-shadow: inset 0 1px 0 transparent;
-moz-box-shadow: inset 0 1px 0 transparent;
box-shadow: inset 0 1px 0 transparent;
2019-07-14 14:26:11 +02:00
}
2021-07-30 19:02:33 +02:00
h1,
h2,
h3,
h4,
h5,
h6 {
2021-07-30 19:01:52 +02:00
color: var(--text-hover);
}
2021-07-30 19:02:33 +02:00
2019-07-14 14:26:11 +02:00
/* TABLES */
.table a {
2021-07-30 19:01:52 +02:00
color: var(--link-color);
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
.table a:hover {
2021-07-30 19:01:52 +02:00
color: var(--link-color-hover) !important;
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
.table-striped tbody tr:nth-child(odd) {
background-color: rgba(0, 0, 0, 0.25);
}
2021-07-25 13:43:36 +02:00
.table-striped tbody tr:nth-child(odd) td,
.table-striped tbody tr:nth-child(odd) th {
2019-07-14 14:26:11 +02:00
background-color: transparent;
}
2021-07-25 13:43:36 +02:00
2020-01-08 18:50:46 +01:00
.table-striped tbody tr:nth-child(even) {
background-color: rgba(0, 0, 0, 0.08);
}
2021-07-25 13:43:36 +02:00
.table tbody tr:hover,
.table tbody tr:hover td,
.table tbody tr:hover a {
2021-07-30 19:01:52 +02:00
color: var(--text-hover);
2021-07-25 13:43:36 +02:00
background-color: hsla(0, 0%, 100%, .08);
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
.table-striped tbody tr.checked:nth-child(2n+1) td,
.checked .progress {
background-color: hsla(0, 0%, 100%, .08);
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
tr.checked,
tr.checked td,
tr.checked:nth-child(odd) .progress {
background-color: hsla(0, 0%, 100%, .08);
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
.table tbody tr.checked:hover,
.table tbody tr.checked:hover td {
background-color: hsla(0, 0%, 100%, .08);
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
.table tbody tr.checked:hover,
.table tbody tr.checked:hover td {
background-color: hsla(0, 0%, 100%, .08);
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
.table.check-simple tbody tr.checked:hover,
.table.check-simple tbody tr.checked:hover td {
background-color: hsla(0, 0%, 100%, .08);
2020-01-08 18:46:13 +01:00
}
2021-07-25 13:43:36 +02:00
.table th,
.table td {
2019-07-14 14:26:11 +02:00
border-top: none;
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
.table-bordered {
border-left: none;
2021-07-25 13:43:36 +02:00
border: none;
2019-07-14 14:26:11 +02:00
}
.pagination a {
border: none;
background: rgba(0, 0, 0, .25);
}
2021-07-25 13:43:36 +02:00
.pagination a:hover,
.pagination .active a {
background-color: hsla(0, 0%, 100%, .08);
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
.pagination .active a {
2021-07-30 19:01:52 +02:00
color: rgb(rgb(var(--accent-color)));
2019-07-14 14:26:11 +02:00
}
/* PROGRESS BAR */
.progress {
2021-07-25 13:43:36 +02:00
background: hsla(0, 0%, 100%, .08);
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
.progress-warning.progress-striped .bar {
background-color: #cc7b19;
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
.progress-success.progress-striped .bar {
background-color: #51a351;
}
/* NAVBAR */
.navbar-fixed-top .navbar-inner {
2021-07-30 19:01:52 +02:00
color: var(--text-hover) !important;
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
.navbar-inner {
background-image: none;
background-color: transparent;
2019-07-14 15:33:48 +02:00
}
2021-07-25 13:43:36 +02:00
2019-07-14 15:33:48 +02:00
.navbar-container {
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-25 13:43:36 +02:00
-o-background-size: auto, cover;
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
.navbar .nav>li>a:hover {
2021-07-30 19:01:52 +02:00
color: rgb(var(--accent-color)) !important;
background: hsla(0, 0%, 100%, .08);
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
2021-07-30 19:02:33 +02:00
.navbar .nav .active>a {
2021-07-25 13:43:36 +02:00
background: hsla(0, 0%, 100%, .08);
2021-07-30 19:01:52 +02:00
color: rgb(var(--accent-color));
2019-07-14 14:26:11 +02:00
}
2021-07-30 19:01:52 +02:00
.navbar .nav .active>a:hover {
background: hsla(0, 0%, 100%, .08);
color: var(--accent-color-hover) !important;
}
2021-07-30 19:02:33 +02:00
2021-07-30 19:01:52 +02:00
div.check:hover {
border: 1px solid var(--accent-color-hover);
}
2021-07-30 19:02:33 +02:00
#DownloadsTable>tbody>tr.checked td .check {
2021-07-30 19:01:52 +02:00
border: 1px solid rgb(var(--accent-color));
}
2021-07-30 19:02:33 +02:00
2021-07-25 13:43:36 +02:00
[class^="icon-"],
[class*=" icon-"],
[class^="img-"],
[class*=" img-"] {
2019-07-14 14:26:11 +02:00
background-image: url(https://raw.githubusercontent.com/gilbN/theme.park/master/Resources/nzbget/icons.png);
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
.navbar-search .search-query {
2021-07-30 19:01:52 +02:00
color: var(--text);
2019-07-14 15:33:48 +02:00
background-color: rgba(0, 0, 0, 0.25) !important;
2021-07-30 19:01:52 +02:00
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
.navbar-search .search-query:focus,
.navbar-search .search-query.focused {
2021-07-30 19:01:52 +02:00
color: var(--text-hover) !important;
2019-07-14 14:26:11 +02:00
text-shadow: none;
2021-07-30 19:01:52 +02:00
background-color: rgba(0, 0, 0, 0.45) !important;
}
2021-07-30 19:02:33 +02:00
2021-07-30 19:01:52 +02:00
.focused .search-caret-button .caret {
2021-07-30 19:02:33 +02:00
margin-left: 5px;
border-top-color: rgb(255, 255, 255);
border-bottom-color: rgb(255, 255, 255);
2019-07-14 14:26:11 +02:00
}
2021-07-30 19:02:33 +02:00
2019-07-14 15:33:48 +02:00
.search-caret-button {
outline: none;
}
2021-07-25 13:43:36 +02:00
2019-07-14 15:33:48 +02:00
.menu-header {
2021-07-30 19:01:52 +02:00
color: var(--text-hover);
2019-07-14 15:33:48 +02:00
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
.dropdown-menu {
2021-07-30 19:01:52 +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-25 13:43:36 +02:00
-o-background-size: auto, cover;
2021-07-30 19:01:52 +02:00
color: var(--text);
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
.dropdown-menu a {
2021-07-30 19:01:52 +02:00
color: var(--text);
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
.dropdown-menu li>a:hover,
.dropdown-menu .active>a,
.dropdown-menu .active>a:hover {
2021-07-30 19:01:52 +02:00
color: var(--text-hover);
2021-07-25 13:43:36 +02:00
background-color: hsla(0, 0%, 100%, .05);
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
.dropdown-menu .divider {
height: 0px;
border-bottom: none;
}
2021-07-30 19:01:52 +02:00
#ConfigContent .config-header {
border-bottom: 1px solid rgb(var(--accent-color));
color: var(--text-hover);
}
2021-07-30 19:02:33 +02:00
2021-07-30 19:01:52 +02:00
#StatDialog_Custom a,
#AddDialog_Files a {
color: var(--link-color);
}
2021-07-30 19:02:33 +02:00
#StatDialog_Custom a:hover,
2021-07-30 19:01:52 +02:00
#AddDialog_Files a:hover {
color: var(--link-color-hover);
cursor: pointer;
}
2021-07-30 19:02:33 +02:00
2019-07-14 14:26:11 +02:00
/* BUTTONS */
2021-07-30 19:02:33 +02:00
.btn-primary,
.btn-primary:hover,
.btn-warning,
.btn-warning:hover,
.btn-danger,
.btn-danger:hover,
.btn-success,
.btn-success:hover,
.btn-info,
.btn-info:hover,
.btn-inverse,
.btn-inverse:hover {
2021-07-30 19:01:52 +02:00
text-shadow: none;
}
2021-07-25 13:43:36 +02:00
.btn-group>.dropdown-toggle {
box-shadow: none;
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
.config-header .btn {
background: #FFF;
color: #adb1b1;
text-shadow: unset;
}
2019-07-14 14:26:11 +02:00
2021-07-25 13:43:36 +02:00
#ConfigData>div>button.btn {
2021-07-30 19:01:52 +02:00
background: var(--button-color) !important;
color: var(--button-text) !important;
2021-07-25 13:43:36 +02:00
font-weight: bold;
text-shadow: unset;
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
#ConfigData>div>button.btn:hover {
2021-07-30 19:01:52 +02:00
background: var(--button-color-hover) !important;
color: var(--button-text-hover) !important;
2021-07-25 13:43:36 +02:00
font-weight: bold;
text-shadow: unset;
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
#ConfigData>div>div>table>tbody>tr>td>.btn {
2021-07-30 19:01:52 +02:00
background: var(--button-color);
color: var(--button-text);
2021-07-25 13:43:36 +02:00
text-shadow: unset;
font-weight: bold;
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
#Config_Save:hover {
2021-07-30 19:01:52 +02:00
background-color: rgb(81, 163, 81);
color: #eee;
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
#Config_Save {
2021-07-30 19:01:52 +02:00
background: rgba(81, 163, 81, 0.8);
2021-07-25 13:43:36 +02:00
color: #FFF;
margin: auto;
}
#ConfigData>div>div>button.btn.btn-danger {
background: #ad292c;
text-shadow: unset;
}
#ConfigData>div>div>button.btn.btn-danger:hover {
background: #d33a3e;
text-shadow: unset;
}
#ConfigData>div:nth-child(3)>div>button,
#ConfigData>div:nth-child(4)>div>button,
#ConfigData>div:nth-child(5)>div>button {
text-shadow: unset;
background: rgba(0, 0, 0, 0.25);
color: white;
}
#ConfigData>div:nth-child(3)>div>button:hover,
#ConfigData>div:nth-child(4)>div>button:hover,
#ConfigData>div:nth-child(5)>div>button:hover {
text-shadow: unset;
background: hsla(0, 0%, 100%, .08);
color: white;
}
#ConfigData input.btn.btn-primary {
2021-07-30 19:01:52 +02:00
background: var(--button-color-hover) !important;
2021-07-25 13:43:36 +02:00
text-shadow: unset;
2021-07-30 19:01:52 +02:00
color: var(--button-text-hover) !important;
border: 1px solid var(--button-color-hover);
2021-07-25 13:43:36 +02:00
}
#ConfigData input.btn {
background: rgba(0, 0, 0, 0.25) !important;
text-shadow: unset;
color: #a8a8a8;
}
#Config_ViewButton {
background: rgba(0, 0, 0, 0.25);
color: #FFF;
}
#Config_ViewButton:hover {
background: hsla(0, 0%, 100%, .08);
color: #FFF;
}
#DownloadsEditDialog input.btn.btn-primary {
2019-12-01 19:53:28 +01:00
background: var(--button-color) !important;
2021-07-25 13:43:36 +02:00
text-shadow: unset;
color: white;
2019-12-01 19:53:28 +01:00
}
2021-07-25 13:43:36 +02:00
#HistoryEdit_ParamData input.btn.btn-primary {
background: var(--button-color) !important;
2021-07-25 13:43:36 +02:00
text-shadow: unset;
color: white;
}
2019-07-14 14:26:11 +02:00
2021-07-25 13:43:36 +02:00
.btn {
2021-07-30 19:01:52 +02:00
color: var(--button-text);
2019-07-14 14:26:11 +02:00
text-shadow: none;
2021-07-30 19:01:52 +02:00
background-color: var(--button-color);
2019-07-14 14:26:11 +02:00
background-image: none;
2021-07-30 19:01:52 +02:00
/* border-color: transparent;
border-bottom-color: transparent; */
2019-07-14 14:26:11 +02:00
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
2021-07-30 19:01:52 +02:00
border-color: transparent;
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
.btn:hover {
2021-07-30 19:01:52 +02:00
color: var(--button-text-hover);
background-color: var(--button-color-hover);
2019-07-14 14:26:11 +02:00
}
.config-header .btn {
background-color: rgba(0, 0, 0, 0.25);
}
.btn-group.open .btn.dropdown-toggle {
2021-07-30 19:01:52 +02:00
background-color: var(--button-color-hover);
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
#ConfigData>div>div>table>tbody>tr>td>.btn {
2021-07-30 19:01:52 +02:00
background: var(--button-color);
color: var(--button-text);
2021-07-25 13:43:36 +02:00
text-shadow: unset;
font-weight: bold;
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
#ConfigData>div>div>table>tbody>tr>td>.btn:hover {
2021-07-30 19:01:52 +02:00
background: var(--button-color-hover);
color: var(--button-text-hover);
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
input,
textarea,
.uneditable-input {
2021-07-30 19:01:52 +02:00
background: rgba(0, 0, 0, 0.25) !important;
color: var(--text) !important;
border: transparent;
}
2021-07-30 19:02:33 +02:00
2021-07-30 19:01:52 +02:00
input:focus:not(.btn),
textarea:focus,
.uneditable-input:focus {
background: rgba(255, 255, 255, 0.10) !important;
color: var(--text-hover) !important;
border: transparent;
}
select {
background-color: rgba(0, 0, 0, 0.25);
border: 1px solid #00000000;
color: var(--text)
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
2019-07-14 15:33:48 +02:00
select:focus {
2021-07-30 19:01:52 +02:00
background: #1b1b1b !important;
color: var(--text-hover) !important;
2019-07-14 15:33:48 +02:00
}
2021-07-25 13:43:36 +02:00
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus,
select:focus {
2019-07-14 14:26:11 +02:00
outline: thin dotted #333;
outline: none;
outline-offset: -2px;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
2021-07-25 13:43:36 +02:00
input:focus,
textarea:focus {
2021-07-30 19:01:52 +02:00
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
.alert-info {
2021-07-25 13:43:36 +02:00
font-weight: bold;
border-radius: unset;
border-bottom-left-radius: 0px;
border-bottom-right-radius: 0px;
border: 0px;
background-color: hsla(0, 0%, 100%, .05);
text-shadow: unset;
2021-07-30 19:01:52 +02:00
color: var(--text-hover);
2021-07-25 13:43:36 +02:00
text-transform: capitalize;
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
.alert-inverse {
2021-07-25 13:43:36 +02:00
background-color: #414141;
2019-07-14 15:33:48 +02:00
background-image: var(--main-bg-color) !important;
2019-07-14 14:26:11 +02:00
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;
border-color: transparent;
2021-07-25 13:43:36 +02:00
opacity: 1;
2019-07-14 14:26:11 +02:00
}
/* SETTINGS */
label {
2021-07-30 19:01:52 +02:00
color: var(--text-hover);
}
2021-07-30 19:02:33 +02:00
.badge-active,
#MessagesTabBadge {
2021-07-30 19:01:52 +02:00
background-color: var(--button-color-hover);
color: var(--button-text-hover);
-webkit-box-shadow: 0 5px 10px rgb(0 0 0 / 20%);
-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
box-shadow: 0 5px 10px rgb(0 0 0 / 20%);
}
2021-07-30 19:02:33 +02:00
.label:not(.label-success, .label-warning),
.badge:not(.badge-success, .badge-warning) {
2021-07-30 19:01:52 +02:00
font-size: 10.998px;
font-weight: bold;
line-height: 14px;
color: #ffffff;
text-shadow: 0 -1px 0 rgb(0 0 0 / 25%);
white-space: nowrap;
vertical-align: baseline;
background-color: rgb(255 255 255 / 25%);
2019-07-14 14:26:11 +02:00
}
#ConfigNav {
2021-07-25 13:43:36 +02:00
border: 1px solid rgba(0, 0, 0, .25);
2019-07-14 14:26:11 +02:00
background-color: rgba(0, 0, 0, .25);
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
#ConfigNav.nav-list a {
2021-07-30 19:01:52 +02:00
color: var(--text);
2019-07-14 14:26:11 +02:00
text-decoration: none;
}
2021-07-25 13:43:36 +02:00
.nav-list>li>a,
.nav-list .nav-header {
2019-07-14 14:26:11 +02:00
text-shadow: none;
}
2021-07-25 13:43:36 +02:00
.nav-list>.active>a,
.nav-list>.active>a:hover {
2019-07-14 14:26:11 +02:00
color: #ffffff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
background-color: #0088cc;
}
2021-07-25 13:43:36 +02:00
.nav-list>.active>a,
.nav-list>.active>a:hover {
2021-07-30 19:01:52 +02:00
color: rgb(var(--accent-color)) !important;
2019-07-14 14:26:11 +02:00
background-color: transparent;
}
2021-07-25 13:43:36 +02:00
.nav>li>a:hover {
background-color: hsla(0, 0%, 100%, .08);
2021-07-30 19:01:52 +02:00
color: var(--text-hover) !important;
}
.nav-list .divider {
background-color: rgb(var(--accent-color));
border-bottom: 1px solid rgb(var(--accent-color));
2019-07-14 14:26:11 +02:00
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
span.help-option-title {
color: #eee;
}
2021-07-25 13:43:36 +02:00
.help-block,
.help-inline {
2019-07-14 14:26:11 +02:00
color: #eee;
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
.confirm-help-block {
color: #eee;
font-size: 13px;
line-height: 16px;
margin-bottom: 0;
}
2021-07-25 13:43:36 +02:00
.input-prepend .add-on,
.input-append .add-on {
2019-07-14 14:26:11 +02:00
background-color: rgba(0, 0, 0, 0.25);
2019-07-14 15:33:48 +02:00
background-image: var(--main-bg-color) !important;
2019-07-14 14:26:11 +02:00
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;
color: #FFFFFF !important;
border: none;
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
.config-settitle {
background-color: rgba(0, 0, 0, 0.25);
border-bottom: none;
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
a {
2021-07-30 19:02:33 +02:00
color: var(--link-color);
2019-07-14 14:26:11 +02:00
text-decoration: none;
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
a:hover {
2021-07-30 19:01:52 +02:00
color: var(--link-color-hover);
2019-07-14 14:26:11 +02:00
text-decoration: underline;
}
2021-07-25 13:43:36 +02:00
2019-07-14 14:26:11 +02:00
.caret {
border-top: 4px solid #ffffff;
2021-07-30 19:01:52 +02:00
}
hr {
margin: 18px 0;
border: 0;
border-top: 1px solid gb(var(--accent-color));
border-bottom: 1px solid gb(var(--accent-color));
2021-07-25 13:43:36 +02:00
}