2024-10-10 00:04:44 -04:00
|
|
|
/* New UI --------------------------------------------------------- */
|
|
|
|
|
|
|
|
@import url('../fonts/fonts.css');
|
|
|
|
@import url(cjratliff.css);
|
|
|
|
|
|
|
|
/* ---------------------------------------------------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-10-18 22:39:32 -04:00
|
|
|
/* Reset */
|
|
|
|
|
|
|
|
a img,
|
|
|
|
:link img,
|
|
|
|
:visited img {
|
2023-09-06 19:45:48 -04:00
|
|
|
border: none;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
2024-10-03 08:37:11 -04:00
|
|
|
/* Forms */
|
|
|
|
|
|
|
|
input[type="text"],
|
|
|
|
input[type="number"],
|
|
|
|
input[type="password"],
|
|
|
|
input[type="button"],
|
|
|
|
button,
|
|
|
|
select {
|
2024-10-17 16:24:20 -04:00
|
|
|
background-color: var(--darkmode-background);
|
|
|
|
border: solid 1px var(--darkmode-line-color);
|
|
|
|
border-radius: 8px;
|
|
|
|
padding: 4px 4px 4px 10px;
|
|
|
|
color: var(--darkmode-text);
|
2024-10-03 08:37:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
input[type="checkbox"],
|
|
|
|
input[type="radio"] {
|
2024-10-17 16:24:20 -04:00
|
|
|
accent-color: var(--darkmode-primary);
|
2024-10-03 08:37:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
input[type="button"],
|
|
|
|
input[type="submit"],
|
|
|
|
button {
|
|
|
|
cursor: pointer;
|
|
|
|
padding: 4px 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
button:disabled {
|
|
|
|
cursor: initial;
|
|
|
|
}
|
|
|
|
|
2022-10-18 22:39:32 -04:00
|
|
|
/*table { border-collapse: collapse; border-spacing: 0; }*/
|
|
|
|
|
|
|
|
:focus {
|
2023-09-06 19:45:48 -04:00
|
|
|
outline: none;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Structure */
|
|
|
|
|
|
|
|
body {
|
2023-09-06 19:45:48 -04:00
|
|
|
background-color: var(--darkmode-background);
|
|
|
|
color: var(--darkmode-text);
|
|
|
|
font-family: 'Google Sans', -apple-system, 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 18px;
|
|
|
|
margin: 0;
|
|
|
|
text-align: left;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.aside {
|
2023-09-06 19:45:48 -04:00
|
|
|
width: 300px;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.invisible {
|
2023-09-06 19:45:48 -04:00
|
|
|
display: none;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
2023-06-18 23:31:27 -03:00
|
|
|
/* Buttons */
|
|
|
|
|
|
|
|
.download {
|
2023-09-06 19:45:48 -04:00
|
|
|
--button-bg: #353434;
|
|
|
|
--button-hover-bg: #464646;
|
|
|
|
--button-text-color: #CCCCCC;
|
|
|
|
--button-hover-text-color: #8bb9fe;
|
|
|
|
--button-border-radius: 10px;
|
|
|
|
--button-diameter: 36px;
|
|
|
|
--button-outline-width: 1px;
|
|
|
|
--button-outline-color: rgb(141, 141, 141);
|
2023-06-18 23:31:27 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
.download {
|
2023-09-06 19:45:48 -04:00
|
|
|
box-sizing: border-box;
|
|
|
|
width: var(--button-diameter);
|
|
|
|
height: var(--button-diameter);
|
|
|
|
border-radius: var(--button-border-radius);
|
|
|
|
background-color: var(--button-bg);
|
|
|
|
color: var(--button-text-color);
|
|
|
|
border: none;
|
|
|
|
cursor: pointer;
|
|
|
|
position: relative;
|
|
|
|
outline: none;
|
|
|
|
background-image: url("../images/download.svg");
|
|
|
|
background-position: center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: 1.25em;
|
|
|
|
display: inline-block;
|
|
|
|
bottom: 8px;
|
2023-06-18 23:31:27 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
.download:hover,
|
|
|
|
.download:focus:not(:focus-visible) .tooltip {
|
2023-09-06 19:45:48 -04:00
|
|
|
opacity: 1;
|
|
|
|
visibility: visible;
|
|
|
|
top: calc((100% + var(--tooltip-offset)) * -1);
|
2023-06-18 23:31:27 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
.download:hover,
|
|
|
|
.download:focus {
|
2023-09-06 19:45:48 -04:00
|
|
|
background-color: var(--button-hover-bg);
|
2023-06-18 23:31:27 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
.download:active {
|
2023-09-06 19:45:48 -04:00
|
|
|
outline: var(--button-outline-width) solid var(--button-outline-color);
|
2023-06-18 23:31:27 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
.button {
|
2023-06-27 21:11:58 -03:00
|
|
|
padding: 4px 4px;
|
2023-06-18 23:31:27 -03:00
|
|
|
background-color: #333;
|
2023-09-06 19:45:48 -04:00
|
|
|
border-radius: 2px;
|
|
|
|
border: 1px solid #dcdcdc;
|
|
|
|
display: inline-block;
|
|
|
|
cursor: pointer;
|
|
|
|
color: #FFF;
|
|
|
|
font-family: 'Google Sans', -apple-system, 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
|
|
|
font-size: 14px;
|
2023-06-18 23:31:27 -03:00
|
|
|
}
|
2023-09-06 19:45:48 -04:00
|
|
|
|
2023-06-18 23:31:27 -03:00
|
|
|
.button:hover {
|
2023-09-06 19:45:48 -04:00
|
|
|
background: linear-gradient(to bottom, #6c7c7c 5%, #768d87 100%);
|
|
|
|
background-color: #6c7c7c;
|
2023-06-18 23:31:27 -03:00
|
|
|
}
|
2023-09-06 19:45:48 -04:00
|
|
|
|
2023-06-18 23:31:27 -03:00
|
|
|
.button:active {
|
2023-09-06 19:45:48 -04:00
|
|
|
position: relative;
|
|
|
|
top: 1px;
|
2023-06-18 23:31:27 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
.custom-file-upload {
|
|
|
|
padding: 10px 5px;
|
|
|
|
width: 140px;
|
|
|
|
background-color: #333;
|
|
|
|
color: #FFF;
|
|
|
|
text-transform: uppercase;
|
|
|
|
text-align: center;
|
|
|
|
display: inline-block;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.custom-file-upload:hover {
|
2023-09-06 19:45:48 -04:00
|
|
|
background: linear-gradient(to bottom, #6c7c7c 5%, #768d87 100%);
|
|
|
|
background-color: #6c7c7c;
|
2023-06-18 23:31:27 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
.custom-file-upload:active {
|
2023-09-06 19:45:48 -04:00
|
|
|
position: relative;
|
|
|
|
top: 1px;
|
2023-06-18 23:31:27 -03:00
|
|
|
}
|
|
|
|
|
2022-10-18 22:39:32 -04:00
|
|
|
/* Typography */
|
|
|
|
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4 {
|
2023-09-06 19:45:48 -04:00
|
|
|
color: var(--darkmode-text-alt);
|
|
|
|
font-size: 12px;
|
|
|
|
font-weight: bold;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0 0 5px;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
2023-09-06 19:45:48 -04:00
|
|
|
color: var(--darkmode-text);
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: bold;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#mochaPage h3 {
|
2023-09-06 19:45:48 -04:00
|
|
|
border-bottom: 1px solid #bbb;
|
|
|
|
display: block;
|
|
|
|
font-size: 12px;
|
|
|
|
margin: 0 0 8px;
|
|
|
|
padding: 6px 0;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
2024-10-03 08:37:11 -04:00
|
|
|
#error_div,
|
|
|
|
#rename_error {
|
|
|
|
color: var(--highlight-color--red);
|
2023-09-06 19:45:48 -04:00
|
|
|
float: left;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: bold;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
h4 {
|
2023-09-06 19:45:48 -04:00
|
|
|
font-size: 11px;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
2024-10-03 08:37:11 -04:00
|
|
|
color: var(--highlight-color--orange);
|
2023-09-06 19:45:48 -04:00
|
|
|
cursor: pointer;
|
|
|
|
text-decoration: none;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
2023-09-06 19:45:48 -04:00
|
|
|
text-decoration: none;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
2023-09-06 19:45:48 -04:00
|
|
|
margin: 0;
|
|
|
|
padding: 0 0 9px;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* List Elements */
|
|
|
|
|
|
|
|
ul {
|
2023-09-06 19:45:48 -04:00
|
|
|
list-style: outside;
|
|
|
|
margin: 0 0 9px 16px;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
dt {
|
2023-09-06 19:45:48 -04:00
|
|
|
font-weight: bold;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
dd {
|
2023-09-06 19:45:48 -04:00
|
|
|
padding: 0 0 9px;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
2024-10-03 08:37:11 -04:00
|
|
|
/* Forms */
|
|
|
|
|
|
|
|
fieldset {
|
2024-10-17 16:04:14 -04:00
|
|
|
border: solid 1px var(--darkmode-line-color);
|
|
|
|
border-radius: 8px;
|
|
|
|
padding: 4px 4px 4px 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
fieldset legend {
|
|
|
|
font-weight: bold;
|
|
|
|
margin-left: 8px;
|
|
|
|
padding: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
fieldset label {
|
|
|
|
padding: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
fieldset+div.formRow {
|
|
|
|
margin-top: 10px;
|
2024-10-03 08:37:11 -04:00
|
|
|
}
|
|
|
|
|
2022-10-18 22:39:32 -04:00
|
|
|
/* Code */
|
|
|
|
|
|
|
|
pre {
|
2023-09-06 19:45:48 -04:00
|
|
|
background-color: #f6f6f6;
|
|
|
|
border: 1px solid #d1d7dc;
|
|
|
|
color: #006600;
|
|
|
|
display: block;
|
|
|
|
font-family: 'Google Sans Display', 'Courier New', Courier, monospace;
|
|
|
|
font-size: 11px;
|
|
|
|
margin: 0 0 10px;
|
|
|
|
max-height: 250px;
|
|
|
|
overflow: auto;
|
|
|
|
padding: 10px;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Dividers */
|
|
|
|
|
|
|
|
hr {
|
2023-09-06 19:45:48 -04:00
|
|
|
background-color: var(--darkmode-line-color);
|
|
|
|
border: 0px;
|
|
|
|
color: var(--darkmode-text);
|
|
|
|
height: 1px;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.vcenter {
|
2023-09-06 19:45:48 -04:00
|
|
|
vertical-align: middle;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#urls {
|
2023-09-06 19:45:48 -04:00
|
|
|
height: 100%;
|
|
|
|
width: 90%;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#trackersUrls {
|
2023-09-06 19:45:48 -04:00
|
|
|
height: 100%;
|
|
|
|
width: 90%;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
2024-10-03 08:37:11 -04:00
|
|
|
#Filters {
|
|
|
|
overflow-x: hidden !important;
|
|
|
|
/* override for default mocha inline style */
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
2024-10-03 08:37:11 -04:00
|
|
|
#Filters .filterTitle {
|
|
|
|
padding-left: .2rem;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
2024-10-03 08:37:11 -04:00
|
|
|
#Filters ul {
|
|
|
|
list-style-type: none;
|
|
|
|
margin-left: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#Filters .filterTitle img,
|
2022-10-18 22:39:32 -04:00
|
|
|
#Filters ul img {
|
2023-09-06 19:45:48 -04:00
|
|
|
height: 16px;
|
|
|
|
padding: 2px 4px;
|
|
|
|
vertical-align: middle;
|
|
|
|
width: 16px;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
2024-10-03 08:37:11 -04:00
|
|
|
#Filters ul li button.categoryToggle {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2022-10-18 22:39:32 -04:00
|
|
|
.selectedFilter {
|
2024-10-10 09:13:33 -04:00
|
|
|
background-color: var(--darkmode-background-light);
|
2023-09-06 19:45:48 -04:00
|
|
|
color: var(--darkmode-background);
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.selectedFilter a {
|
2023-09-06 19:45:48 -04:00
|
|
|
color: #ffffff;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
2024-10-17 15:08:24 -04:00
|
|
|
#torrentFilesFilterToolbar {
|
|
|
|
float: right;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
|
2022-10-18 22:39:32 -04:00
|
|
|
#properties {
|
2023-09-06 19:45:48 -04:00
|
|
|
background-color: #e5e5e5;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
a.propButton {
|
2023-09-06 19:45:48 -04:00
|
|
|
border: 1px solid rgb(85 81 91);
|
|
|
|
margin-left: 3px;
|
|
|
|
margin-right: 3px;
|
|
|
|
/*border-radius: 3px;*/
|
|
|
|
padding: 2px;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
a.propButton img {
|
2023-09-06 19:45:48 -04:00
|
|
|
margin-bottom: -4px;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.scrollableMenu {
|
2023-09-06 19:45:48 -04:00
|
|
|
overflow-x: hidden;
|
|
|
|
overflow-y: auto;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* context menu specific */
|
|
|
|
|
|
|
|
.contextMenu {
|
2023-09-06 19:45:48 -04:00
|
|
|
background-color: var(--darkmode-background);
|
|
|
|
color: var(--darkmode-text);
|
|
|
|
border: 1px solid var(--darkmode-line-color);
|
|
|
|
display: none;
|
|
|
|
list-style-type: none;
|
|
|
|
padding: 0;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.contextMenu .separator {
|
2023-09-06 19:45:48 -04:00
|
|
|
border-top: 1px solid var(--darkmode-line-color);
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.contextMenu li {
|
2023-09-06 19:45:48 -04:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2024-10-03 08:37:11 -04:00
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.contextMenu li.disabled {
|
|
|
|
background-color: transparent;
|
|
|
|
cursor: default;
|
|
|
|
filter: grayscale(1);
|
|
|
|
opacity: 0.6;
|
|
|
|
}
|
|
|
|
|
|
|
|
.contextMenu li.disabled a {
|
|
|
|
pointer-events: none;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.contextMenu li a {
|
2023-09-06 19:45:48 -04:00
|
|
|
color: var(--darkmode-text);
|
|
|
|
display: block;
|
|
|
|
font-family: 'Google Sans', -apple-system, 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
|
|
|
font-size: 12px;
|
|
|
|
padding: 5px 20px 5px 5px;
|
|
|
|
text-decoration: none;
|
|
|
|
white-space: nowrap;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.contextMenu li a:hover {
|
2023-09-06 19:45:48 -04:00
|
|
|
background-color: var(--darkmode-text-alt);
|
|
|
|
color: var(--darkmode-line-color);
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.contextMenu li a.disabled {
|
2023-09-06 19:45:48 -04:00
|
|
|
color: #ccc;
|
|
|
|
font-style: italic;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.contextMenu li a.disabled:hover {
|
2023-09-06 19:45:48 -04:00
|
|
|
background-color: #eee;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.contextMenu li ul {
|
2023-09-06 19:45:48 -04:00
|
|
|
background-color: var(--darkmode-background);
|
|
|
|
color: var(--darkmode-text);
|
|
|
|
border: 1px solid var(--darkmode-line-color);
|
|
|
|
left: -999em;
|
|
|
|
list-style-type: none;
|
|
|
|
margin: -29px 0 0 100%;
|
|
|
|
padding: 0;
|
|
|
|
position: absolute;
|
|
|
|
width: 164px;
|
|
|
|
z-index: 8000;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.contextMenu li ul li a {
|
2023-09-06 19:45:48 -04:00
|
|
|
position: relative;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.contextMenu li a.arrow-right,
|
|
|
|
.contextMenu li a:hover.arrow-right {
|
2023-09-06 19:45:48 -04:00
|
|
|
background-image: url("../images/arrow-right.gif");
|
|
|
|
background-position: right center;
|
|
|
|
background-repeat: no-repeat;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.contextMenu li:hover ul,
|
|
|
|
.contextMenu li.ieHover ul,
|
|
|
|
.contextMenu li li.ieHover ul,
|
|
|
|
.contextMenu li li li.ieHover ul,
|
|
|
|
.contextMenu li li:hover ul,
|
|
|
|
.contextMenu li li li:hover ul {
|
2023-09-06 19:45:48 -04:00
|
|
|
/* lists nested under hovered list items */
|
|
|
|
left: auto;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.contextMenu li img {
|
2023-09-06 19:45:48 -04:00
|
|
|
height: 16px;
|
|
|
|
margin-bottom: -4px;
|
|
|
|
width: 16px;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.contextMenu li input[type="checkbox"] {
|
2023-09-06 19:45:48 -04:00
|
|
|
position: relative;
|
|
|
|
top: 3px;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
2024-10-03 08:37:11 -04:00
|
|
|
#contextCategoryList img {
|
|
|
|
border: 1px solid transparent;
|
|
|
|
padding: 1px;
|
|
|
|
}
|
|
|
|
|
2022-10-18 22:39:32 -04:00
|
|
|
/* Sliders */
|
|
|
|
|
|
|
|
.slider {
|
2023-09-06 19:45:48 -04:00
|
|
|
clear: both;
|
|
|
|
font-size: 12px;
|
|
|
|
font-weight: bold;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
position: relative;
|
|
|
|
width: 400px;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.sliderWrapper {
|
2023-09-06 19:45:48 -04:00
|
|
|
font-size: 1px;
|
|
|
|
height: 9px;
|
|
|
|
line-height: 1px;
|
|
|
|
position: relative;
|
|
|
|
width: 422px;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.sliderarea {
|
2023-09-06 19:45:48 -04:00
|
|
|
background: #f2f2f2 url("../images/slider-area.gif") repeat-x;
|
|
|
|
border: 1px solid #a3a3a3;
|
|
|
|
border-bottom: 1px solid #ccc;
|
|
|
|
border-left: 1px solid #ccc;
|
|
|
|
font-size: 1px;
|
|
|
|
height: 7px;
|
|
|
|
left: 0;
|
|
|
|
line-height: 1px;
|
|
|
|
margin: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
padding: 0;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
width: 420px;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.sliderknob {
|
2023-09-06 19:45:48 -04:00
|
|
|
background: url("../images/knob.gif") no-repeat;
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: 1px;
|
|
|
|
height: 9px;
|
|
|
|
left: 0;
|
|
|
|
line-height: 1px;
|
|
|
|
overflow: hidden;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
width: 19px;
|
|
|
|
z-index: 2;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.update {
|
2023-09-06 19:45:48 -04:00
|
|
|
padding-bottom: 5px;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.mochaToolButton {
|
2023-09-06 19:45:48 -04:00
|
|
|
margin-right: 10px;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Mocha Customization */
|
|
|
|
|
|
|
|
#mochaToolbar {
|
2023-09-06 19:45:48 -04:00
|
|
|
height: 29px;
|
|
|
|
margin-top: 5px;
|
|
|
|
overflow-y: hidden;
|
|
|
|
position: relative;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#mochaToolbar .divider {
|
2023-09-06 19:45:48 -04:00
|
|
|
border-left: 1px solid var(--darkmode-line-color);
|
|
|
|
padding-left: 14px;
|
|
|
|
padding-top: 15px;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.MyMenuIcon {
|
2023-09-06 19:45:48 -04:00
|
|
|
margin-bottom: -3px;
|
|
|
|
margin-left: -18px;
|
|
|
|
padding-right: 5px;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#mainWindowTabs {
|
2023-09-06 19:45:48 -04:00
|
|
|
float: right;
|
|
|
|
margin: 4px 5px 0 0;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#torrentsFilterToolbar {
|
2023-09-06 19:45:48 -04:00
|
|
|
float: right;
|
|
|
|
margin-right: 30px;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#torrentsFilterInput {
|
2024-10-03 08:37:11 -04:00
|
|
|
background-color: var(--color-background-default);
|
2023-09-06 19:45:48 -04:00
|
|
|
background-image: url("../images/edit-find.svg");
|
2024-10-17 16:25:43 -04:00
|
|
|
background-position: .5rem;
|
2023-09-06 19:45:48 -04:00
|
|
|
background-repeat: no-repeat;
|
2024-10-17 16:25:43 -04:00
|
|
|
background-size: .75rem;
|
2023-09-06 19:45:48 -04:00
|
|
|
padding-left: 2em;
|
|
|
|
width: 160px;
|
|
|
|
height: 100%;
|
|
|
|
min-height: 20px;
|
2024-10-19 10:08:03 -04:00
|
|
|
}
|
2024-10-03 08:37:11 -04:00
|
|
|
|
|
|
|
#torrentsFilterRegexBox {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#torrentsFilterRegexBox+label {
|
|
|
|
background-image: url("../images/regex.svg");
|
|
|
|
background-position: center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: 1.5em;
|
|
|
|
border: 1px solid var(--color-border-default);
|
|
|
|
border-radius: 4px;
|
|
|
|
display: inline-block;
|
|
|
|
height: 26px;
|
|
|
|
margin-bottom: -9px;
|
|
|
|
width: 26px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#torrentsFilterRegexBox:checked+label {
|
|
|
|
background-color: var(--color-background-default);
|
|
|
|
background-image: url("../images/regex.svg");
|
|
|
|
background-position: center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: 1.5em;
|
|
|
|
border: 1px solid var(--color-accent-blue);
|
|
|
|
border-radius: 4px;
|
|
|
|
display: inline-block;
|
|
|
|
height: 26px;
|
|
|
|
margin-bottom: -9px;
|
|
|
|
width: 26px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#torrentsFilterSelect {
|
|
|
|
padding: 2px 4px;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#torrentFilesFilterToolbar {
|
2023-09-06 19:45:48 -04:00
|
|
|
float: right;
|
|
|
|
margin-right: 30px;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#torrentFilesFilterInput {
|
2023-09-06 19:45:48 -04:00
|
|
|
background-image: url("../images/edit-find.svg");
|
|
|
|
background-position: left;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: 1.5em;
|
|
|
|
padding-left: 2em;
|
|
|
|
width: 160px;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Tri-state checkbox */
|
|
|
|
|
|
|
|
label.tristate {
|
2023-09-06 19:45:48 -04:00
|
|
|
background: url("../images/3-state-checkbox.gif") 0 0 no-repeat;
|
|
|
|
display: block;
|
|
|
|
float: left;
|
|
|
|
height: 13px;
|
|
|
|
margin: 0.15em 8px 5px 0px;
|
|
|
|
overflow: hidden;
|
|
|
|
text-indent: -999em;
|
|
|
|
width: 13px;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
label.checked {
|
2023-09-06 19:45:48 -04:00
|
|
|
background-position: 0 -13px;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
label.partial {
|
2023-09-06 19:45:48 -04:00
|
|
|
background-position: 0 -26px;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
div.formRow {
|
2023-09-06 19:45:48 -04:00
|
|
|
clear: left;
|
|
|
|
display: block;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.filterTitle {
|
2024-10-03 08:37:11 -04:00
|
|
|
box-sizing: border-box;
|
|
|
|
cursor: pointer;
|
|
|
|
display: flex;
|
2023-09-06 19:45:48 -04:00
|
|
|
font-weight: bold;
|
2024-10-03 08:37:11 -04:00
|
|
|
gap: 4px;
|
2023-09-06 19:45:48 -04:00
|
|
|
overflow: hidden;
|
2024-10-03 08:37:11 -04:00
|
|
|
padding: 4px 0 4px 6px;
|
2023-09-06 19:45:48 -04:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
text-transform: uppercase;
|
2024-10-03 08:37:11 -04:00
|
|
|
user-select: none;
|
2023-09-06 19:45:48 -04:00
|
|
|
white-space: nowrap;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.filterTitle img {
|
2024-10-03 08:37:11 -04:00
|
|
|
box-sizing: border-box;
|
2023-09-06 19:45:48 -04:00
|
|
|
height: 16px;
|
2024-10-03 08:37:11 -04:00
|
|
|
padding: 2px;
|
2023-09-06 19:45:48 -04:00
|
|
|
width: 16px;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
2024-10-03 08:37:11 -04:00
|
|
|
.collapsedCategory > ul {
|
|
|
|
display: none;
|
|
|
|
}
|
2022-10-18 22:39:32 -04:00
|
|
|
|
2024-10-03 08:37:11 -04:00
|
|
|
.collapsedCategory .categoryToggle,
|
2022-10-18 22:39:32 -04:00
|
|
|
.filterTitle img.rotate {
|
2024-10-03 08:37:11 -04:00
|
|
|
transform: rotate(-90deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.filterList * {
|
|
|
|
box-sizing: border-box;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
ul.filterList {
|
2024-10-03 08:37:11 -04:00
|
|
|
margin: 0;
|
2023-09-06 19:45:48 -04:00
|
|
|
padding-left: 0;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
2024-10-03 08:37:11 -04:00
|
|
|
ul.filterList span.link:hover :is(img, button),
|
|
|
|
ul.filterList .selectedFilter > .link :is(img, button) {
|
|
|
|
filter: var(--color-icon-hover);
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.filterList span.link {
|
|
|
|
cursor: pointer;
|
|
|
|
display: flex;
|
|
|
|
gap: 5px;
|
2023-09-06 19:45:48 -04:00
|
|
|
overflow: hidden;
|
2024-10-03 08:37:11 -04:00
|
|
|
padding: 4px 6px;
|
2023-09-06 19:45:48 -04:00
|
|
|
white-space: nowrap;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
2024-10-03 08:37:11 -04:00
|
|
|
ul.filterList span.link:hover {
|
|
|
|
background-color: var(--darkmode-primary);
|
2024-11-17 01:34:14 -05:00
|
|
|
color: var(--darkmode-background) !important;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
2024-10-03 08:37:11 -04:00
|
|
|
span.link :last-child {
|
|
|
|
min-width: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
2024-10-03 08:37:11 -04:00
|
|
|
span.link :is(img, button) {
|
|
|
|
flex-shrink: 0;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
2024-10-03 08:37:11 -04:00
|
|
|
.selectedFilter > span.link {
|
|
|
|
background-color: var(--color-background-blue);
|
2024-11-17 01:34:14 -05:00
|
|
|
color: var(--darkmode-background);
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
2024-10-03 08:37:11 -04:00
|
|
|
.subcategories,
|
|
|
|
.subcategories ul {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
2024-10-03 08:37:11 -04:00
|
|
|
.subcategories .categoryToggle {
|
|
|
|
display: inline-block;
|
|
|
|
visibility: hidden;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
2024-10-03 08:37:11 -04:00
|
|
|
.categoryToggle {
|
|
|
|
background: url("../images/go-down.svg") center center / 10px no-repeat
|
|
|
|
transparent;
|
|
|
|
border: none;
|
|
|
|
display: none;
|
|
|
|
height: 16px;
|
|
|
|
margin-right: -2px;
|
|
|
|
padding: 2px;
|
|
|
|
transition: transform 0.3s;
|
|
|
|
width: 16px;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.unselectable {
|
2023-09-06 19:45:48 -04:00
|
|
|
-webkit-touch-callout: none;
|
|
|
|
user-select: none;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
2024-10-03 08:37:11 -04:00
|
|
|
#propGeneral {
|
2023-09-06 19:45:48 -04:00
|
|
|
padding: 2px;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.piecesbarWrapper {
|
2023-09-06 19:45:48 -04:00
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.piecesbarCanvas {
|
2023-09-06 19:45:48 -04:00
|
|
|
height: 100%;
|
|
|
|
image-rendering: pixelated;
|
|
|
|
inset: 0;
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#watched_folders_tab {
|
2023-09-06 19:45:48 -04:00
|
|
|
border-collapse: collapse;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#watched_folders_tab td,
|
|
|
|
#watched_folders_tab th {
|
2023-09-06 19:45:48 -04:00
|
|
|
border: 1px solid black;
|
|
|
|
padding: 2px 4px;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.select-watched-folder-editable {
|
2023-09-06 19:45:48 -04:00
|
|
|
background-color: white;
|
|
|
|
border: solid grey 1px;
|
|
|
|
height: 20px;
|
|
|
|
position: relative;
|
|
|
|
width: 160px;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.select-watched-folder-editable select {
|
2023-09-06 19:45:48 -04:00
|
|
|
border: none;
|
|
|
|
bottom: 0px;
|
|
|
|
left: 0px;
|
|
|
|
margin: 0;
|
|
|
|
position: absolute;
|
|
|
|
top: 0px;
|
|
|
|
width: 160px;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.select-watched-folder-editable input {
|
2023-09-06 19:45:48 -04:00
|
|
|
border: none;
|
|
|
|
left: 0px;
|
|
|
|
padding: 1px;
|
|
|
|
position: absolute;
|
|
|
|
top: 0px;
|
|
|
|
width: 140px;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.select-watched-folder-editable select:focus,
|
|
|
|
.select-editable input:focus {
|
2023-09-06 19:45:48 -04:00
|
|
|
outline: none;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Workaround to prevent the transfer list from
|
|
|
|
* disappearing when zooming in the browser.
|
|
|
|
*/
|
|
|
|
#filtersColumn_handle {
|
2023-09-06 19:45:48 -04:00
|
|
|
margin-left: -1px;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.combo_priority {
|
2023-09-06 19:45:48 -04:00
|
|
|
font-size: 1em;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
td.statusBarSeparator {
|
2023-09-06 19:45:48 -04:00
|
|
|
background-image: url("../images/toolbox-divider.gif");
|
|
|
|
background-position: center 1px;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: 2px 18px;
|
|
|
|
width: 22px;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Statistics window */
|
2024-10-03 08:37:11 -04:00
|
|
|
#statisticspage * {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
#statisticsContent {
|
|
|
|
& table {
|
|
|
|
background-color: var(--color-background-default);
|
|
|
|
border-radius: 6px;
|
|
|
|
margin-bottom: 6px;
|
|
|
|
padding: 6px 10px;
|
|
|
|
|
|
|
|
& .statisticsValue {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
& h3 {
|
|
|
|
color: var(--color-text-default);
|
|
|
|
margin-bottom: 1px;
|
|
|
|
padding: 2px;
|
|
|
|
}
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Search tab */
|
|
|
|
|
|
|
|
#SearchPanel,
|
|
|
|
#SearchPanel_wrapper,
|
|
|
|
#SearchPanel_pad {
|
2023-09-06 19:45:48 -04:00
|
|
|
height: inherit;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#searchResults {
|
2023-09-06 19:45:48 -04:00
|
|
|
height: 100%;
|
|
|
|
padding: 0 20px;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#searchResultsTableContainer {
|
2023-09-06 19:45:48 -04:00
|
|
|
-moz-height: calc(100% - 150px);
|
|
|
|
-webkit-height: calc(100% - 150px);
|
|
|
|
height: calc(100% - 150px);
|
|
|
|
overflow: auto;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#searchResultsTableDiv {
|
2023-09-06 19:45:48 -04:00
|
|
|
-moz-height: calc(100% - 26px) !important;
|
|
|
|
-webkit-height: calc(100% - 26px) !important;
|
|
|
|
height: calc(100% - 26px) !important;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#searchResults .dynamicTable {
|
2023-09-06 19:45:48 -04:00
|
|
|
width: 100%;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#searchResults .numSearchResults {
|
2023-09-06 19:45:48 -04:00
|
|
|
font-style: italic;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.red {
|
2024-10-03 08:37:11 -04:00
|
|
|
color: var(--highlight-color--red);
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.green {
|
2024-10-03 08:37:11 -04:00
|
|
|
color: var(--highlight-color--green);
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.searchPluginsTableRow {
|
2023-09-06 19:45:48 -04:00
|
|
|
cursor: pointer;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
2024-10-03 08:37:11 -04:00
|
|
|
#torrentFilesTableDiv .dynamicTable tr.nonAlt:hover {
|
2023-09-06 19:45:48 -04:00
|
|
|
background-color: var(--darkmode-background);
|
2024-10-03 08:37:11 -04:00
|
|
|
color: var(--color-text-white);
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#torrentFilesTableDiv .dynamicTable tr.nonAlt.selected {
|
2023-09-06 19:45:48 -04:00
|
|
|
background-color: #354158;
|
|
|
|
color: #fff;
|
2022-10-18 22:39:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#torrentFilesTableDiv .dynamicTable tr.nonAlt:hover {
|
2023-09-06 19:45:48 -04:00
|
|
|
background-color: #ee6600;
|
|
|
|
color: #fff;
|
2024-10-03 08:37:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Modals */
|
|
|
|
|
|
|
|
.modalDialog * {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
.modalDialog .mochaContent.pad {
|
|
|
|
display: flex !important;
|
|
|
|
/* override for default mocha inline style */
|
|
|
|
flex-direction: column;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.modalDialog .mochaContent.pad> :last-child {
|
|
|
|
align-self: flex-end;
|
|
|
|
}
|
|
|
|
|
|
|
|
.modalDialog .mochaContent.pad> :first-child {
|
|
|
|
margin: auto 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#rememberBtn {
|
2024-11-17 01:21:03 -05:00
|
|
|
background: url('data:image/svg+xml,<svg height="32" viewBox="0 0 32 32" width="32" xmlns="http://www.w3.org/2000/svg"><path d="m22.58889 13.856795h-13.1776846v-3.690063c0-3.2959186 2.9557016-5.9772288 6.5888426-5.9772288 3.633136 0 6.588842 2.6814977 6.588842 5.9772288zm3.515031.03355v-3.723984c0-5.0541989-4.532547-9.16636116-10.103873-9.16636116-5.571329 0-10.1038769 4.11216226-10.1038769 9.16636116v3.72398c-.7962418.150954-1.3961709.793694-1.3961709 1.560369v13.955002c0 .879047.7884216 1.594288 1.7575164 1.594288h19.4849724c.969092 0 1.757511-.715241 1.757511-1.594288v-13.955002c0-.766675-.599832-1.408677-1.396079-1.560372z" fill="%23ff8c00" stroke-width="1.980014" /></svg>') center center / 24px no-repeat var(--color-background-popup);
|
2024-10-03 08:37:11 -04:00
|
|
|
height: 38px;
|
|
|
|
padding: 4px 6px;
|
|
|
|
width: 38px;
|
|
|
|
}
|
|
|
|
|
2024-11-17 01:21:03 -05:00
|
|
|
#rememberBtn svg {
|
|
|
|
fill: var(--darkmode-primary);
|
|
|
|
}
|
|
|
|
|
|
|
|
#rememberBtn.disabled svg {
|
|
|
|
fill: gray;
|
2024-10-03 08:37:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#deleteFromDiskCB {
|
|
|
|
margin: 0 2px 0 0;
|
|
|
|
vertical-align: -1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dialogMessage {
|
|
|
|
overflow-wrap: anywhere;
|
|
|
|
}
|
|
|
|
|
|
|
|
.genericConfirmGrid,
|
|
|
|
.confirmDeletionGrid {
|
|
|
|
align-items: center;
|
|
|
|
display: grid;
|
|
|
|
gap: 3px 4px;
|
|
|
|
grid-template-columns: max-content 1fr;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.confirmGridItem,
|
|
|
|
.deletionGridItem {
|
|
|
|
padding: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.deletionGridItem:first-child {
|
|
|
|
justify-self: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.confirmWarning,
|
|
|
|
.confirmDialogWarning {
|
|
|
|
background: url("../images/dialog-warning.svg") center center no-repeat;
|
|
|
|
height: 38px;
|
|
|
|
width: 38px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.confirmWarning {
|
|
|
|
background-image: url("../images/help-about.svg");
|
2023-01-23 22:43:14 -05:00
|
|
|
}
|