2021-09-19 00:29:08 +00:00
|
|
|
:not(input):not(textarea),
|
|
|
|
:not(input):not(textarea)::after,
|
|
|
|
:not(input):not(textarea)::before {
|
|
|
|
-webkit-user-select: none;
|
|
|
|
user-select: none;
|
2020-12-16 19:17:00 +00:00
|
|
|
}
|
|
|
|
|
2020-12-18 04:13:54 +00:00
|
|
|
#server-table > .table-striped thead th {
|
2021-09-19 00:29:08 +00:00
|
|
|
background-color: #34476e;
|
2020-12-18 04:13:54 +00:00
|
|
|
}
|
|
|
|
|
2020-12-16 19:17:00 +00:00
|
|
|
#server-table > .table-striped tbody tr:nth-of-type(odd) {
|
2021-09-19 00:29:08 +00:00
|
|
|
background-color: #34476e;
|
2020-12-18 04:13:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#server-listing-placeholder > td {
|
2021-09-19 00:29:08 +00:00
|
|
|
background-color: #24314d;
|
|
|
|
user-select: none;
|
|
|
|
-webkit-user-select: none;
|
2020-12-16 19:17:00 +00:00
|
|
|
}
|
|
|
|
|
2021-09-19 00:29:08 +00:00
|
|
|
#server-table > .table-striped tbody tr:nth-of-type(even),
|
|
|
|
th {
|
|
|
|
background-color: #24314d;
|
2020-12-16 19:17:00 +00:00
|
|
|
}
|
|
|
|
|
2020-12-16 20:52:24 +00:00
|
|
|
#server-table {
|
2021-09-19 00:29:08 +00:00
|
|
|
font-size: 14pt;
|
|
|
|
opacity: 0.9;
|
2020-12-16 20:52:24 +00:00
|
|
|
}
|
|
|
|
|
2020-12-16 19:17:00 +00:00
|
|
|
#of-intro-text {
|
2021-09-19 00:29:08 +00:00
|
|
|
text-shadow: 1px 1px 8px #4349c4;
|
|
|
|
color: #4a76b7;
|
|
|
|
font-size: 18px;
|
2020-12-16 19:17:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
2021-09-19 00:29:08 +00:00
|
|
|
pointer-events: none;
|
2020-12-16 19:17:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
:root {
|
2021-09-19 00:29:08 +00:00
|
|
|
--gray-dark: #343a40;
|
|
|
|
--primary: #6699ff;
|
|
|
|
--secondary: #384e7a;
|
|
|
|
--dark: #384e7a;
|
2020-12-16 19:17:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2023-09-03 09:56:24 +00:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
clear: both;
|
2021-09-19 00:29:08 +00:00
|
|
|
user-select: none;
|
|
|
|
background-color: #000;
|
2022-07-26 14:48:33 +00:00
|
|
|
font-family: -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";
|
2020-12-16 19:17:00 +00:00
|
|
|
}
|
|
|
|
|
2023-02-09 11:32:21 +00:00
|
|
|
#of-versionnumberdiv {
|
2021-09-19 00:29:08 +00:00
|
|
|
position: fixed;
|
|
|
|
bottom: 4px;
|
|
|
|
right: 8px;
|
|
|
|
}
|
|
|
|
|
2020-12-16 19:17:00 +00:00
|
|
|
.btn-primary {
|
2022-07-26 14:48:33 +00:00
|
|
|
background-image: url("../../assets/img/btn-primary-bg.png");
|
2021-09-19 00:29:08 +00:00
|
|
|
background-repeat: repeat;
|
2020-12-16 19:17:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.btn-success {
|
2022-07-26 14:48:33 +00:00
|
|
|
background-image: url("../../assets/img/btn-success-bg.png");
|
2021-09-19 00:29:08 +00:00
|
|
|
background-repeat: repeat;
|
2020-12-16 19:17:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.btn-danger {
|
2022-07-26 14:48:33 +00:00
|
|
|
background-image: url("../../assets/img/btn-danger-bg.png");
|
2021-09-19 00:29:08 +00:00
|
|
|
background-repeat: repeat;
|
2020-12-16 19:17:00 +00:00
|
|
|
}
|
|
|
|
|
2023-09-18 21:49:31 +00:00
|
|
|
.btn-warning {
|
|
|
|
background-image: url("../../assets/img/btn-warning-bg.png");
|
|
|
|
background-repeat: repeat;
|
|
|
|
}
|
|
|
|
|
2020-12-16 19:17:00 +00:00
|
|
|
#of-aboutmodal > .modal-dialog > .modal-content {
|
2021-09-19 00:29:08 +00:00
|
|
|
background-color: #093363;
|
|
|
|
border-color: #6699ff;
|
2020-12-16 19:17:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#of-addservermodal > .modal-dialog > .modal-content {
|
2021-09-19 00:29:08 +00:00
|
|
|
background-color: #093363;
|
|
|
|
border-color: #6699ff;
|
2020-12-16 19:17:00 +00:00
|
|
|
}
|
|
|
|
|
2021-09-18 17:47:20 +00:00
|
|
|
#of-editservermodal > .modal-dialog > .modal-content {
|
2021-09-19 00:29:08 +00:00
|
|
|
background-color: #093363;
|
|
|
|
border-color: #6699ff;
|
2021-09-18 17:47:20 +00:00
|
|
|
}
|
|
|
|
|
2020-12-16 19:17:00 +00:00
|
|
|
#of-deleteservermodal > .modal-dialog > .modal-content {
|
2021-09-19 00:29:08 +00:00
|
|
|
background-color: #093363;
|
|
|
|
border-color: #6699ff;
|
2020-12-16 19:17:00 +00:00
|
|
|
}
|
|
|
|
|
2021-09-19 00:29:08 +00:00
|
|
|
#of-restoreserversmodal > .modal-dialog > .modal-content {
|
|
|
|
background-color: #093363;
|
|
|
|
border-color: #6699ff;
|
|
|
|
}
|
|
|
|
|
2023-09-18 21:49:31 +00:00
|
|
|
#of-editcacheconfigmodal > .modal-dialog > .modal-content {
|
|
|
|
background-color: #093363;
|
|
|
|
border-color: #6699ff;
|
|
|
|
}
|
|
|
|
|
2023-11-12 21:15:45 +00:00
|
|
|
#of-editconfigmodal > .modal-dialog > .modal-content {
|
|
|
|
background-color: #093363;
|
|
|
|
border-color: #6699ff;
|
|
|
|
}
|
|
|
|
|
2023-10-22 20:10:10 +00:00
|
|
|
#of-addversionmodal > .modal-dialog > .modal-content {
|
|
|
|
background-color: #093363;
|
|
|
|
border-color: #6699ff;
|
|
|
|
}
|
|
|
|
|
|
|
|
#of-editversionmodal > .modal-dialog > .modal-content {
|
|
|
|
background-color: #093363;
|
|
|
|
border-color: #6699ff;
|
|
|
|
}
|
|
|
|
|
|
|
|
#of-deleteversionmodal > .modal-dialog > .modal-content {
|
|
|
|
background-color: #093363;
|
|
|
|
border-color: #6699ff;
|
|
|
|
}
|
|
|
|
|
|
|
|
#of-restoreversionsmodal > .modal-dialog > .modal-content {
|
|
|
|
background-color: #093363;
|
|
|
|
border-color: #6699ff;
|
|
|
|
}
|
|
|
|
|
2021-09-19 00:29:08 +00:00
|
|
|
.form-control,
|
|
|
|
.form-control:focus {
|
|
|
|
border-color: #0099ff;
|
|
|
|
background-color: #000;
|
|
|
|
color: #fff;
|
2020-12-16 19:17:00 +00:00
|
|
|
}
|
|
|
|
|
2020-12-16 20:52:24 +00:00
|
|
|
select {
|
2021-09-19 00:29:08 +00:00
|
|
|
border-color: #0099ff;
|
|
|
|
background-color: #000;
|
|
|
|
color: #fff;
|
2020-12-16 20:52:24 +00:00
|
|
|
}
|
|
|
|
|
2023-11-11 20:52:23 +00:00
|
|
|
.modal {
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.invalidinput {
|
|
|
|
border-color: #ff0000;
|
|
|
|
}
|
|
|
|
|
2020-12-16 20:52:24 +00:00
|
|
|
button:disabled {
|
2021-09-19 00:29:08 +00:00
|
|
|
cursor: not-allowed;
|
|
|
|
pointer-events: all !important;
|
2020-12-16 20:52:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
button > i {
|
2021-09-19 00:29:08 +00:00
|
|
|
pointer-events: none;
|
2020-12-16 19:17:00 +00:00
|
|
|
}
|
|
|
|
|
2020-12-18 04:13:54 +00:00
|
|
|
#of-logo {
|
2021-09-19 00:29:08 +00:00
|
|
|
opacity: 0.9;
|
2020-12-18 04:13:54 +00:00
|
|
|
}
|
|
|
|
|
2020-12-22 10:45:43 +00:00
|
|
|
#server-table .server-listing-entry {
|
2021-09-19 00:29:08 +00:00
|
|
|
cursor: pointer;
|
2020-12-22 10:45:43 +00:00
|
|
|
}
|
2023-09-03 09:56:24 +00:00
|
|
|
|
|
|
|
#client {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
background: #000;
|
|
|
|
clear: both;
|
|
|
|
}
|