2021-03-16 14:38:12 +00:00
|
|
|
:root {
|
2021-06-02 07:28:07 +00:00
|
|
|
--green-color: #5CB85C;
|
2021-05-02 03:58:22 +00:00
|
|
|
--red-color: #be2424;
|
2022-04-27 18:10:26 +00:00
|
|
|
--blue-color: #4a89dc;
|
2021-05-02 03:58:22 +00:00
|
|
|
--link-dark-blue: #23527c;
|
2021-06-21 05:46:53 +00:00
|
|
|
--light-blue-color: #d1ecf1;
|
2021-07-23 06:09:44 +00:00
|
|
|
--menu-color: #06212a;
|
2022-06-15 07:34:20 +00:00
|
|
|
--right-menu-blue-rolor: #5D9CEB;
|
2023-12-16 07:15:59 +00:00
|
|
|
--yellow-color: #ffcc00;
|
2024-03-01 08:40:58 +00:00
|
|
|
--unknown-color: #fff3cd;
|
2023-04-09 13:11:16 +00:00
|
|
|
--indent: 15px;
|
2024-08-02 09:50:02 +00:00
|
|
|
--container--width: 1434px;
|
|
|
|
--background: #f0f0f0;
|
|
|
|
--background-dark: #e9e9e9;
|
|
|
|
--color-black: #000000;
|
|
|
|
--color-white: #ffffff;
|
|
|
|
--color-wanring: #ff9501;
|
|
|
|
--color-secondary: #8d8d8d;
|
|
|
|
--color-blue: #027f9f;
|
|
|
|
--color-gray: #D9D9D9;
|
|
|
|
--color-gray-light: #e7e7e7;
|
|
|
|
--color-gray-alpha: rgba(217, 217, 217, 0.5);
|
|
|
|
--color-gray-light-alpha: rgba(217, 217, 217, 0.3);
|
|
|
|
--color-gray-dark-alpha: rgba(192, 192, 192, 0.3);
|
|
|
|
--border-radius: 10px;
|
2021-03-16 14:38:12 +00:00
|
|
|
}
|
2018-02-06 06:38:59 +00:00
|
|
|
html {
|
|
|
|
font-size: 10px;
|
|
|
|
}
|
|
|
|
body {
|
2024-08-02 09:50:02 +00:00
|
|
|
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
|
|
|
|
font-size: 1.2em;
|
|
|
|
line-height: 1.42857143;
|
|
|
|
color: #000;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
overflow: auto;
|
|
|
|
height: 100%;
|
|
|
|
background-color: var(--background);
|
2018-02-06 06:38:59 +00:00
|
|
|
}
|
|
|
|
h2 {
|
2024-08-02 09:50:02 +00:00
|
|
|
font-size: 3em;
|
|
|
|
background-color: transparent;
|
|
|
|
border: none;
|
|
|
|
color: var(--color-black);
|
|
|
|
margin-bottom: 20px;
|
|
|
|
margin-left: var(--indent);
|
2018-02-07 04:39:42 +00:00
|
|
|
}
|
|
|
|
h3 {
|
2019-09-20 06:42:19 +00:00
|
|
|
margin-top: -0;
|
2020-10-16 12:33:53 +00:00
|
|
|
margin-bottom: 0;
|
2019-09-20 06:42:19 +00:00
|
|
|
background: #d1ecf1;
|
|
|
|
font-size: 1.6em;
|
|
|
|
border-bottom: 1px solid #ddd;
|
2023-04-02 16:58:55 +00:00
|
|
|
padding: 0.3em 0.3em 0.3em 13px;
|
2018-02-06 06:38:59 +00:00
|
|
|
}
|
2023-10-03 19:56:34 +00:00
|
|
|
ul#browse_history {
|
2021-10-20 11:08:17 +00:00
|
|
|
padding-left: 12px;
|
2019-12-01 17:15:09 +00:00
|
|
|
display: block;
|
2023-04-02 16:58:55 +00:00
|
|
|
margin-top: 3px;
|
|
|
|
margin-bottom: -1px;
|
2019-12-04 05:43:03 +00:00
|
|
|
list-style: none;
|
2024-08-02 09:50:02 +00:00
|
|
|
border: none;
|
2020-07-02 14:44:13 +00:00
|
|
|
padding-bottom: 5px;
|
|
|
|
clear: both;
|
2019-12-04 05:43:03 +00:00
|
|
|
}
|
2023-10-03 19:56:34 +00:00
|
|
|
ul#browse_history li {
|
2019-12-04 05:43:03 +00:00
|
|
|
display: inline;
|
|
|
|
}
|
2023-10-03 19:56:34 +00:00
|
|
|
ul#browse_history li:before {
|
2021-01-09 15:42:08 +00:00
|
|
|
content: "/";
|
|
|
|
color: #767676;
|
2021-01-18 16:21:51 +00:00
|
|
|
margin: 0 5px 0px 5px;
|
2019-12-01 17:15:09 +00:00
|
|
|
}
|
2023-10-03 19:56:34 +00:00
|
|
|
ul#browse_history li+li:before {
|
2022-04-27 18:10:26 +00:00
|
|
|
content: "->";
|
|
|
|
color: #767676;
|
2024-02-24 08:05:31 +00:00
|
|
|
margin: 0 5px 0 5px;
|
2022-04-27 18:10:26 +00:00
|
|
|
}
|
2023-10-03 19:56:34 +00:00
|
|
|
#browse_history a {
|
2019-12-04 05:43:03 +00:00
|
|
|
color: #767676;
|
2023-04-02 16:58:55 +00:00
|
|
|
font-size: 11.1px;
|
2019-12-01 17:15:09 +00:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
2023-10-03 19:56:34 +00:00
|
|
|
ul#browse_history li:first-child a {
|
2023-04-02 16:58:55 +00:00
|
|
|
font-size: 10.4px;
|
2019-12-04 05:43:03 +00:00
|
|
|
color: #979393;
|
|
|
|
}
|
2023-10-03 19:56:34 +00:00
|
|
|
ul#browse_history li:last-child a {
|
2023-04-02 16:58:55 +00:00
|
|
|
font-size: 11.8px;
|
2019-12-04 05:43:03 +00:00
|
|
|
color: #7e7b7b;
|
|
|
|
}
|
2018-02-07 09:08:20 +00:00
|
|
|
form {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2018-03-27 10:15:24 +00:00
|
|
|
pre {
|
2023-04-09 13:11:16 +00:00
|
|
|
padding-left: var(--indent);
|
2018-03-27 10:15:24 +00:00
|
|
|
}
|
2019-10-25 07:18:57 +00:00
|
|
|
.icon, .icon-hapservs {
|
2018-02-19 04:26:42 +00:00
|
|
|
max-width: 20px;
|
2018-02-19 06:11:14 +00:00
|
|
|
margin-left: 2px;
|
2019-10-25 07:18:57 +00:00
|
|
|
margin-bottom: -3px;
|
2018-04-17 03:46:57 +00:00
|
|
|
cursor: pointer;
|
2018-02-19 04:26:42 +00:00
|
|
|
}
|
2019-10-25 07:18:57 +00:00
|
|
|
.icon-hapservs {
|
2020-10-16 12:33:53 +00:00
|
|
|
margin-bottom: 0;
|
2019-10-25 07:18:57 +00:00
|
|
|
}
|
2024-08-02 09:50:02 +00:00
|
|
|
.top-menu {
|
2020-08-02 18:24:09 +00:00
|
|
|
position: absolute;
|
2019-09-23 11:18:38 +00:00
|
|
|
min-height: calc(99vh - 50px);
|
|
|
|
height: 120%;
|
2018-03-26 11:48:48 +00:00
|
|
|
width: 207px;
|
2018-03-26 08:52:28 +00:00
|
|
|
float: left;
|
2018-02-06 06:38:59 +00:00
|
|
|
margin-bottom: 20px;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
left: 0;
|
2018-03-26 08:52:28 +00:00
|
|
|
display: block;
|
2024-08-02 09:50:02 +00:00
|
|
|
background-color: var(--color-gray-light) !important;
|
2020-02-05 08:15:57 +00:00
|
|
|
font-size: 12px;
|
2023-04-02 16:58:55 +00:00
|
|
|
z-index: 99;
|
2018-02-19 04:26:42 +00:00
|
|
|
}
|
2024-04-04 11:30:07 +00:00
|
|
|
.menu-active {
|
2024-08-02 09:50:02 +00:00
|
|
|
padding-left: 30px;
|
|
|
|
background-color: var(--color-gray-dark-alpha) !important;
|
|
|
|
border-left: none;
|
|
|
|
border-left: 4px solid var(--color-wanring) !important;
|
2024-04-04 11:30:07 +00:00
|
|
|
}
|
2018-02-06 06:38:59 +00:00
|
|
|
.logoText {
|
2018-02-19 04:26:42 +00:00
|
|
|
color: #EBF1F1;
|
2018-04-10 03:58:56 +00:00
|
|
|
font-size: 25px;
|
2018-02-06 06:38:59 +00:00
|
|
|
font-style: italic;
|
|
|
|
font-weight: bold;
|
2018-08-08 17:15:18 +00:00
|
|
|
height: 32px;
|
2024-08-02 09:50:02 +00:00
|
|
|
border-bottom: none;
|
2018-04-10 03:58:56 +00:00
|
|
|
padding-left: 20px;
|
|
|
|
padding-top: 2px;
|
2024-08-02 09:50:02 +00:00
|
|
|
padding-bottom: 5px;
|
2019-09-20 06:42:19 +00:00
|
|
|
}
|
|
|
|
#logo_text {
|
2019-09-22 15:46:26 +00:00
|
|
|
display: block;
|
2018-02-06 06:38:59 +00:00
|
|
|
}
|
2024-08-02 09:50:02 +00:00
|
|
|
.menu-logo {
|
2019-09-29 20:16:24 +00:00
|
|
|
max-width: 200px;
|
2022-08-04 09:32:01 +00:00
|
|
|
margin-left: 23px;
|
2019-09-29 20:16:24 +00:00
|
|
|
margin-top: 3px;
|
2018-02-06 06:38:59 +00:00
|
|
|
}
|
2024-08-02 09:50:02 +00:00
|
|
|
.menu-vendor-logo {
|
|
|
|
width: 20px;
|
|
|
|
margin: -20px 5px -6px 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
.menu-vendor-a {
|
|
|
|
padding-bottom: 5px;
|
|
|
|
padding-top: 5px;
|
|
|
|
}
|
2018-03-26 08:52:28 +00:00
|
|
|
.container {
|
2019-09-20 06:42:19 +00:00
|
|
|
min-height: calc(99vh - 50px);
|
2019-09-23 14:03:23 +00:00
|
|
|
height: auto;
|
2019-10-07 17:07:28 +00:00
|
|
|
max-width: 100%;
|
2018-02-06 06:38:59 +00:00
|
|
|
min-width: 40%;
|
2024-08-02 09:50:02 +00:00
|
|
|
background-color: var(--background);
|
2018-03-26 11:48:48 +00:00
|
|
|
margin-left: 207px;
|
|
|
|
padding-bottom: 10px;
|
2018-02-06 06:38:59 +00:00
|
|
|
}
|
2019-09-20 06:42:19 +00:00
|
|
|
.footer {
|
|
|
|
min-height: 50px;
|
|
|
|
right: 0;
|
|
|
|
left: 0;
|
|
|
|
max-width: 91%;
|
|
|
|
min-width: 40%;
|
2024-08-02 09:50:02 +00:00
|
|
|
background-color: var(--background);
|
2019-09-20 06:42:19 +00:00
|
|
|
margin-left: 207px;
|
|
|
|
margin-right: 20px;
|
2024-08-02 09:50:02 +00:00
|
|
|
border-top: none;
|
2019-09-22 18:39:52 +00:00
|
|
|
clear: both;
|
2019-09-20 06:42:19 +00:00
|
|
|
}
|
2019-10-04 06:23:48 +00:00
|
|
|
#version {
|
|
|
|
float: left;
|
2020-10-16 12:33:53 +00:00
|
|
|
padding: 10px 20px 20px;
|
|
|
|
font-size: 14.5px;
|
2019-10-04 06:23:48 +00:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
2019-09-20 06:42:19 +00:00
|
|
|
.footer-div {
|
2024-08-02 09:50:02 +00:00
|
|
|
display: block;
|
2022-12-06 18:29:14 +00:00
|
|
|
padding-top: 11px;
|
|
|
|
text-align: right;
|
|
|
|
margin-right: 20px;
|
2024-08-27 09:40:15 +00:00
|
|
|
width: 460px;
|
2022-12-06 18:29:14 +00:00
|
|
|
float: left;
|
2024-08-02 09:50:02 +00:00
|
|
|
margin-left: 71%;
|
|
|
|
margin-top: -50px;
|
2019-09-20 06:42:19 +00:00
|
|
|
}
|
|
|
|
.footer-link, .footer-copyright {
|
|
|
|
font-size: 0.9em;
|
2023-02-13 14:45:45 +00:00
|
|
|
padding: 12px 5px 20px 15px;
|
2019-09-20 06:42:19 +00:00
|
|
|
}
|
|
|
|
.footer-copyright {
|
|
|
|
color: #586069 ;
|
|
|
|
float: left;
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
2024-08-02 09:50:02 +00:00
|
|
|
#main_div {
|
|
|
|
margin-top: 10%;
|
|
|
|
margin-left: 35%;
|
|
|
|
@media (max-width: 1900px) {
|
|
|
|
margin-top: 7%;
|
|
|
|
margin-left: 26%;
|
|
|
|
}
|
|
|
|
@media (max-width: 1500px) {
|
|
|
|
margin-left: 25%;
|
|
|
|
}
|
|
|
|
@media (max-width: 1024px) {
|
|
|
|
margin-left: 16%;
|
|
|
|
}
|
|
|
|
@media (max-width: 430px) {
|
|
|
|
margin-left: 12%;
|
|
|
|
margin-top: 20%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#logo_span {
|
|
|
|
height: 270px;
|
|
|
|
float: left;
|
|
|
|
@media (max-width: 1900px) {
|
|
|
|
margin-left: 12%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#logo_span img {
|
|
|
|
margin: auto 40px auto 100px;
|
|
|
|
width: 330px;
|
|
|
|
}
|
2018-07-05 07:03:26 +00:00
|
|
|
.login {
|
|
|
|
float: right;
|
2019-10-25 07:18:57 +00:00
|
|
|
margin-top: 3px;
|
2018-07-05 07:03:26 +00:00
|
|
|
margin-left: 14px;
|
2023-04-02 16:58:55 +00:00
|
|
|
margin-right: 50px;
|
2024-08-02 09:50:02 +00:00
|
|
|
color: var(--color-wanring) !important;
|
2018-07-05 07:03:26 +00:00
|
|
|
font-size: 15px;
|
2022-12-22 19:19:43 +00:00
|
|
|
cursor: pointer;
|
2024-08-02 09:50:02 +00:00
|
|
|
@media (width <= 1500px) {
|
|
|
|
margin-left: -260px;
|
|
|
|
}
|
2018-07-05 07:03:26 +00:00
|
|
|
}
|
2024-08-02 09:50:02 +00:00
|
|
|
.logs_link, .accordion-link, .link, .alert a {
|
|
|
|
color: var(--color-wanring) !important;
|
2018-04-08 07:33:09 +00:00
|
|
|
}
|
2024-08-02 09:50:02 +00:00
|
|
|
#auth {
|
|
|
|
margin-top: 260px;
|
|
|
|
margin-left: -310px;
|
2020-07-02 14:44:13 +00:00
|
|
|
float: left;
|
2024-08-02 09:50:02 +00:00
|
|
|
@media (max-width: 1900px) {
|
|
|
|
margin-left: -260px;
|
|
|
|
}
|
|
|
|
@media (width <= 1900px) {
|
|
|
|
margin-left: -310px;
|
|
|
|
}
|
2020-07-02 14:44:13 +00:00
|
|
|
}
|
2018-02-06 06:38:59 +00:00
|
|
|
.configShow, .diff {
|
|
|
|
overflow: auto;
|
2023-04-02 16:58:55 +00:00
|
|
|
width: 95%;
|
2018-02-06 06:38:59 +00:00
|
|
|
border: 1px solid #DCDCDC;
|
|
|
|
border-radius: 5px;
|
|
|
|
}
|
2018-10-10 09:57:28 +00:00
|
|
|
.config {
|
2019-09-20 06:42:19 +00:00
|
|
|
height: 60%;
|
2019-12-17 13:36:38 +00:00
|
|
|
width: 60% !important;
|
2018-10-10 09:57:28 +00:00
|
|
|
}
|
2018-02-06 06:38:59 +00:00
|
|
|
.diffHead {
|
|
|
|
background-color: #F5F5F5;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
.lineDog {
|
|
|
|
background-color: #dbedff;
|
|
|
|
margin-bottom: 10px;
|
2021-04-17 17:38:08 +00:00
|
|
|
padding: 7px;
|
2018-02-06 06:38:59 +00:00
|
|
|
}
|
2021-04-17 17:38:08 +00:00
|
|
|
.lineDiffMinus, .lineDiffPlus, .lineDiff {
|
2023-04-09 13:11:16 +00:00
|
|
|
padding-left: var(--indent);
|
2021-04-17 17:38:08 +00:00
|
|
|
white-space: pre;
|
2018-02-06 06:38:59 +00:00
|
|
|
}
|
|
|
|
.lineDiffMinus {
|
|
|
|
background-color: #ffdce0;
|
|
|
|
}
|
|
|
|
.lineDiffPlus {
|
|
|
|
background-color: #cdffd8;
|
|
|
|
}
|
|
|
|
.param {
|
|
|
|
font-weight: bold;
|
|
|
|
padding-left: 13px;
|
|
|
|
}
|
|
|
|
.numRow {
|
|
|
|
padding-left: 10px;
|
|
|
|
padding-right: 20px;
|
|
|
|
}
|
|
|
|
.paramInSec {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.line {
|
2024-08-02 09:50:02 +00:00
|
|
|
background-color: var(--background-dark);
|
2018-02-07 04:39:42 +00:00
|
|
|
border: 1px solid #ddd;
|
2018-02-06 06:38:59 +00:00
|
|
|
}
|
|
|
|
.line, .line3 {
|
2020-10-16 12:33:53 +00:00
|
|
|
padding: 5px 10px;
|
2018-02-06 06:38:59 +00:00
|
|
|
}
|
2024-08-02 09:50:02 +00:00
|
|
|
.line:hover, .line3:hover {
|
|
|
|
background-color: var(--color-gray-light);
|
2020-06-10 06:34:56 +00:00
|
|
|
}
|
2019-09-20 06:42:19 +00:00
|
|
|
.accordion-link {
|
|
|
|
float: right;
|
|
|
|
margin-right: 1em;
|
|
|
|
}
|
2018-05-18 18:09:14 +00:00
|
|
|
.time-range {
|
2024-08-02 09:50:02 +00:00
|
|
|
border: 0;
|
|
|
|
background-color: var(--color-gray-light);
|
|
|
|
font-weight: bold;
|
|
|
|
width: 18px;
|
|
|
|
padding-left: 0;
|
|
|
|
padding-right: 0;
|
2018-05-18 18:09:14 +00:00
|
|
|
}
|
2018-02-06 06:38:59 +00:00
|
|
|
.comment {
|
|
|
|
color: #aaa;
|
|
|
|
}
|
2018-08-28 10:45:09 +00:00
|
|
|
.add-table {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2018-02-06 06:38:59 +00:00
|
|
|
.addName {
|
2018-02-07 04:39:42 +00:00
|
|
|
background-color: #f6f6f6;
|
2018-02-06 06:38:59 +00:00
|
|
|
width: 120px;
|
|
|
|
}
|
|
|
|
.addOption, .addName {
|
2018-04-21 14:40:59 +00:00
|
|
|
border-bottom: 1px solid #ddd;
|
2023-04-09 13:11:16 +00:00
|
|
|
padding: var(--indent);
|
2018-02-06 06:38:59 +00:00
|
|
|
}
|
2018-08-27 11:28:29 +00:00
|
|
|
.advance {
|
|
|
|
display: none;
|
|
|
|
}
|
2021-01-12 05:05:53 +00:00
|
|
|
.advance-show, .advance-hide {
|
2018-08-28 03:34:10 +00:00
|
|
|
font-size: 13px !important;
|
|
|
|
}
|
2018-02-06 06:38:59 +00:00
|
|
|
.addButton {
|
2023-04-09 13:11:16 +00:00
|
|
|
padding-top: var(--indent);
|
|
|
|
padding-left: var(--indent);
|
2018-04-21 14:40:59 +00:00
|
|
|
padding-bottom: 5px;
|
2018-02-06 06:38:59 +00:00
|
|
|
}
|
2018-02-27 13:39:24 +00:00
|
|
|
.addButton:hover {
|
|
|
|
background-color: #fff;
|
|
|
|
}
|
2018-02-06 06:38:59 +00:00
|
|
|
.addSuc {
|
|
|
|
padding-left: 20px;
|
|
|
|
padding-top: 20px;
|
2021-05-02 03:58:22 +00:00
|
|
|
color: var(--blue-color);
|
2018-02-06 06:38:59 +00:00
|
|
|
}
|
2018-08-28 10:45:09 +00:00
|
|
|
.add-note {
|
|
|
|
width: 30%;
|
|
|
|
padding-left: 10px;
|
|
|
|
}
|
2021-01-08 08:14:14 +00:00
|
|
|
.add_server_number {
|
2021-10-03 18:46:19 +00:00
|
|
|
width: 70px;
|
2021-01-08 08:14:14 +00:00
|
|
|
}
|
2018-02-06 06:38:59 +00:00
|
|
|
.overview {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2023-04-02 16:58:55 +00:00
|
|
|
.overview-overflow {
|
|
|
|
overflow-x: auto;
|
|
|
|
display: block;
|
|
|
|
}
|
2019-09-23 11:18:38 +00:00
|
|
|
.overview-wi {
|
2024-08-02 09:50:02 +00:00
|
|
|
width: 47%;
|
|
|
|
min-width: 566px;
|
2019-09-23 11:18:38 +00:00
|
|
|
max-width: 50%;
|
2024-08-02 09:50:02 +00:00
|
|
|
min-height: 160px;
|
|
|
|
float: left;
|
|
|
|
margin: 0 20px 20px 7px;
|
|
|
|
border: none;
|
2019-09-23 11:18:38 +00:00
|
|
|
}
|
2018-02-07 04:39:42 +00:00
|
|
|
.overviewHead {
|
2024-08-02 09:50:02 +00:00
|
|
|
border-radius: var(--border-radius);
|
|
|
|
background-color: var(--color-gray-light);
|
|
|
|
font-weight: bold;
|
2018-02-07 04:39:42 +00:00
|
|
|
}
|
2019-09-23 11:18:38 +00:00
|
|
|
.overview-wi .overviewHead {
|
2024-08-02 09:50:02 +00:00
|
|
|
height: 25px;
|
|
|
|
border-radius: var(--border-radius);
|
|
|
|
background-color: var(--color-gray-alpha);
|
|
|
|
border: none;
|
2019-09-23 11:18:38 +00:00
|
|
|
}
|
2024-08-02 09:50:02 +00:00
|
|
|
.overview tr {
|
|
|
|
border: none;
|
2018-02-06 06:38:59 +00:00
|
|
|
}
|
2018-10-03 10:14:57 +00:00
|
|
|
.checkbox {
|
2019-09-29 20:16:24 +00:00
|
|
|
min-width: 30px;
|
2019-10-01 05:35:05 +00:00
|
|
|
padding-top: 5px;
|
2020-07-21 05:38:45 +00:00
|
|
|
padding-left: 10px;
|
2018-10-03 10:14:57 +00:00
|
|
|
}
|
|
|
|
.checkbox-head {
|
2023-04-09 13:11:16 +00:00
|
|
|
padding: 0 0 0 10px;
|
2018-10-03 10:14:57 +00:00
|
|
|
}
|
|
|
|
.ip-field {
|
|
|
|
width: 100px;
|
|
|
|
}
|
|
|
|
.cred-field {
|
2021-01-12 05:05:53 +00:00
|
|
|
min-width: 225px;
|
2018-10-03 10:14:57 +00:00
|
|
|
}
|
2021-08-15 09:02:12 +00:00
|
|
|
.syn-flood-protection-field {
|
2023-04-09 13:11:16 +00:00
|
|
|
padding-left: 45px;
|
2021-08-15 09:02:12 +00:00
|
|
|
}
|
2018-02-06 06:38:59 +00:00
|
|
|
.overviewTr {
|
|
|
|
margin: 0;
|
2018-04-17 06:32:00 +00:00
|
|
|
background-color: #f6f8fa;
|
2023-04-09 13:11:16 +00:00
|
|
|
padding-left: var(--indent);
|
2018-02-06 06:38:59 +00:00
|
|
|
font-size: 15px;
|
|
|
|
}
|
2023-12-16 07:15:59 +00:00
|
|
|
.serverUp, .serverDown, .serverNone, .serverWarn {
|
2018-02-07 04:39:42 +00:00
|
|
|
padding: 3px;
|
|
|
|
border-radius: 3px;
|
|
|
|
color: #fff;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.serverUp {
|
2021-03-16 14:38:12 +00:00
|
|
|
background-color: var(--green-color);
|
2018-02-19 06:11:14 +00:00
|
|
|
}
|
2023-12-16 07:15:59 +00:00
|
|
|
.serverWarn {
|
|
|
|
background-color: var(--yellow-color);
|
|
|
|
}
|
2019-10-14 06:55:29 +00:00
|
|
|
.serverNone {
|
|
|
|
background-color: #ddd;
|
|
|
|
}
|
2023-04-02 16:58:55 +00:00
|
|
|
.add-button {
|
2024-08-02 09:50:02 +00:00
|
|
|
background-color: var(--right-menu-blue-rolor);
|
2018-02-19 06:11:14 +00:00
|
|
|
border-radius: 5px;
|
2020-10-16 12:33:53 +00:00
|
|
|
color: #fff;
|
|
|
|
padding: 5px 10px;
|
2018-02-19 06:11:14 +00:00
|
|
|
float: right;
|
2019-09-23 11:18:38 +00:00
|
|
|
margin-right: 1px;
|
2018-05-08 09:12:16 +00:00
|
|
|
cursor: pointer;
|
2018-02-07 04:39:42 +00:00
|
|
|
}
|
2023-04-02 16:58:55 +00:00
|
|
|
.add-button:hover {
|
2022-04-27 18:10:26 +00:00
|
|
|
background-color: #5094ee;
|
2020-08-07 15:14:59 +00:00
|
|
|
}
|
2023-04-02 16:58:55 +00:00
|
|
|
.add-button:active {
|
2022-04-27 18:10:26 +00:00
|
|
|
background-color: #5499f4;
|
2020-08-07 15:14:59 +00:00
|
|
|
box-shadow: 0 1px #666;
|
|
|
|
}
|
2019-09-23 11:18:38 +00:00
|
|
|
.add-button-wi {
|
2023-04-02 16:58:55 +00:00
|
|
|
float: right;
|
2019-09-23 11:18:38 +00:00
|
|
|
padding-right: 5px;
|
|
|
|
padding-left: 5px;
|
|
|
|
font-size: 13px;
|
2023-04-02 16:58:55 +00:00
|
|
|
cursor: pointer;
|
|
|
|
color: #b3b3b3;
|
|
|
|
}
|
|
|
|
.add-button-wi:hover, .add-button-wi:active {
|
|
|
|
text-decoration: underline;
|
|
|
|
color: var(--right-menu-blue-rolor);
|
2019-09-23 11:18:38 +00:00
|
|
|
}
|
2018-02-07 04:39:42 +00:00
|
|
|
.serverDown {
|
2021-05-02 03:58:22 +00:00
|
|
|
background-color: var(--red-color);
|
2018-02-07 04:39:42 +00:00
|
|
|
}
|
|
|
|
.padding10 {
|
2023-04-09 13:11:16 +00:00
|
|
|
padding: 10px 10px 10px var(--indent);
|
2018-02-07 04:39:42 +00:00
|
|
|
border: none;
|
2019-09-01 11:13:34 +00:00
|
|
|
width: 15%;
|
2018-04-16 07:01:44 +00:00
|
|
|
}
|
2018-10-03 10:14:57 +00:00
|
|
|
.padding20 {
|
2023-04-09 13:11:16 +00:00
|
|
|
padding: var(--indent);
|
2018-10-03 10:14:57 +00:00
|
|
|
width: 30%;
|
|
|
|
}
|
2021-02-03 19:25:37 +00:00
|
|
|
.padding-top20 {
|
|
|
|
padding-top: 20px;
|
|
|
|
}
|
2018-04-16 07:01:44 +00:00
|
|
|
.first-collumn {
|
2019-09-22 17:41:01 +00:00
|
|
|
width: 20%;
|
2018-06-06 15:29:30 +00:00
|
|
|
}
|
2019-09-23 11:18:38 +00:00
|
|
|
.first-collumn-wi {
|
|
|
|
width: 40%;
|
|
|
|
}
|
2018-06-06 15:29:30 +00:00
|
|
|
.second-collumn {
|
2019-09-22 15:46:26 +00:00
|
|
|
width: 20%;
|
2018-08-08 12:06:23 +00:00
|
|
|
}
|
|
|
|
.third-collumn {
|
2019-09-22 15:46:26 +00:00
|
|
|
width: 45%;
|
2018-02-07 04:39:42 +00:00
|
|
|
}
|
2019-09-23 11:18:38 +00:00
|
|
|
.third-collumn-wi {
|
|
|
|
width: 30%;
|
|
|
|
}
|
2018-02-06 06:38:59 +00:00
|
|
|
.ro {
|
|
|
|
border: none;
|
|
|
|
}
|
2018-02-27 13:39:24 +00:00
|
|
|
.remove {
|
|
|
|
color: #fff;
|
|
|
|
text-shadow: 0 1px 0 rgba(0,0,0,.1);
|
|
|
|
background-color: #ca4333;
|
|
|
|
background-image: linear-gradient(180deg,#d44a3a,#bc3829);
|
|
|
|
background-repeat: repeat-x;
|
|
|
|
border-color: #d44a3a;
|
|
|
|
padding: 5px;
|
|
|
|
border-radius: 3px;
|
|
|
|
}
|
2019-01-23 15:38:53 +00:00
|
|
|
ul{
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
list-style: none;
|
|
|
|
}
|
2018-02-06 06:38:59 +00:00
|
|
|
.menu {
|
2018-05-17 08:13:54 +00:00
|
|
|
min-height: calc(100vh - 95px);
|
2024-08-28 11:03:27 +00:00
|
|
|
font-size: 1.2em;
|
2018-02-06 06:38:59 +00:00
|
|
|
}
|
2021-08-26 05:44:27 +00:00
|
|
|
.menu a {
|
2024-08-02 09:50:02 +00:00
|
|
|
background-color: var(--color-gray-light);
|
|
|
|
color: var(--color-black) !important;
|
2019-01-23 15:38:53 +00:00
|
|
|
padding: 10px;
|
|
|
|
display: block;
|
2024-08-02 09:50:02 +00:00
|
|
|
border-bottom: none;
|
2019-01-23 15:38:53 +00:00
|
|
|
transition: 0.5s all;
|
2019-01-24 04:18:30 +00:00
|
|
|
cursor: pointer;
|
2018-02-06 06:38:59 +00:00
|
|
|
}
|
2021-08-26 05:44:27 +00:00
|
|
|
.menu a:hover {
|
2024-08-02 09:50:02 +00:00
|
|
|
background: var(--color-gray-light) !important;
|
|
|
|
color: var(--color-wanring) !important;
|
|
|
|
border-left: none;
|
2018-02-06 06:38:59 +00:00
|
|
|
}
|
2019-01-23 15:38:53 +00:00
|
|
|
.menu li:first-child a, .menu li .v_menu li:first-child a{
|
|
|
|
border-radius: 3px 3px 0 0;
|
2018-02-06 06:38:59 +00:00
|
|
|
}
|
2019-01-23 15:38:53 +00:00
|
|
|
.menu li:last-child a, .menu li .v_menu li:last-child a{
|
|
|
|
border-radius: 0 0 3px 3px;
|
2018-03-26 08:52:28 +00:00
|
|
|
}
|
2019-01-23 15:38:53 +00:00
|
|
|
.menu li .v_menu li a{
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
2021-08-26 05:44:27 +00:00
|
|
|
.p_menu {position: relative;}
|
|
|
|
.v_menu {
|
2019-01-23 15:38:53 +00:00
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
left: 180px;
|
|
|
|
top: -9999px;
|
|
|
|
opacity: 0;
|
|
|
|
border-left: 10px solid transparent;
|
|
|
|
transition: 0.5s opacity;
|
|
|
|
}
|
2019-01-24 04:18:30 +00:00
|
|
|
.v_menu a {
|
2024-08-02 09:50:02 +00:00
|
|
|
background-color: var(--color-gray-light) !important;
|
2019-01-24 04:18:30 +00:00
|
|
|
}
|
2019-01-23 15:38:53 +00:00
|
|
|
.p_menu:hover .v_menu{
|
|
|
|
opacity: 1;
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
.p_menu::after{
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
border:5px solid;
|
2024-08-02 09:50:02 +00:00
|
|
|
border-color: transparent var(--color-gray) transparent transparent;
|
2019-01-23 15:38:53 +00:00
|
|
|
top:1em;
|
|
|
|
right: 0.7em;
|
|
|
|
transition: 0.5s;
|
|
|
|
}
|
|
|
|
.p_menu:hover::after{
|
|
|
|
transform: scaleX(-1);
|
2018-02-06 06:38:59 +00:00
|
|
|
}
|
2018-04-17 07:27:20 +00:00
|
|
|
.head-submenu {
|
|
|
|
margin-left: 20px;
|
|
|
|
}
|
2018-02-10 13:35:48 +00:00
|
|
|
.form-control {
|
2024-08-02 09:50:02 +00:00
|
|
|
background: no-repeat bottom, 50% calc(100% - 1px);
|
|
|
|
background-size: 0 100%, 100% 100%;
|
2018-02-10 13:35:48 +00:00
|
|
|
transition: background 1s ease-out;
|
2024-08-02 09:50:02 +00:00
|
|
|
font-size: 0.9em;
|
|
|
|
border-top: none;
|
|
|
|
border-left: none;
|
|
|
|
border-right: none;
|
|
|
|
border-bottom: 1px solid var(--color-secondary);
|
2018-02-10 13:35:48 +00:00
|
|
|
}
|
2019-10-25 07:18:57 +00:00
|
|
|
.form-login {
|
2024-12-03 12:28:55 +00:00
|
|
|
background-color: var(--color-gray);
|
2023-04-02 16:58:55 +00:00
|
|
|
padding: 10px 10px 10px 30px;
|
2024-08-02 09:50:02 +00:00
|
|
|
width: 220px;
|
|
|
|
background-size: 0 !important;
|
|
|
|
border: none;
|
|
|
|
border-radius: var(--border-radius);
|
2019-10-25 07:18:57 +00:00
|
|
|
}
|
2023-04-02 16:58:55 +00:00
|
|
|
.ui-selectmenu-open, .ui-selectmenu-menu {
|
|
|
|
z-index: 1010 !important;
|
|
|
|
}
|
2023-04-11 07:10:38 +00:00
|
|
|
.ui-selectmenu-button {
|
|
|
|
padding: 0.3em 1em 0.2em 0.4em !important;
|
|
|
|
}
|
2023-04-02 16:58:55 +00:00
|
|
|
.ui-dialog {
|
|
|
|
z-index: 1000 !important;
|
|
|
|
}
|
2018-04-17 06:32:00 +00:00
|
|
|
.ui-button {
|
|
|
|
padding-left: 10px !important;
|
|
|
|
padding-right: 10px !important;
|
|
|
|
}
|
2023-04-02 16:58:55 +00:00
|
|
|
.ui-button:active {
|
|
|
|
border: none !important;
|
|
|
|
}
|
|
|
|
#tabs.ui-widget.ui-widget-content {
|
|
|
|
border: none !important;
|
|
|
|
}
|
|
|
|
#tabs.ui-tabs {
|
|
|
|
padding: 0 !important;
|
|
|
|
}
|
|
|
|
#tabs.ui-widget-header {
|
|
|
|
border: none !important;
|
|
|
|
}
|
|
|
|
#tabs.ui-corner-all {
|
|
|
|
border-radius: none !important;
|
|
|
|
}
|
2022-09-25 18:20:46 +00:00
|
|
|
.overflow_div {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2020-12-01 04:31:50 +00:00
|
|
|
@media all and (-webkit-min-device-pixel-ratio:0) and (min-resolution: .001dpcm) {
|
|
|
|
.ui-checkboxradio-label {
|
2020-12-17 10:30:49 +00:00
|
|
|
padding-bottom: 0.4em !important;
|
|
|
|
padding-top: 0.4em !important;
|
2020-12-01 04:31:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
@-moz-document url-prefix() {
|
|
|
|
.ui-checkboxradio-label {
|
|
|
|
padding-bottom: 5px !important;
|
|
|
|
padding-top: 7.5px !important;
|
|
|
|
}
|
2020-11-19 19:56:47 +00:00
|
|
|
}
|
2018-02-10 13:35:48 +00:00
|
|
|
.ui-state-default {
|
2018-02-23 17:37:59 +00:00
|
|
|
background-color: #EBF1F1 !important;
|
|
|
|
}
|
|
|
|
.ui-state-active {
|
2022-04-29 10:28:48 +00:00
|
|
|
background-color: #376fb6 !important;
|
2024-08-02 09:50:02 +00:00
|
|
|
border: none;
|
2018-02-23 17:37:59 +00:00
|
|
|
}
|
2018-04-16 07:01:44 +00:00
|
|
|
.ui-tabs-nav {
|
2018-07-07 09:43:31 +00:00
|
|
|
border-radius: 0 !important;
|
2023-04-09 13:11:16 +00:00
|
|
|
padding-left: var(--indent) !important;
|
2019-09-20 06:42:19 +00:00
|
|
|
padding-top: 0.28em !important;
|
2018-04-16 07:01:44 +00:00
|
|
|
}
|
2018-04-21 14:40:59 +00:00
|
|
|
.ui-tabs .ui-tabs-panel {
|
2024-08-02 09:50:02 +00:00
|
|
|
background-color: var(--background) !important;
|
2018-04-21 14:40:59 +00:00
|
|
|
padding: 0 !important;
|
|
|
|
padding-bottom: 10px !important;
|
2024-08-02 09:50:02 +00:00
|
|
|
}
|
2018-04-21 14:40:59 +00:00
|
|
|
.ui-tabs {
|
|
|
|
padding-left: 0 !important;
|
2018-07-07 09:43:31 +00:00
|
|
|
margin-left: -2px;
|
2018-04-21 14:40:59 +00:00
|
|
|
}
|
|
|
|
.ui-widget-header {
|
2021-05-02 03:58:22 +00:00
|
|
|
background: var(--blue-color) !important;
|
2023-04-02 16:58:55 +00:00
|
|
|
color: #f4f1f1 !important;
|
2018-04-17 03:46:57 +00:00
|
|
|
}
|
2018-04-17 06:32:00 +00:00
|
|
|
.ui-menu, .ui-menu-item {
|
2018-04-17 20:06:18 +00:00
|
|
|
background: #EBF1F1 !important;
|
2018-04-17 06:32:00 +00:00
|
|
|
}
|
2021-01-12 05:05:53 +00:00
|
|
|
.ui-corner-all {
|
2022-07-20 12:38:09 +00:00
|
|
|
border-radius: 3px !important;
|
2021-01-12 05:05:53 +00:00
|
|
|
}
|
2023-04-02 16:58:55 +00:00
|
|
|
.ui-state-focus {
|
|
|
|
border: none !important;
|
2020-07-31 14:36:03 +00:00
|
|
|
}
|
2024-08-02 09:50:02 +00:00
|
|
|
.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited, a.ui-button, a:link.ui-button, a:visited.ui-button, .ui-button {
|
|
|
|
background-color: var(--color-gray-dark-alpha) !important;
|
|
|
|
border-radius: 7px !important;
|
|
|
|
border: none !important;
|
|
|
|
}
|
|
|
|
.ui-state-active, .ui-widget-content .ui-state-active {
|
|
|
|
background-color: var(--color-blue) !important;
|
|
|
|
color: #fff !important;
|
|
|
|
}
|
|
|
|
.ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active {
|
|
|
|
color: #D6D6D6 !important;
|
|
|
|
background-color: var(--color-gray-dark-alpha) !important;
|
|
|
|
border: none !important;
|
|
|
|
}
|
|
|
|
.ui-button.ui-state-active:hover {
|
|
|
|
background-color: var(--color-blue) !important;
|
|
|
|
}
|
|
|
|
.ui-icon-blank.ui-icon-blank.ui-icon-blank {
|
|
|
|
background-color: var(--background) !important;
|
|
|
|
}
|
|
|
|
.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
|
|
|
|
color: var(--color-black) !important;
|
|
|
|
}
|
|
|
|
.ui-widget.ui-widget-content, .ui-widget-content {
|
|
|
|
border: none !important;
|
|
|
|
}
|
|
|
|
.ui-widget-header {
|
|
|
|
background-color: var(--color-gray-light) !important;
|
|
|
|
}
|
|
|
|
.ui-dialog {
|
|
|
|
padding: 0 !important;
|
|
|
|
}
|
|
|
|
.ui-dialog .ui-dialog-content {
|
|
|
|
background-color: var(--background) !important;
|
|
|
|
}
|
|
|
|
.ui-widget-content {
|
|
|
|
background-color: var(--background) !important;
|
|
|
|
}
|
|
|
|
.ui-dialog .ui-dialog-title {
|
|
|
|
color: var(--color-black) !important;
|
|
|
|
}
|
|
|
|
.ui-tabs-active, .ui-state-active, .ui-state-focus, .ui-tabs-focus {
|
|
|
|
border: none !important;
|
|
|
|
}
|
2018-10-04 04:07:32 +00:00
|
|
|
.need-field {
|
2021-05-02 03:58:22 +00:00
|
|
|
color: var(--red-color);
|
2018-10-04 04:07:32 +00:00
|
|
|
}
|
2018-02-10 13:35:48 +00:00
|
|
|
a:active, a:hover {
|
2018-02-06 06:38:59 +00:00
|
|
|
outline: 0;
|
|
|
|
}
|
2019-12-01 17:15:09 +00:00
|
|
|
a, a:visited {
|
2019-09-22 15:46:26 +00:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
a {
|
2024-08-02 09:50:02 +00:00
|
|
|
color: var(--color-wanring);
|
2019-09-22 15:46:26 +00:00
|
|
|
text-decoration: none;
|
2020-09-04 18:39:51 +00:00
|
|
|
background-color: transparent;
|
2018-02-06 06:38:59 +00:00
|
|
|
}
|
2019-12-01 17:15:09 +00:00
|
|
|
a:hover, a:focus {
|
2021-05-02 03:58:22 +00:00
|
|
|
color: var(--link-dark-blue);
|
2020-10-16 12:33:53 +00:00
|
|
|
text-decoration: underline;
|
2018-02-06 06:38:59 +00:00
|
|
|
}
|
2019-09-22 15:46:26 +00:00
|
|
|
a:focus {
|
|
|
|
outline: 5px auto -webkit-focus-ring-color;
|
|
|
|
outline-offset: -2px;
|
2018-02-06 06:38:59 +00:00
|
|
|
}
|
2024-08-02 09:50:02 +00:00
|
|
|
.accordion-link, .link {
|
|
|
|
color: var(--color-wanring) !important;
|
2020-10-16 12:33:53 +00:00
|
|
|
cursor: pointer;
|
2019-10-04 06:23:48 +00:00
|
|
|
}
|
2018-02-06 06:38:59 +00:00
|
|
|
table {
|
2022-07-20 12:38:09 +00:00
|
|
|
border-spacing: 0;
|
|
|
|
border-collapse: collapse;
|
|
|
|
background-color: transparent;
|
|
|
|
border-radius: var(--border-radius);
|
|
|
|
width: 100%;
|
2023-04-02 16:58:55 +00:00
|
|
|
font-size: 1.1em;
|
2018-02-06 06:38:59 +00:00
|
|
|
}
|
2018-02-10 14:01:13 +00:00
|
|
|
caption {
|
|
|
|
color: #777;
|
|
|
|
text-align: left;
|
|
|
|
}
|
2020-05-10 06:17:07 +00:00
|
|
|
caption h3 {
|
|
|
|
font-size: 1.2em;
|
|
|
|
}
|
2018-02-10 14:01:13 +00:00
|
|
|
td,th {
|
2018-02-06 06:38:59 +00:00
|
|
|
padding: 0;
|
2018-02-10 13:35:48 +00:00
|
|
|
text-align: left;
|
2019-10-01 05:35:05 +00:00
|
|
|
min-width: 25px;
|
2018-02-06 06:38:59 +00:00
|
|
|
}
|
2024-08-02 09:50:02 +00:00
|
|
|
textarea {
|
|
|
|
background-color: var(--background);
|
|
|
|
}
|
|
|
|
.odd {
|
|
|
|
background-color: var(--background) !important;
|
|
|
|
}
|
|
|
|
.even {
|
|
|
|
background-color: var(--color-gray-light-alpha) !important;
|
|
|
|
}
|
2021-06-21 05:46:53 +00:00
|
|
|
.odd:hover, .even:hover {
|
2024-08-02 09:50:02 +00:00
|
|
|
background-color: var(--color-gray-alpha);
|
2021-06-21 05:46:53 +00:00
|
|
|
}
|
2018-02-06 06:38:59 +00:00
|
|
|
.row {
|
|
|
|
margin-right: -15px;
|
|
|
|
margin-left: -15px;
|
|
|
|
}
|
2018-04-16 07:01:44 +00:00
|
|
|
.update {
|
2018-04-17 03:46:57 +00:00
|
|
|
background-color: #dff0d8 !important;
|
|
|
|
}
|
|
|
|
.alert {
|
2023-04-09 13:11:16 +00:00
|
|
|
padding: var(--indent);
|
2018-04-17 03:46:57 +00:00
|
|
|
margin-bottom:20px;
|
|
|
|
border:1px solid transparent;
|
2019-09-20 06:42:19 +00:00
|
|
|
display: block;
|
2018-04-17 03:46:57 +00:00
|
|
|
}
|
|
|
|
.alert a {
|
|
|
|
cursor: pointer;
|
2021-01-09 15:42:08 +00:00
|
|
|
margin-bottom: 10px;
|
2021-05-02 03:58:22 +00:00
|
|
|
color: var(--blue-color) !important;
|
2018-04-17 03:46:57 +00:00
|
|
|
}
|
2018-05-01 06:28:19 +00:00
|
|
|
.alert-danger, .alert-info, .alert-success, .alert-warning, .added {
|
2023-04-09 13:11:16 +00:00
|
|
|
margin-top: var(--indent);
|
2024-08-02 09:50:02 +00:00
|
|
|
border-radius: var(--border-radius);
|
2018-04-27 04:07:59 +00:00
|
|
|
}
|
2018-04-17 03:46:57 +00:00
|
|
|
.alert-danger {
|
2018-04-17 20:06:18 +00:00
|
|
|
color: #a94442;
|
|
|
|
background-color: #f2dede;
|
|
|
|
border-color: #ebccd1;
|
2018-08-24 07:29:28 +00:00
|
|
|
margin-bottom: -50px;
|
2018-04-16 07:01:44 +00:00
|
|
|
}
|
2018-05-01 06:28:19 +00:00
|
|
|
.alert-success, .added{
|
2024-08-02 09:50:02 +00:00
|
|
|
color: var(--color-blue);
|
|
|
|
background-color: rgba(2, 159, 201, 0.15);
|
2018-04-27 04:07:59 +00:00
|
|
|
}
|
|
|
|
.alert-info {
|
2024-08-02 09:50:02 +00:00
|
|
|
color: #0c5460;
|
|
|
|
background-color: var(--color-gray-light);
|
|
|
|
border: none;
|
|
|
|
margin-left: var(--indent);
|
|
|
|
border-radius: var(--border-radius);
|
2018-04-23 04:49:23 +00:00
|
|
|
}
|
2018-04-27 04:42:20 +00:00
|
|
|
.alert-warning {
|
2024-08-02 09:50:02 +00:00
|
|
|
color: #000;
|
|
|
|
background-color: rgba(255, 149, 1, 0.15);
|
2018-04-27 04:42:20 +00:00
|
|
|
}
|
2019-10-14 21:23:49 +00:00
|
|
|
.wrong-login {
|
|
|
|
display: none;
|
2024-08-02 09:50:02 +00:00
|
|
|
margin-top: 450px;
|
2019-10-14 21:23:49 +00:00
|
|
|
margin-right: 50px;
|
|
|
|
width: 300px;
|
2021-04-16 14:09:51 +00:00
|
|
|
text-align: center;
|
2022-09-25 18:20:46 +00:00
|
|
|
margin-left: 44%;
|
2019-10-14 21:23:49 +00:00
|
|
|
}
|
2018-10-04 04:07:32 +00:00
|
|
|
.validateTips {
|
2020-10-16 12:33:53 +00:00
|
|
|
width: 540px;
|
|
|
|
margin: 0 0 10px;
|
2018-10-04 04:07:32 +00:00
|
|
|
}
|
2018-08-30 05:21:03 +00:00
|
|
|
#errorMess {
|
|
|
|
float: right;
|
|
|
|
}
|
2018-05-01 06:28:19 +00:00
|
|
|
.added {
|
|
|
|
position: absolute;
|
|
|
|
margin-left: 30px;
|
|
|
|
margin-top: 790px;
|
|
|
|
padding-bottom: 20px;
|
|
|
|
padding-right: 20px;
|
|
|
|
padding-left: 10px;
|
|
|
|
}
|
2018-02-06 06:38:59 +00:00
|
|
|
label {
|
|
|
|
display: inline-block;
|
|
|
|
max-width: 100%;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
font-weight: bold;
|
2018-02-10 14:16:33 +00:00
|
|
|
padding-right: 10px;
|
2018-08-05 14:37:14 +00:00
|
|
|
}
|
2019-12-30 15:52:01 +00:00
|
|
|
#up-pannel {
|
2023-04-09 13:11:16 +00:00
|
|
|
margin-top: var(--indent);
|
2019-12-30 15:52:01 +00:00
|
|
|
}
|
2020-07-15 04:16:31 +00:00
|
|
|
.div-server, .div-server-hapwi, .bin_bout {
|
2024-08-02 09:50:02 +00:00
|
|
|
background-color: var(--color-gray-light-alpha);
|
|
|
|
border: none;
|
|
|
|
border-radius: var(--border-radius);
|
2020-02-05 08:15:57 +00:00
|
|
|
height: 165px;
|
2021-10-19 07:10:52 +00:00
|
|
|
width: 400px;
|
2020-10-16 12:33:53 +00:00
|
|
|
padding: 10px 15px 20px;
|
|
|
|
margin: 0 5px 20px 20px;
|
2019-09-22 15:46:26 +00:00
|
|
|
display: block;
|
|
|
|
float: left;
|
|
|
|
}
|
2020-01-11 21:16:27 +00:00
|
|
|
.div-server {
|
|
|
|
height: 95px;
|
|
|
|
}
|
2020-11-02 17:01:08 +00:00
|
|
|
.div-server-head-up {
|
2024-08-02 09:50:02 +00:00
|
|
|
border-top: 7px solid var(--green-color) !important;
|
2020-11-02 17:01:08 +00:00
|
|
|
}
|
|
|
|
.div-server-head-down {
|
2024-08-02 09:50:02 +00:00
|
|
|
border-top: 7px solid var(--red-color) !important;
|
2020-11-02 17:01:08 +00:00
|
|
|
}
|
|
|
|
.div-server-head-dis {
|
2024-08-02 09:50:02 +00:00
|
|
|
border-top: 7px solid #aaa !important;
|
2020-11-02 17:01:08 +00:00
|
|
|
}
|
2024-02-16 06:50:27 +00:00
|
|
|
.div-server-head-pause {
|
2024-08-02 09:50:02 +00:00
|
|
|
border-top: 7px solid orange !important;
|
2024-02-16 06:50:27 +00:00
|
|
|
}
|
2024-03-01 08:40:58 +00:00
|
|
|
.div-server-head-unknown {
|
2024-08-02 09:50:02 +00:00
|
|
|
border-top: 7px solid #efdb9d !important;
|
2024-03-01 08:40:58 +00:00
|
|
|
}
|
2024-02-16 06:50:27 +00:00
|
|
|
.div-server-head-up, .div-server-head-down, .div-server-head-dis, .div-server-head-pause {
|
2020-11-02 17:01:08 +00:00
|
|
|
padding-top: 7px;
|
|
|
|
}
|
|
|
|
.add-proxy-listen-head {
|
|
|
|
border-top: 3px solid #02869b;
|
|
|
|
}
|
|
|
|
.add-proxy-frontend-head {
|
|
|
|
border-top: 3px solid #00a4bd;
|
|
|
|
}
|
|
|
|
.add-proxy-backend-head {
|
|
|
|
border-top: 3px solid #00b8d7;
|
|
|
|
}
|
2019-11-15 07:08:51 +00:00
|
|
|
.div-backends {
|
2021-10-29 07:59:09 +00:00
|
|
|
width: 91.2%;
|
2019-11-15 07:08:51 +00:00
|
|
|
}
|
2019-09-22 15:46:26 +00:00
|
|
|
.server-name {
|
2024-08-02 09:50:02 +00:00
|
|
|
padding-bottom: 3px;
|
2019-09-26 15:48:56 +00:00
|
|
|
font-size: 1.4em;
|
2024-08-02 09:50:02 +00:00
|
|
|
color: var(--color-wanring);
|
|
|
|
width: 99%;
|
|
|
|
height: 25px;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
.name-span {
|
|
|
|
width: 260px;
|
|
|
|
display: inline-block;
|
|
|
|
margin-top: 3px;
|
2019-09-22 15:46:26 +00:00
|
|
|
}
|
|
|
|
.server-status {
|
|
|
|
border-radius: 50% 50%;
|
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
|
|
|
display: inline-block;
|
|
|
|
margin-left: 2px;
|
|
|
|
margin-bottom: -2px;
|
|
|
|
}
|
2023-01-24 07:34:14 +00:00
|
|
|
.server-status-small {
|
|
|
|
border-radius: 50% 50%;
|
|
|
|
width: 5px;
|
|
|
|
height: 5px;
|
|
|
|
display: inline-block;
|
2024-02-24 08:05:31 +00:00
|
|
|
margin-bottom: 0;
|
2023-01-24 07:34:14 +00:00
|
|
|
}
|
2019-09-22 15:46:26 +00:00
|
|
|
.server-action {
|
|
|
|
float: right;
|
|
|
|
margin-top: 6px;
|
|
|
|
}
|
|
|
|
.server-desc {
|
2019-09-26 15:48:56 +00:00
|
|
|
color: #999;
|
2020-02-05 08:15:57 +00:00
|
|
|
padding-top: 5px;
|
2019-12-27 04:31:09 +00:00
|
|
|
height: 80px;
|
2023-07-03 09:15:39 +00:00
|
|
|
width: 395px;
|
2019-09-29 20:16:24 +00:00
|
|
|
}
|
2021-01-02 16:36:43 +00:00
|
|
|
.add_proxy {
|
|
|
|
width: 380px;
|
|
|
|
}
|
2019-09-29 20:16:24 +00:00
|
|
|
.server-act-links {
|
|
|
|
margin-left: -2px;
|
2019-09-22 15:46:26 +00:00
|
|
|
}
|
|
|
|
.server-act-links a {
|
2023-02-13 14:45:45 +00:00
|
|
|
margin-right: 2px !important
|
2019-09-22 15:46:26 +00:00
|
|
|
}
|
|
|
|
.server-act-links a:last-child {
|
|
|
|
margin-right: 0 !important;
|
|
|
|
}
|
2019-09-26 15:48:56 +00:00
|
|
|
#left-collumn, #middle-collumn, #right-collumn {
|
|
|
|
float: left;
|
|
|
|
}
|
2019-09-22 15:46:26 +00:00
|
|
|
.ajax-server {
|
2024-08-02 09:50:02 +00:00
|
|
|
display: block;
|
|
|
|
background-color: var(--color-gray-light);
|
|
|
|
border-radius: var(--border-radius);
|
|
|
|
margin: 25px 25px 0 787px;
|
|
|
|
width: 797px;
|
|
|
|
height: 185px;
|
|
|
|
padding: 10px 0 0 15px;
|
2019-09-22 15:46:26 +00:00
|
|
|
}
|
|
|
|
.haproxy-info {
|
|
|
|
display: inline-block;
|
2021-02-28 05:55:24 +00:00
|
|
|
width: 150px;
|
2021-01-10 04:48:18 +00:00
|
|
|
padding-top: 5px;
|
|
|
|
font-size: 11.5px;
|
2019-10-25 07:18:57 +00:00
|
|
|
float: left;
|
2019-09-22 15:46:26 +00:00
|
|
|
}
|
2021-02-28 05:55:24 +00:00
|
|
|
.server-info {
|
|
|
|
height: 100%;
|
|
|
|
width: 790px;
|
|
|
|
}
|
2019-09-22 15:46:26 +00:00
|
|
|
.top-info {
|
|
|
|
display: inline-block;
|
|
|
|
width: 350px;
|
2021-01-10 04:48:18 +00:00
|
|
|
margin-top: 5px;
|
2019-10-25 07:18:57 +00:00
|
|
|
font-size: 10px;
|
2019-09-23 14:03:23 +00:00
|
|
|
}
|
2020-07-15 04:16:31 +00:00
|
|
|
.bin_bout {
|
|
|
|
width: 110px;
|
2021-01-10 04:48:18 +00:00
|
|
|
margin-left: 12px;
|
2020-07-15 04:16:31 +00:00
|
|
|
}
|
2023-04-09 16:40:41 +00:00
|
|
|
.bin_bout_text {
|
|
|
|
height: 24px;
|
|
|
|
width: 90px;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
.bin_bout_text_without_refresh {
|
|
|
|
width: 115px;
|
|
|
|
}
|
2020-07-15 04:16:31 +00:00
|
|
|
.bytes {
|
|
|
|
padding-top: 17px;
|
|
|
|
padding-bottom: 12px;
|
|
|
|
font-size: 17px;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2019-10-14 06:55:29 +00:00
|
|
|
.update-icon {
|
|
|
|
float: right;
|
2020-12-01 04:31:50 +00:00
|
|
|
margin-top: 5px;
|
2019-10-14 06:55:29 +00:00
|
|
|
}
|
2019-09-23 14:03:23 +00:00
|
|
|
.span-link {
|
|
|
|
cursor: pointer;
|
2019-10-01 05:35:05 +00:00
|
|
|
}
|
2021-10-29 07:59:09 +00:00
|
|
|
.chart-container, .chart-container_overview {
|
2019-10-05 21:30:16 +00:00
|
|
|
position: relative;
|
2019-10-31 19:51:43 +00:00
|
|
|
height: 300px;
|
2020-07-15 04:16:31 +00:00
|
|
|
width: 48.8%;
|
2019-10-05 21:30:16 +00:00
|
|
|
float: left;
|
2023-04-09 13:11:16 +00:00
|
|
|
margin-left: var(--indent);
|
2024-02-24 08:05:31 +00:00
|
|
|
margin-bottom: var(--indent);
|
2019-10-05 21:30:16 +00:00
|
|
|
}
|
2021-10-29 07:59:09 +00:00
|
|
|
.chart-container_overview {
|
|
|
|
width: 93.3%;
|
|
|
|
}
|
2020-06-10 06:34:56 +00:00
|
|
|
.restart, .reload, .stop, .stop-waf, .restart-waf {
|
|
|
|
padding-left: 4px;
|
|
|
|
}
|
2020-07-02 14:44:13 +00:00
|
|
|
.main {
|
2023-04-09 13:11:16 +00:00
|
|
|
margin: var(--indent);
|
2020-07-02 14:44:13 +00:00
|
|
|
}
|
|
|
|
.sort_menu {
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
.smon_group {
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
.group_name {
|
|
|
|
font-size: 18px;
|
2024-02-16 06:50:27 +00:00
|
|
|
padding: 10px 20px 0 0;
|
2020-07-02 14:44:13 +00:00
|
|
|
}
|
|
|
|
.smon_services {
|
2024-02-16 06:50:27 +00:00
|
|
|
width: 300px;
|
|
|
|
height: 185px;
|
2020-07-02 14:44:13 +00:00
|
|
|
float: left;
|
2024-08-02 09:50:02 +00:00
|
|
|
background-color: var(--color-gray-light-alpha);
|
2024-02-16 06:50:27 +00:00
|
|
|
margin: 10px 10px 10px 0;
|
2023-04-09 13:11:16 +00:00
|
|
|
padding-left: var(--indent);
|
2020-11-02 17:01:08 +00:00
|
|
|
padding-top: 0;
|
2024-08-02 09:50:02 +00:00
|
|
|
border-radius: var(--border-radius);
|
2020-07-02 14:44:13 +00:00
|
|
|
}
|
|
|
|
#good_services {
|
|
|
|
clear: both;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
}
|
|
|
|
#err_services {
|
|
|
|
clear: both;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
}
|
|
|
|
.ip {
|
|
|
|
font-size: 18px;
|
|
|
|
padding-top: 5px;
|
|
|
|
padding-bottom: 3px;
|
2021-05-02 03:58:22 +00:00
|
|
|
color: var(--blue-color);
|
2020-07-02 14:44:13 +00:00
|
|
|
width: 93%;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
.desc, .res_time {
|
|
|
|
color: #999;
|
|
|
|
}
|
|
|
|
.desc {
|
|
|
|
height: 20px;
|
|
|
|
}
|
|
|
|
.res_time {
|
|
|
|
height: 25px;
|
|
|
|
}
|
2020-07-15 04:16:31 +00:00
|
|
|
.up, .down, .disable, .unknown {
|
2020-07-02 14:44:13 +00:00
|
|
|
height: 45px;
|
2024-02-16 06:50:27 +00:00
|
|
|
width: 281px;
|
2020-07-02 14:44:13 +00:00
|
|
|
font-size: 30px;
|
|
|
|
color: #fff;
|
2023-04-14 08:18:20 +00:00
|
|
|
text-align: center;
|
2020-07-02 14:44:13 +00:00
|
|
|
}
|
|
|
|
.up {
|
2020-07-15 04:16:31 +00:00
|
|
|
color: #3c763d;
|
|
|
|
background-color: #dff0d8;
|
|
|
|
border-color: #d6e9c6;
|
2020-07-02 14:44:13 +00:00
|
|
|
}
|
|
|
|
.down {
|
2021-05-02 03:58:22 +00:00
|
|
|
color: var(--red-color);
|
2020-07-15 04:16:31 +00:00
|
|
|
background-color: #f2dede;
|
|
|
|
border-color: #ebccd1;
|
|
|
|
}
|
|
|
|
.unknown {
|
2024-08-02 09:50:02 +00:00
|
|
|
color: #e3a556;
|
|
|
|
background-color: rgba(255, 149, 1, 0.15);
|
2020-07-02 14:44:13 +00:00
|
|
|
}
|
|
|
|
.disable {
|
|
|
|
background-color: grey;
|
|
|
|
color: #aaa;
|
|
|
|
}
|
2021-03-03 13:47:42 +00:00
|
|
|
.minus-style {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2019-10-04 16:58:47 +00:00
|
|
|
@media (max-width: 1920px) {
|
2019-10-14 21:23:49 +00:00
|
|
|
.wrong-login {
|
2024-08-02 09:50:02 +00:00
|
|
|
margin-left: -360px;
|
2019-10-14 21:23:49 +00:00
|
|
|
}
|
2019-10-18 17:23:35 +00:00
|
|
|
}
|
2020-07-15 04:16:31 +00:00
|
|
|
@media (max-width: 1600px) {
|
|
|
|
.ajax-server {
|
|
|
|
clear: both !important;
|
|
|
|
margin-left: 20px !important;
|
|
|
|
margin-bottom: 20px !important;
|
2021-10-29 07:59:09 +00:00
|
|
|
width: 92.3% !important;
|
2020-07-15 04:16:31 +00:00
|
|
|
}
|
|
|
|
}
|
2019-10-31 19:51:43 +00:00
|
|
|
@media (max-width: 1450px) {
|
2019-11-15 07:08:51 +00:00
|
|
|
.ajax-server, .div-backends {
|
2019-10-31 19:51:43 +00:00
|
|
|
clear: both !important;
|
|
|
|
margin-left: 20px !important;
|
2020-01-27 15:01:31 +00:00
|
|
|
margin-bottom: 20px !important;
|
2021-10-29 07:59:09 +00:00
|
|
|
width: 91% !important;
|
|
|
|
}
|
|
|
|
.ajax-server {
|
|
|
|
width: 92.2% !important;
|
2019-10-31 19:51:43 +00:00
|
|
|
}
|
|
|
|
.div-server {
|
|
|
|
margin-bottom: 30px !important;
|
2021-10-29 07:59:09 +00:00
|
|
|
width: 90.8%;
|
2020-01-11 21:16:27 +00:00
|
|
|
height: 100px;
|
2019-10-31 19:51:43 +00:00
|
|
|
}
|
2020-11-02 17:01:08 +00:00
|
|
|
.server-desc {
|
2021-08-02 08:19:22 +00:00
|
|
|
width: 380px;
|
|
|
|
}
|
|
|
|
.add_proxy {
|
|
|
|
width: 300px;
|
|
|
|
}
|
|
|
|
.chart-container {
|
|
|
|
width: 48.3%;
|
2020-11-02 17:01:08 +00:00
|
|
|
}
|
2019-10-31 19:51:43 +00:00
|
|
|
}
|
2019-10-18 17:23:35 +00:00
|
|
|
@media (max-width: 1280px) {
|
2021-09-15 05:40:51 +00:00
|
|
|
.div-pannel {
|
|
|
|
height: 430px !important;
|
|
|
|
}
|
2019-10-25 07:18:57 +00:00
|
|
|
.div-server {
|
|
|
|
margin-bottom: 30px !important;
|
2020-11-02 17:01:08 +00:00
|
|
|
height: 100px;
|
2019-10-25 07:18:57 +00:00
|
|
|
}
|
2020-01-11 21:16:27 +00:00
|
|
|
#ssl_name {
|
|
|
|
width: 100px;
|
|
|
|
}
|
|
|
|
.form-control {
|
|
|
|
width: 120px;
|
|
|
|
}
|
2020-01-27 15:01:31 +00:00
|
|
|
#create {
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
2019-10-14 21:23:49 +00:00
|
|
|
}
|
2020-08-21 11:56:59 +00:00
|
|
|
@media (max-width: 1024px) {
|
|
|
|
.wrong-login {
|
|
|
|
margin-right: -150px;
|
|
|
|
}
|
|
|
|
.haproxy-info {
|
|
|
|
width: 120px;
|
|
|
|
padding-left: 10px;
|
|
|
|
}
|
|
|
|
#rows {
|
|
|
|
width: 50px;
|
|
|
|
}
|
|
|
|
#grep {
|
|
|
|
width: 100px;
|
|
|
|
}
|
|
|
|
.add-note {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
}
|
2019-10-07 17:07:28 +00:00
|
|
|
@media (max-width: 1080px) {
|
|
|
|
.chart-container {
|
|
|
|
position: relative;
|
|
|
|
height: 410px;
|
|
|
|
width: 95%;
|
|
|
|
}
|
|
|
|
.overview-wi {
|
|
|
|
width: 95%;
|
|
|
|
max-width: 95%;
|
2019-10-04 16:58:47 +00:00
|
|
|
}
|
2019-10-14 21:23:49 +00:00
|
|
|
.wrong-login {
|
|
|
|
margin-right: -50px;
|
|
|
|
}
|
2019-10-25 07:18:57 +00:00
|
|
|
.ajax-server {
|
2020-07-15 04:16:31 +00:00
|
|
|
min-width: 680px !important;
|
2019-10-31 19:51:43 +00:00
|
|
|
}
|
|
|
|
.haproxy-info {
|
|
|
|
width: 120px;
|
|
|
|
padding-left: 10px;
|
2019-10-25 07:18:57 +00:00
|
|
|
}
|
2020-01-11 21:16:27 +00:00
|
|
|
#ssl_cert {
|
|
|
|
width: 60%;
|
|
|
|
}
|
2019-10-04 16:58:47 +00:00
|
|
|
}
|
2019-10-14 21:23:49 +00:00
|
|
|
@media (max-width: 768px) {
|
|
|
|
.wrong-login {
|
|
|
|
margin-right: -260px;
|
|
|
|
}
|
2019-10-18 17:23:35 +00:00
|
|
|
.overview {
|
|
|
|
width: 90% !important;
|
|
|
|
}
|
|
|
|
.overview h3 {
|
|
|
|
width: 46.4% !important;
|
|
|
|
}
|
2020-01-11 21:16:27 +00:00
|
|
|
.div-server {
|
|
|
|
height: 90px;
|
2019-10-31 19:51:43 +00:00
|
|
|
}
|
|
|
|
.haproxy-info {
|
|
|
|
width: 120px;
|
|
|
|
padding-left: 10px;
|
|
|
|
}
|
2019-11-15 07:08:51 +00:00
|
|
|
.div-backends {
|
|
|
|
width: 82.5% !important
|
|
|
|
}
|
2019-12-01 17:15:09 +00:00
|
|
|
#rows {
|
|
|
|
width: 50px;
|
|
|
|
}
|
|
|
|
#grep {
|
|
|
|
width: 100px;
|
|
|
|
}
|
2019-10-01 05:35:05 +00:00
|
|
|
}
|
2019-10-14 21:23:49 +00:00
|
|
|
@media (max-width: 667px) {
|
|
|
|
.wrong-login {
|
|
|
|
margin-right: -210px;
|
|
|
|
}
|
2019-10-31 19:51:43 +00:00
|
|
|
.haproxy-info {
|
|
|
|
width: 120px;
|
|
|
|
padding-left: 10px;
|
|
|
|
}
|
2019-11-15 07:08:51 +00:00
|
|
|
.div-backends {
|
|
|
|
width: 84.6% !important
|
|
|
|
}
|
2019-12-01 17:15:09 +00:00
|
|
|
#rows {
|
|
|
|
width: 50px;
|
|
|
|
}
|
|
|
|
#grep {
|
|
|
|
width: 100px;
|
|
|
|
}
|
2019-10-01 05:35:05 +00:00
|
|
|
}
|
2020-05-10 06:17:07 +00:00
|
|
|
.loading, .loading_full_page {
|
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
2019-10-11 04:49:55 +00:00
|
|
|
margin-left: 100%;
|
|
|
|
}
|
|
|
|
.loading_full_page {
|
|
|
|
margin-left: 45%;
|
|
|
|
}
|
2020-07-15 04:16:31 +00:00
|
|
|
.loading_small, .loading_small_bin_bout {
|
2019-12-27 04:31:09 +00:00
|
|
|
width: 39px;
|
|
|
|
height: 39px;
|
|
|
|
padding-left: 103%;
|
|
|
|
}
|
2020-07-15 04:16:31 +00:00
|
|
|
.loading_small_bin_bout {
|
|
|
|
padding-left: 30%;
|
|
|
|
padding-top: 50%;
|
|
|
|
}
|
2019-12-27 04:31:09 +00:00
|
|
|
.loading_small_haproxyservers {
|
|
|
|
width: 15px;
|
|
|
|
height: 15px;
|
|
|
|
}
|
2019-10-11 04:49:55 +00:00
|
|
|
.tooltip {
|
|
|
|
font-size: 12px;
|
|
|
|
padding-bottom: 10px;
|
2021-02-03 19:25:37 +00:00
|
|
|
color: #9d9d9d;
|
2019-10-11 04:49:55 +00:00
|
|
|
}
|
|
|
|
.tooltipTop {
|
|
|
|
margin-bottom: -20px;
|
|
|
|
padding-top: 10px;
|
2021-02-03 19:25:37 +00:00
|
|
|
}
|
|
|
|
.tooltipTd {
|
|
|
|
margin-bottom: -10px;
|
|
|
|
padding: 0;
|
2019-10-11 04:49:55 +00:00
|
|
|
}
|
2020-08-21 11:56:59 +00:00
|
|
|
#stats_filter {
|
|
|
|
margin-left: 5px;
|
|
|
|
margin-right: 5px;
|
|
|
|
margin-top: -4px;
|
|
|
|
float: right;
|
|
|
|
padding-top: 7px;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
#stats_filter_text {
|
|
|
|
float: left;
|
|
|
|
font-size: 20px;
|
|
|
|
margin-top: -2px;
|
2020-10-16 12:33:53 +00:00
|
|
|
padding: 0 10px 5px 5px;
|
2020-08-21 11:56:59 +00:00
|
|
|
}
|
|
|
|
.stats_active, .stats_drain, .stats_maintain, .stats_down, .stats_not_checked, .stats_backup, .stats_frontends, .stats_backends {
|
2023-04-02 16:58:55 +00:00
|
|
|
color: #000 !important;
|
2020-08-21 11:56:59 +00:00
|
|
|
border-color: rgb(221, 221, 221) !important;
|
2023-04-02 16:58:55 +00:00
|
|
|
opacity: .8;
|
2020-08-21 11:56:59 +00:00
|
|
|
}
|
2023-04-02 16:58:55 +00:00
|
|
|
.stats_active:hover, .stats_drain:hover, .stats_maintain:hover, .stats_down:hover, .stats_not_checked:hover, .stats_backup:hover, .stats_frontends:hover, .stats_backends:hover {
|
|
|
|
color: #000 !important;
|
|
|
|
opacity: 1;
|
2020-08-21 11:56:59 +00:00
|
|
|
}
|
|
|
|
.stats_active {
|
|
|
|
background-color: #c0ffc0 !important;
|
|
|
|
}
|
|
|
|
.stats_drain {
|
|
|
|
background-color: #20a0FF !important;
|
|
|
|
}
|
|
|
|
.stats_maintain {
|
|
|
|
background-color: #c07820 !important;
|
|
|
|
}
|
|
|
|
.stats_down {
|
|
|
|
background-color: #ff9090 !important;
|
|
|
|
}
|
|
|
|
.stats_not_checked {
|
|
|
|
background-color: #e0e0e0 !important;
|
|
|
|
}
|
|
|
|
.stats_backup {
|
|
|
|
background-color: #b0d0ff !important;
|
|
|
|
}
|
|
|
|
.stats_frontends {
|
|
|
|
background-color: rgb(93, 156, 235) !important;
|
2020-10-16 12:33:53 +00:00
|
|
|
}
|
2020-12-01 04:31:50 +00:00
|
|
|
.switcher_table_metric {
|
|
|
|
margin-left: 99%;
|
2021-06-08 07:37:42 +00:00
|
|
|
color: var(--green-color);
|
2020-12-01 04:31:50 +00:00
|
|
|
cursor: pointer;
|
2020-12-15 06:34:02 +00:00
|
|
|
}
|
|
|
|
.geoip_country_code {
|
|
|
|
padding: 10px;
|
|
|
|
float: left;
|
|
|
|
font-weight: bold;
|
|
|
|
width: 110px;
|
|
|
|
height: 60px;
|
2021-01-08 08:14:14 +00:00
|
|
|
}
|
2021-06-08 07:37:42 +00:00
|
|
|
.help_cursor {
|
|
|
|
cursor: help;
|
2021-07-05 14:51:05 +00:00
|
|
|
}
|
|
|
|
.copyToClipboard {
|
|
|
|
cursor: pointer;
|
|
|
|
transition: .3s;
|
|
|
|
}
|
|
|
|
.copyToClipboard:hover {
|
|
|
|
color: var(--blue-color);
|
|
|
|
content: "\f0c5";
|
|
|
|
}
|
|
|
|
.copyToClipboard:active {
|
|
|
|
transition: .3s;
|
|
|
|
color: var(--link-dark-blue);
|
2021-08-26 05:44:27 +00:00
|
|
|
}
|
|
|
|
.list_of_lists {
|
|
|
|
float: left;
|
|
|
|
width: 250px;
|
|
|
|
cursor: pointer;
|
2022-07-20 12:38:09 +00:00
|
|
|
}
|
2023-02-13 14:45:45 +00:00
|
|
|
.overflow {
|
|
|
|
overflow: hidden !important;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2023-04-02 16:58:55 +00:00
|
|
|
.left-space {
|
2023-04-09 13:11:16 +00:00
|
|
|
margin-left: var(--indent) !important;
|
|
|
|
}
|
|
|
|
.metrics-time-range {
|
|
|
|
float: left;
|
|
|
|
margin-top: var(--indent);
|
|
|
|
margin-left: var(--indent);
|
2024-11-07 07:57:41 +00:00
|
|
|
margin-bottom: 20px;
|
2023-04-09 13:11:16 +00:00
|
|
|
}
|
2023-04-17 15:01:01 +00:00
|
|
|
.ajaxwafstatus {
|
|
|
|
padding-top: 2px;
|
|
|
|
padding-left: 10px;
|
|
|
|
}
|
2023-04-25 09:18:41 +00:00
|
|
|
.portlet-header {
|
|
|
|
cursor: move;
|
2023-05-17 17:38:13 +00:00
|
|
|
margin-left: 10px;
|
|
|
|
position: relative;
|
|
|
|
bottom: 3px;
|
2023-04-25 09:18:41 +00:00
|
|
|
}
|
2023-12-16 07:15:59 +00:00
|
|
|
@keyframes placeHolderShimmer {
|
|
|
|
0% {
|
|
|
|
background-position: -800px 0
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
background-position: 800px 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.animated-background {
|
2024-02-16 06:50:27 +00:00
|
|
|
animation-duration: 2s;
|
|
|
|
animation-fill-mode: forwards;
|
|
|
|
animation-iteration-count: infinite;
|
|
|
|
animation-name: placeHolderShimmer;
|
|
|
|
animation-timing-function: linear;
|
|
|
|
background: #f6f7f8 linear-gradient(to right, #eeeeee 8%, #bbbbbb 18%, #eeeeee 33%);
|
|
|
|
background-size: 800px 104px;
|
|
|
|
position: relative;
|
2024-01-17 06:08:27 +00:00
|
|
|
}
|
|
|
|
.ping_pre {
|
|
|
|
padding: 10px;
|
|
|
|
font-family: 'Courier New', monospace;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 1.42857143;
|
|
|
|
color: #333;
|
|
|
|
word-break: break-all;
|
|
|
|
word-wrap: break-word;
|
|
|
|
background-color: #f5f5f5;
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
}
|
2024-12-03 12:28:55 +00:00
|
|
|
#enter {
|
|
|
|
width: 220px;
|
|
|
|
padding: 10px;
|
|
|
|
background-color: var(--background);
|
|
|
|
font-weight: bold;
|
|
|
|
color: var(--color-wanring);
|
|
|
|
border: 1px solid var(--color-wanring);
|
|
|
|
border-radius: var(--border-radius);
|
|
|
|
}
|