2017-11-08 14:45:21 +00:00
|
|
|
body {
|
|
|
|
background-image: url("binding_dark.png");
|
|
|
|
background-repeat: repeat;
|
|
|
|
}
|
|
|
|
|
|
|
|
#page {
|
|
|
|
border-radius: 6px;
|
|
|
|
background-color: white;
|
|
|
|
max-width: 900px;
|
|
|
|
padding: 20px;
|
2020-02-01 18:35:37 +00:00
|
|
|
margin: 30px auto 100px;
|
2017-11-08 14:45:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.container-fluid {
|
|
|
|
}
|
|
|
|
|
|
|
|
#templates {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#indexers {
|
|
|
|
text-align: center;
|
2020-02-01 18:35:37 +00:00
|
|
|
margin-top: 20px;
|
2017-11-08 14:45:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.indexer-table {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.test-success {
|
|
|
|
color: #449d44;
|
|
|
|
}
|
|
|
|
|
|
|
|
.test-error {
|
|
|
|
color: #c9302c;
|
|
|
|
}
|
|
|
|
|
|
|
|
.test-inprogress {
|
|
|
|
color: #286090;
|
|
|
|
}
|
|
|
|
|
|
|
|
.indexer-buttons {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.indexer-buttons > .btn {
|
|
|
|
margin-bottom: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.indexer-button-test {
|
|
|
|
width: 60px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.setup-item-inputstring {
|
|
|
|
max-width: 255px;
|
|
|
|
}
|
|
|
|
|
2021-03-16 23:29:26 +00:00
|
|
|
.setup-item-password {
|
|
|
|
max-width: 255px;
|
|
|
|
}
|
|
|
|
|
2020-02-19 20:23:55 +00:00
|
|
|
.setup-item-inputcheckbox label {
|
|
|
|
padding: 0 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.setup-item-inputcheckbox input {
|
|
|
|
height: 20px;
|
|
|
|
}
|
|
|
|
|
2017-11-08 14:45:21 +00:00
|
|
|
.setup-item-inputbool input {
|
|
|
|
max-width: 100px;
|
|
|
|
height: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.setup-item-inputselect {
|
|
|
|
max-width: 255px;
|
|
|
|
}
|
|
|
|
|
2021-05-08 20:24:18 +00:00
|
|
|
.setup-item-inputtags {
|
|
|
|
max-width: 255px;
|
|
|
|
}
|
|
|
|
|
2017-11-08 14:45:21 +00:00
|
|
|
[data-type=hiddendata]{
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.spinner {
|
|
|
|
-webkit-animation: spin 2s infinite linear;
|
|
|
|
-moz-animation: spin 2s infinite linear;
|
|
|
|
-o-animation: spin 2s infinite linear;
|
|
|
|
animation: spin 2s infinite linear;
|
|
|
|
}
|
|
|
|
|
|
|
|
@-moz-keyframes spin {
|
|
|
|
from {
|
|
|
|
-moz-transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
to {
|
|
|
|
-moz-transform: rotate(360deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@-webkit-keyframes spin {
|
|
|
|
from {
|
|
|
|
-webkit-transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
to {
|
|
|
|
-webkit-transform: rotate(360deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes spin {
|
|
|
|
from {
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
to {
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#setup-indexer-go {
|
|
|
|
width: 70px;
|
|
|
|
}
|
|
|
|
|
|
|
|
hr {
|
|
|
|
border-top-color: #cdcdcd;
|
|
|
|
}
|
|
|
|
|
|
|
|
.input-area {
|
2020-02-01 18:35:37 +00:00
|
|
|
margin: 4px 0;
|
2017-11-08 14:45:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.input-area > * {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
.input-area > p {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.input-header {
|
2020-12-11 22:14:21 +00:00
|
|
|
font-size: 16px;
|
|
|
|
width: 250px;
|
2017-11-08 14:45:21 +00:00
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.input-right {
|
|
|
|
width: 300px;
|
|
|
|
display: inline-block;
|
|
|
|
font-family: monospace;
|
|
|
|
}
|
|
|
|
|
|
|
|
#sonarr-warning {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#logo {
|
|
|
|
max-width: 50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#header-title {
|
|
|
|
font-size: 34px;
|
|
|
|
vertical-align: middle;
|
|
|
|
padding-left: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#footer {
|
|
|
|
color: #444444;
|
2020-02-01 18:35:37 +00:00
|
|
|
margin: 10px auto 0;
|
2017-11-08 14:45:21 +00:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2020-12-11 22:14:21 +00:00
|
|
|
#jackett-allowext, #jackett-allowupdate, #jackett-logging, #jackett-prerelease, #jackett-cache-enabled {
|
2017-11-08 14:45:21 +00:00
|
|
|
width: 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-fillwidth {
|
|
|
|
width: 1200px;
|
|
|
|
min-width:80%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.indexer-caps {
|
2020-02-01 18:35:37 +00:00
|
|
|
padding: 0 15px 15px 15px;
|
2017-11-08 14:45:21 +00:00
|
|
|
border-top: 1px solid #e5e5e5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.indexer-caps table {
|
|
|
|
border-bottom: 1px solid #ddd;
|
|
|
|
}
|
|
|
|
|
2020-02-23 20:31:01 +00:00
|
|
|
.jackettlog-narrowcol {
|
|
|
|
width: 1px;
|
|
|
|
white-space: nowrap;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
|
2017-11-08 14:45:21 +00:00
|
|
|
.jackettlogWarn {
|
|
|
|
background-color: #FFFF8E !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.jackettlogError {
|
|
|
|
background-color: #FF6060 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.jackettdownloaded {
|
|
|
|
color: blueviolet;
|
|
|
|
}
|
|
|
|
|
|
|
|
.jacketdownloadlocal {
|
|
|
|
padding-left: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.downloadcolumn {
|
|
|
|
text-align:center;
|
|
|
|
}
|
|
|
|
|
|
|
|
pre {
|
|
|
|
display: block;
|
|
|
|
padding: 3px;
|
2020-02-01 18:35:37 +00:00
|
|
|
margin: 0 0 0;
|
2017-11-08 14:45:21 +00:00
|
|
|
font-size: 13px;
|
|
|
|
line-height: 1.42857143;
|
|
|
|
color: #333;
|
|
|
|
background-color: transparent;
|
2020-02-01 18:35:37 +00:00
|
|
|
border: 0;
|
|
|
|
border-radius: 0;
|
2020-02-23 20:31:01 +00:00
|
|
|
word-break: normal;
|
|
|
|
white-space: pre-wrap; /* Since CSS 2.1 */
|
|
|
|
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
|
|
|
|
white-space: -pre-wrap; /* Opera 4-6 */
|
|
|
|
white-space: -o-pre-wrap; /* Opera 7 */
|
|
|
|
word-wrap: break-word; /* Internet Explorer 5.5+ */
|
2017-11-08 14:45:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.modal-open .modal {
|
|
|
|
overflow-x: auto; /* Model can be bigger than the screen on mobiles */
|
|
|
|
}
|
|
|
|
|
2020-02-01 18:35:37 +00:00
|
|
|
.dataTables_length {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dataTables_length select, .dataTables_filter input, .dataTable.compact tfoot td select {
|
|
|
|
display: inline-block;
|
|
|
|
height: 26px;
|
|
|
|
padding: 0 8px;
|
|
|
|
background-color: #fff;
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dataTables_length select {
|
|
|
|
width: inherit;
|
|
|
|
}
|
|
|
|
|
2017-11-08 14:45:21 +00:00
|
|
|
.dataTables_filter input {
|
2020-02-01 18:35:37 +00:00
|
|
|
width: 400px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dataTable.compact tfoot td {
|
|
|
|
padding: 4px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dataTable.compact tfoot td select {
|
|
|
|
height: 26px;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dataTables_wrapper .dataTables_paginate .paginate_button {
|
|
|
|
padding: 3px 9px !important;
|
2017-11-08 14:45:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#unconfigured-indexers-template {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.jackett-apikey{
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.jackett-apikey .input-header{
|
|
|
|
width: 80px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.setup-item-displayinfo:empty {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
table td.fit{
|
|
|
|
white-space: nowrap;
|
|
|
|
width: 1%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.label-imdb {
|
|
|
|
background-color: #d0ab44;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tooltip-inner {
|
|
|
|
max-width: 500px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tooltip-inner img {
|
|
|
|
max-width: 250px;
|
2020-02-19 20:23:55 +00:00
|
|
|
height: auto;
|
2017-11-08 14:45:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.type-public {
|
|
|
|
color: #449d44
|
|
|
|
}
|
|
|
|
|
|
|
|
.type-private {
|
|
|
|
color: #c9302c
|
|
|
|
}
|
|
|
|
|
|
|
|
.type-semi-private {
|
|
|
|
color: #ec971f
|
|
|
|
}
|
|
|
|
|
|
|
|
.dataTables_deadfilter {
|
|
|
|
float: right;
|
|
|
|
text-align: right;
|
|
|
|
margin-right: 1em;
|
|
|
|
}
|
2019-04-01 08:24:49 +00:00
|
|
|
|
|
|
|
input#searchquery {
|
2020-02-01 18:35:37 +00:00
|
|
|
width: 400px;
|
|
|
|
display: inline-block;
|
2017-11-08 14:45:21 +00:00
|
|
|
}
|
2019-04-01 08:24:49 +00:00
|
|
|
|
|
|
|
#proxy-warning {
|
|
|
|
color: red;
|
|
|
|
}
|
2021-05-08 20:24:18 +00:00
|
|
|
|
|
|
|
.label-tag {
|
|
|
|
text-transform: lowercase;
|
|
|
|
background-color: #777;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tagify {
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tagify .tagify__input {
|
|
|
|
min-width: 0;
|
|
|
|
text-transform: lowercase;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tagify .tagify__tag-text {
|
|
|
|
text-transform: lowercase;
|
|
|
|
}
|