2025-06-02 23:41:31 +04:00
|
|
|
/* GLOBALS
|
|
|
|
|
-------------------------------------------------- */
|
|
|
|
|
|
2025-01-19 21:55:05 +04:00
|
|
|
:root {
|
2025-06-02 23:41:31 +04:00
|
|
|
/* Palette colors */
|
2025-06-15 23:19:24 +04:00
|
|
|
--color-gray: #d7dbdd;
|
|
|
|
|
--color-red: #e74c3c;
|
|
|
|
|
--color-orange: #f39c12;
|
|
|
|
|
--color-teal: #1abc9c;
|
|
|
|
|
--color-blue: #3498db;
|
|
|
|
|
--color-green: #27ae60;
|
2025-06-02 23:41:31 +04:00
|
|
|
|
|
|
|
|
/* Palette RGB colors */
|
2025-06-15 23:19:24 +04:00
|
|
|
--rgb-color-gray: 215, 219, 221;
|
|
|
|
|
--rgb-color-red: 231, 76, 60;
|
|
|
|
|
--rgb-color-orange: 243, 156, 18;
|
|
|
|
|
--rgb-color-teal: 26, 188, 156;
|
|
|
|
|
--rgb-color-blue: 52, 152, 219;
|
|
|
|
|
--rgb-color-green: 39, 174, 96;
|
2025-06-01 23:32:17 +04:00
|
|
|
|
2025-06-02 23:41:31 +04:00
|
|
|
/* Light theme semantic colors */
|
2025-06-15 23:19:24 +04:00
|
|
|
--color-bg: #fbfbfc;
|
|
|
|
|
--color-text-primary: #566573;
|
2025-06-02 23:41:31 +04:00
|
|
|
--color-text-heading: #141414;
|
2025-06-15 23:19:24 +04:00
|
|
|
--color-text-secondary: #85929e;
|
|
|
|
|
--color-block-bg: #fff;
|
|
|
|
|
--color-border: rgba(0, 0, 0, .1);
|
|
|
|
|
--color-input-bg: #dcdcdc;
|
2025-06-02 23:41:31 +04:00
|
|
|
|
|
|
|
|
/* Button: Secondary */
|
|
|
|
|
--color-btn-secondary-bg: transparent;
|
2025-06-15 23:19:24 +04:00
|
|
|
--color-btn-secondary-hover-bg: #ebebeb;
|
|
|
|
|
--color-btn-secondary-active-bg: #d7d7d7;
|
2025-06-01 23:32:17 +04:00
|
|
|
--color-btn-secondary-border: rgba(0, 0, 0, .16);
|
2025-06-02 23:41:31 +04:00
|
|
|
|
2025-06-15 23:19:24 +04:00
|
|
|
/* Sizing */
|
2025-06-02 23:41:31 +04:00
|
|
|
--size-container-width: 864px;
|
2025-06-05 21:36:55 +04:00
|
|
|
--size-edit-container-width: 1164px;
|
2025-06-02 23:41:31 +04:00
|
|
|
--size-logo-width: 48px;
|
|
|
|
|
--size-logo-height: 48px;
|
2025-06-15 23:19:24 +04:00
|
|
|
--size-uptime-day-bar-height: 24px;
|
2025-06-02 23:41:31 +04:00
|
|
|
|
|
|
|
|
/* Spacing */
|
2025-06-15 23:19:24 +04:00
|
|
|
--spacing-4: .25rem;
|
|
|
|
|
--spacing-8: .5rem;
|
|
|
|
|
--spacing-12: .75rem;
|
|
|
|
|
--spacing-16: 1rem;
|
|
|
|
|
--spacing-20: 1.25rem;
|
|
|
|
|
--spacing-24: 1.5rem;
|
|
|
|
|
--spacing-32: 2rem;
|
2025-06-02 23:41:31 +04:00
|
|
|
|
|
|
|
|
/* Border radius */
|
2025-06-15 23:19:24 +04:00
|
|
|
--border-radius-200: .25rem;
|
|
|
|
|
--border-radius-400: .375rem;
|
|
|
|
|
--border-radius-500: .5rem;
|
2025-06-05 21:36:55 +04:00
|
|
|
|
2025-06-02 23:41:31 +04:00
|
|
|
/* Typography */
|
2025-06-15 23:19:24 +04:00
|
|
|
--font-size-100: .875rem;
|
|
|
|
|
--font-size-300: 1.125rem;
|
|
|
|
|
--font-size-350: 1.25rem;
|
2025-06-02 23:41:31 +04:00
|
|
|
--font-weight-medium: 500;
|
2025-06-15 23:19:24 +04:00
|
|
|
--font-weight-semibold: 600;
|
|
|
|
|
--font-line-height-200: var(--spacing-24);
|
2025-06-02 23:41:31 +04:00
|
|
|
|
2025-06-15 23:19:24 +04:00
|
|
|
/* Shadow */
|
|
|
|
|
--shadow-filter: rgba(0, 0, 0, .05) 0px 1px 6px 0px;
|
2025-06-02 23:41:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* DARK THEME OVERRIDES
|
|
|
|
|
-------------------------------------------------- */
|
|
|
|
|
|
2025-06-01 23:32:17 +04:00
|
|
|
.dark {
|
2025-06-15 23:19:24 +04:00
|
|
|
/* Palette colors */
|
|
|
|
|
--color-gray: #424949;
|
|
|
|
|
|
2025-06-02 23:41:31 +04:00
|
|
|
/* Semantic colors */
|
2025-06-15 23:19:24 +04:00
|
|
|
--color-bg: #141414;
|
|
|
|
|
--color-text-primary: #909497;
|
|
|
|
|
--color-text-heading: #f1f1f1;
|
|
|
|
|
--color-text-secondary: #626567;
|
|
|
|
|
--color-block-bg: #1e1e1e;
|
|
|
|
|
--color-border: rgba(255, 255, 255, .07);
|
|
|
|
|
--color-input-bg: #323232;
|
2025-06-02 23:41:31 +04:00
|
|
|
|
|
|
|
|
/* Button: Secondary */
|
|
|
|
|
--color-btn-secondary-bg: transparent;
|
2025-06-15 23:19:24 +04:00
|
|
|
--color-btn-secondary-hover-bg: #232323;
|
|
|
|
|
--color-btn-secondary-active-bg: #1e1e1e;
|
2025-06-01 23:32:17 +04:00
|
|
|
--color-btn-secondary-border: rgba(255, 255, 255, .13);
|
2025-01-19 21:55:05 +04:00
|
|
|
}
|
|
|
|
|
|
2025-06-02 23:41:31 +04:00
|
|
|
/* BASE STRUCTURE
|
|
|
|
|
-------------------------------------------------- */
|
|
|
|
|
|
2025-01-19 21:55:05 +04:00
|
|
|
body {
|
2025-06-01 23:32:17 +04:00
|
|
|
background-color: var(--color-bg) !important;
|
2025-06-02 23:41:31 +04:00
|
|
|
color: var(--color-text-primary) !important;
|
2025-06-01 23:32:17 +04:00
|
|
|
}
|
|
|
|
|
|
2025-06-02 23:41:31 +04:00
|
|
|
.container {
|
|
|
|
|
margin-top: 0 !important;
|
2025-06-15 23:19:24 +04:00
|
|
|
padding: var(--spacing-32) var(--spacing-16) 0;
|
2025-06-02 23:41:31 +04:00
|
|
|
max-width: var(--size-container-width);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* HEADER
|
|
|
|
|
-------------------------------------------------- */
|
2025-06-01 23:32:17 +04:00
|
|
|
|
2025-06-02 23:41:31 +04:00
|
|
|
/* Wrapper for logo and title */
|
2025-06-01 23:32:17 +04:00
|
|
|
.title-flex {
|
2025-06-15 23:19:24 +04:00
|
|
|
margin-bottom: var(--spacing-32) !important;
|
2025-01-19 21:55:05 +04:00
|
|
|
}
|
|
|
|
|
|
2025-06-02 23:41:31 +04:00
|
|
|
/* Center the logo */
|
2025-01-19 21:55:05 +04:00
|
|
|
.logo-wrapper {
|
2025-06-09 20:06:05 +04:00
|
|
|
margin: 0 auto;
|
2025-01-19 21:55:05 +04:00
|
|
|
}
|
|
|
|
|
|
2025-06-02 23:41:31 +04:00
|
|
|
/* Resize the logo */
|
2025-06-12 00:15:20 +04:00
|
|
|
.logo-wrapper img[data-v-b8247e57],
|
|
|
|
|
.logo {
|
|
|
|
|
width: var(--size-logo-width) !important;
|
|
|
|
|
height: var(--size-logo-height) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Remove the margin of the logo */
|
|
|
|
|
[dir="ltr"] .logo {
|
|
|
|
|
margin-right: 0 !important;
|
2025-06-01 23:32:17 +04:00
|
|
|
}
|
|
|
|
|
|
2025-06-02 23:41:31 +04:00
|
|
|
/* Remove the title adjacent to the logo */
|
2025-01-19 21:55:05 +04:00
|
|
|
span[data-v-7d4a7f28] {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2025-06-02 23:41:31 +04:00
|
|
|
/* ADMIN ACTIONS BAR
|
|
|
|
|
-------------------------------------------------- */
|
|
|
|
|
|
|
|
|
|
/* Fix vertical margin of admin buttons on mobile */
|
2025-06-12 00:15:20 +04:00
|
|
|
.mb-4[data-v-b8247e57]:has(.btn-info),
|
|
|
|
|
.mb-4[data-v-84507135]:has(.btn-info) {
|
2025-06-15 23:19:24 +04:00
|
|
|
margin-bottom: var(--spacing-32) !important;
|
2025-06-01 23:32:17 +04:00
|
|
|
}
|
2025-06-12 00:15:20 +04:00
|
|
|
.mb-4[data-v-b8247e57]:has(.btn-info) div,
|
|
|
|
|
.mb-4[data-v-84507135]:has(.btn-info) div {
|
2025-06-01 23:32:17 +04:00
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
2025-06-15 23:19:24 +04:00
|
|
|
gap: var(--spacing-8);
|
2025-06-01 23:32:17 +04:00
|
|
|
}
|
2025-06-12 00:15:20 +04:00
|
|
|
.mb-4[data-v-b8247e57]:has(.btn-info) div button,
|
|
|
|
|
.mb-4[data-v-84507135]:has(.btn-info) div button {
|
2025-06-01 23:32:17 +04:00
|
|
|
margin: 0 !important;
|
2025-01-19 21:55:05 +04:00
|
|
|
}
|
|
|
|
|
|
2025-06-02 23:41:31 +04:00
|
|
|
/* Admin button */
|
2025-06-12 00:15:20 +04:00
|
|
|
.btn-info[data-v-b8247e57],
|
|
|
|
|
.btn-info[data-v-84507135] {
|
2025-01-19 21:55:05 +04:00
|
|
|
box-shadow: none;
|
2025-06-01 23:32:17 +04:00
|
|
|
border: 1px solid var(--color-btn-secondary-border);
|
2025-06-15 23:19:24 +04:00
|
|
|
border-radius: var(--border-radius-400);
|
2025-06-02 23:41:31 +04:00
|
|
|
background-color: var(--color-btn-secondary-bg);
|
2025-06-15 23:19:24 +04:00
|
|
|
padding: var(--spacing-4) var(--spacing-12);
|
2025-06-02 23:41:31 +04:00
|
|
|
color: var(--color-text-heading);
|
|
|
|
|
font-weight: var(--font-weight-medium);
|
2025-06-15 23:19:24 +04:00
|
|
|
font-size: var(--font-size-100);
|
|
|
|
|
line-height: var(--font-line-height-200);
|
2025-06-01 23:32:17 +04:00
|
|
|
}
|
2025-06-12 00:15:20 +04:00
|
|
|
.btn-info[data-v-b8247e57]:hover,
|
|
|
|
|
.btn-info[data-v-84507135]:hover {
|
2025-06-15 23:19:24 +04:00
|
|
|
background-color: var(--color-btn-secondary-hover-bg);
|
2025-06-01 23:32:17 +04:00
|
|
|
}
|
2025-06-12 00:15:20 +04:00
|
|
|
.btn-info[data-v-b8247e57]:active,
|
|
|
|
|
.btn-info[data-v-84507135]:active {
|
2025-06-01 23:32:17 +04:00
|
|
|
box-shadow: none;
|
2025-06-15 23:19:24 +04:00
|
|
|
background-color: var(--color-btn-secondary-active-bg);
|
2025-06-01 23:32:17 +04:00
|
|
|
}
|
2025-06-12 00:15:20 +04:00
|
|
|
.btn-info[data-v-b8247e57] svg,
|
|
|
|
|
.btn-info[data-v-84507135] svg {
|
2025-06-01 23:32:17 +04:00
|
|
|
display: none;
|
|
|
|
|
}
|
2025-01-19 21:55:05 +04:00
|
|
|
|
2025-06-02 23:41:31 +04:00
|
|
|
/* INCIDENT BLOCK
|
|
|
|
|
-------------------------------------------------- */
|
|
|
|
|
|
2025-06-12 00:15:20 +04:00
|
|
|
.incident[data-v-b8247e57],
|
|
|
|
|
.incident[data-v-84507135] {
|
2025-06-15 23:19:24 +04:00
|
|
|
margin-bottom: var(--spacing-16) !important;
|
2025-06-09 20:06:05 +04:00
|
|
|
box-shadow: none;
|
2025-06-15 23:19:24 +04:00
|
|
|
border-radius: var(--border-radius-500);
|
|
|
|
|
padding: var(--spacing-20) !important;
|
2025-06-02 23:41:31 +04:00
|
|
|
color: var(--color-text-heading) !important;
|
2025-06-01 23:32:17 +04:00
|
|
|
}
|
2025-06-12 00:15:20 +04:00
|
|
|
.incident[data-v-b8247e57].bg-info,
|
|
|
|
|
.incident[data-v-84507135].bg-info {
|
2025-06-15 23:19:24 +04:00
|
|
|
border: 1px solid rgba(var(--rgb-color-teal), .23);
|
|
|
|
|
background-color: rgba(var(--rgb-color-teal), .08) !important;
|
2025-06-01 23:32:17 +04:00
|
|
|
}
|
2025-06-12 00:15:20 +04:00
|
|
|
.incident[data-v-b8247e57].bg-warning,
|
|
|
|
|
.incident[data-v-84507135].bg-warning {
|
2025-06-15 23:19:24 +04:00
|
|
|
border: 1px solid rgba(var(--rgb-color-orange), .23);
|
|
|
|
|
background-color: rgba(var(--rgb-color-orange), .08) !important;
|
2025-06-01 23:32:17 +04:00
|
|
|
}
|
2025-06-12 00:15:20 +04:00
|
|
|
.incident[data-v-b8247e57].bg-danger,
|
|
|
|
|
.incident[data-v-84507135].bg-danger {
|
2025-06-15 23:19:24 +04:00
|
|
|
border: 1px solid rgba(var(--rgb-color-red), .23);
|
|
|
|
|
background-color: rgba(var(--rgb-color-red), .08) !important;
|
2025-06-01 23:32:17 +04:00
|
|
|
}
|
2025-06-12 00:15:20 +04:00
|
|
|
.incident[data-v-b8247e57].bg-primary,
|
|
|
|
|
.incident[data-v-84507135].bg-primary {
|
2025-06-15 23:19:24 +04:00
|
|
|
border: 1px solid rgba(var(--rgb-color-green), .23);
|
|
|
|
|
background-color: rgba(var(--rgb-color-green), .08) !important;
|
2025-06-01 23:32:17 +04:00
|
|
|
}
|
2025-06-12 00:15:20 +04:00
|
|
|
.incident[data-v-b8247e57].bg-light,
|
|
|
|
|
.incident[data-v-84507135].bg-light {
|
2025-06-15 23:19:24 +04:00
|
|
|
box-shadow: var(--shadow-filter);
|
|
|
|
|
border: 1px solid var(--color-border);
|
|
|
|
|
background-color: var(--color-block-bg) !important;
|
2025-06-01 23:32:17 +04:00
|
|
|
}
|
2025-06-12 00:15:20 +04:00
|
|
|
.incident[data-v-b8247e57].bg-dark,
|
|
|
|
|
.incident[data-v-84507135].bg-dark {
|
2025-06-15 23:19:24 +04:00
|
|
|
box-shadow: var(--shadow-filter);
|
|
|
|
|
border: 1px solid var(--color-border);
|
|
|
|
|
background-color: var(--color-bg) !important;
|
2025-06-01 23:32:17 +04:00
|
|
|
}
|
2025-06-12 00:15:20 +04:00
|
|
|
.incident[data-v-b8247e57] h4,
|
|
|
|
|
.incident[data-v-84507135] h4 {
|
2025-06-15 23:19:24 +04:00
|
|
|
font-size: var(--font-size-300);
|
2025-06-01 23:32:17 +04:00
|
|
|
}
|
2025-06-12 00:15:20 +04:00
|
|
|
.incident[data-v-b8247e57] div,
|
|
|
|
|
.incident[data-v-84507135] div {
|
2025-06-02 23:41:31 +04:00
|
|
|
color: var(--color-text-primary);
|
2025-06-01 23:32:17 +04:00
|
|
|
}
|
2025-06-15 23:19:24 +04:00
|
|
|
.date.mt-3 {
|
|
|
|
|
border-top: 1px solid var(--color-border);
|
|
|
|
|
padding-top: var(--spacing-20);
|
|
|
|
|
}
|
2025-01-19 21:55:05 +04:00
|
|
|
|
2025-06-02 23:41:31 +04:00
|
|
|
/* OVERALL STATUS BLOCK
|
|
|
|
|
-------------------------------------------------- */
|
|
|
|
|
|
2025-06-12 00:15:20 +04:00
|
|
|
.overall-status[data-v-b8247e57],
|
|
|
|
|
.overall-status[data-v-84507135] {
|
2025-06-15 23:19:24 +04:00
|
|
|
margin-bottom: var(--spacing-16) !important;
|
2025-06-01 23:32:17 +04:00
|
|
|
box-shadow: none;
|
2025-06-15 23:19:24 +04:00
|
|
|
border-radius: var(--border-radius-500);
|
|
|
|
|
padding: var(--spacing-20) !important;
|
|
|
|
|
color: var(--color-text-heading);
|
|
|
|
|
font-weight: var(--font-weight-semibold);
|
|
|
|
|
font-size: var(--font-size-350);
|
|
|
|
|
line-height: var(--font-line-height-200);
|
|
|
|
|
}
|
|
|
|
|
.overall-status[data-v-b8247e57] div,
|
|
|
|
|
.overall-status[data-v-84507135] div {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: var(--spacing-20);
|
|
|
|
|
}
|
|
|
|
|
.overall-status[data-v-b8247e57] svg,
|
|
|
|
|
.overall-status[data-v-84507135] svg {
|
|
|
|
|
margin-right: 0 !important;
|
|
|
|
|
width: 1.5em;
|
|
|
|
|
height: 1.5em;
|
2025-06-01 23:32:17 +04:00
|
|
|
}
|
2025-06-12 00:15:20 +04:00
|
|
|
.overall-status[data-v-b8247e57]:has(.ok),
|
|
|
|
|
.overall-status[data-v-84507135]:has(.ok) {
|
2025-06-15 23:19:24 +04:00
|
|
|
border: 1px solid rgba(var(--rgb-color-green), .23);
|
|
|
|
|
background-color: rgba(var(--rgb-color-green), .08);
|
|
|
|
|
}
|
|
|
|
|
.overall-status[data-v-b8247e57]:has(.ok) svg,
|
|
|
|
|
.overall-status[data-v-84507135]:has(.ok) svg {
|
|
|
|
|
color: var(--color-green);
|
2025-06-01 23:32:17 +04:00
|
|
|
}
|
2025-06-12 00:15:20 +04:00
|
|
|
.overall-status[data-v-b8247e57]:has(.warning),
|
|
|
|
|
.overall-status[data-v-84507135]:has(.warning) {
|
2025-06-15 23:19:24 +04:00
|
|
|
border: 1px solid rgba(var(--rgb-color-orange), .23);
|
|
|
|
|
background-color: rgba(var(--rgb-color-orange), .08);
|
|
|
|
|
}
|
|
|
|
|
.overall-status[data-v-b8247e57]:has(.warning) svg,
|
|
|
|
|
.overall-status[data-v-84507135]:has(.warning) svg {
|
|
|
|
|
color: var(--color-orange);
|
2025-06-01 23:32:17 +04:00
|
|
|
}
|
2025-06-12 00:15:20 +04:00
|
|
|
.overall-status[data-v-b8247e57]:has(.danger),
|
|
|
|
|
.overall-status[data-v-84507135]:has(.danger) {
|
2025-06-15 23:19:24 +04:00
|
|
|
border: 1px solid rgba(var(--rgb-color-red), .23);
|
|
|
|
|
background-color: rgba(var(--rgb-color-red), .08);
|
|
|
|
|
}
|
|
|
|
|
.overall-status[data-v-b8247e57]:has(.danger) svg,
|
|
|
|
|
.overall-status[data-v-84507135]:has(.danger) svg {
|
|
|
|
|
color: var(--color-red);
|
2025-06-01 23:32:17 +04:00
|
|
|
}
|
2025-06-12 00:15:20 +04:00
|
|
|
.overall-status[data-v-b8247e57]:has(.status-maintenance),
|
|
|
|
|
.overall-status[data-v-84507135]:has(.status-maintenance) {
|
2025-06-15 23:19:24 +04:00
|
|
|
border: 1px solid rgba(var(--rgb-color-blue), .23);
|
|
|
|
|
background-color: rgba(var(--rgb-color-blue), .08);
|
2025-06-01 23:32:17 +04:00
|
|
|
}
|
2025-06-15 23:19:24 +04:00
|
|
|
.overall-status[data-v-b8247e57]:has(.status-maintenance) svg,
|
|
|
|
|
.overall-status[data-v-84507135]:has(.status-maintenance) svg {
|
|
|
|
|
color: var(--color-blue);
|
2025-01-19 21:55:05 +04:00
|
|
|
}
|
|
|
|
|
|
2025-06-02 23:41:31 +04:00
|
|
|
/* MAINTENANCE BLOCK
|
|
|
|
|
-------------------------------------------------- */
|
|
|
|
|
|
2025-01-19 21:55:05 +04:00
|
|
|
.shadow-box.bg-maintenance {
|
2025-06-15 23:19:24 +04:00
|
|
|
margin: var(--spacing-16) 0 !important;
|
2025-06-01 23:32:17 +04:00
|
|
|
box-shadow: none;
|
2025-06-15 23:19:24 +04:00
|
|
|
border: 1px solid rgba(var(--rgb-color-blue), .23);
|
|
|
|
|
border-radius: var(--border-radius-500);
|
|
|
|
|
background-color: rgba(var(--rgb-color-blue), .08) !important;
|
|
|
|
|
padding: var(--spacing-20) !important;
|
2025-06-02 23:41:31 +04:00
|
|
|
color: var(--color-text-heading) !important;
|
2025-06-01 23:32:17 +04:00
|
|
|
}
|
|
|
|
|
.shadow-box.bg-maintenance .alert-heading {
|
2025-06-02 23:41:31 +04:00
|
|
|
color: var(--color-text-heading);
|
2025-06-15 23:19:24 +04:00
|
|
|
font-weight: var(--font-weight-semibold);
|
|
|
|
|
font-size: var(--font-size-300);
|
2025-06-01 23:32:17 +04:00
|
|
|
}
|
|
|
|
|
.shadow-box.bg-maintenance .content {
|
2025-06-02 23:41:31 +04:00
|
|
|
color: var(--color-text-primary);
|
2025-06-01 23:32:17 +04:00
|
|
|
}
|
2025-06-12 00:15:20 +04:00
|
|
|
.shadow-box.bg-maintenance div[data-v-b8247e57]:not([class]) div:not([class]),
|
|
|
|
|
.shadow-box.bg-maintenance div[data-v-84507135]:not([class]) div:not([class]) {
|
2025-06-01 23:32:17 +04:00
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
2025-06-15 23:19:24 +04:00
|
|
|
gap: 0 var(--spacing-8);
|
|
|
|
|
border-top: 1px solid var(--color-border);
|
|
|
|
|
padding-top: var(--spacing-20);
|
2025-01-19 21:55:05 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.timeslot {
|
2025-06-09 20:06:05 +04:00
|
|
|
margin: 0 !important;
|
2025-06-15 23:19:24 +04:00
|
|
|
border-radius: 0;
|
|
|
|
|
background-color: transparent !important;
|
|
|
|
|
padding: 0;
|
|
|
|
|
color: var(--color-text-primary) !important;
|
2025-06-01 23:32:17 +04:00
|
|
|
}
|
|
|
|
|
|
2025-06-02 23:41:31 +04:00
|
|
|
/* USER MARKDOWN ELEMENTS
|
|
|
|
|
-------------------------------------------------- */
|
|
|
|
|
|
2025-06-01 23:32:17 +04:00
|
|
|
.alert-heading.p-2 {
|
2025-06-15 23:19:24 +04:00
|
|
|
margin-bottom: var(--spacing-32);
|
2025-06-01 23:32:17 +04:00
|
|
|
padding: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
.alert-heading.p-2 p {
|
|
|
|
|
margin: 0;
|
2025-01-19 21:55:05 +04:00
|
|
|
}
|
|
|
|
|
|
2025-06-05 21:36:55 +04:00
|
|
|
/* Link (excluding button) */
|
|
|
|
|
a:not(.btn),
|
|
|
|
|
.dark a:not(.btn) {
|
|
|
|
|
color: inherit;
|
|
|
|
|
}
|
|
|
|
|
a:not(.btn):hover,
|
|
|
|
|
.dark a:not(.btn):hover {
|
|
|
|
|
color: var(--color-blue);
|
|
|
|
|
}
|
|
|
|
|
|
2025-06-02 23:41:31 +04:00
|
|
|
/* PAGE DESCRIPTION
|
|
|
|
|
-------------------------------------------------- */
|
|
|
|
|
|
2025-06-01 23:32:17 +04:00
|
|
|
div > .alert-heading.p-2:has(*) {
|
2025-06-15 23:19:24 +04:00
|
|
|
margin-top: var(--spacing-32);
|
|
|
|
|
box-shadow: var(--shadow-filter);
|
|
|
|
|
border: 1px solid var(--color-border);
|
|
|
|
|
border-radius: var(--border-radius-500);
|
2025-06-02 23:41:31 +04:00
|
|
|
background-color: var(--color-block-bg);
|
2025-06-15 23:19:24 +04:00
|
|
|
padding: var(--spacing-20) !important;
|
2025-01-19 21:55:05 +04:00
|
|
|
}
|
|
|
|
|
|
2025-06-02 23:41:31 +04:00
|
|
|
/* MONITOR GROUP
|
|
|
|
|
-------------------------------------------------- */
|
|
|
|
|
|
2025-06-12 00:15:20 +04:00
|
|
|
div[data-v-f71ca08e]:has(> .group-title),
|
|
|
|
|
div[data-v-026459e0]:has(> .group-title) {
|
2025-06-15 23:19:24 +04:00
|
|
|
margin-bottom: var(--spacing-32) !important;
|
2025-06-01 23:32:17 +04:00
|
|
|
}
|
|
|
|
|
|
2025-06-02 23:41:31 +04:00
|
|
|
/* Monitor group title */
|
2025-01-19 21:55:05 +04:00
|
|
|
.group-title {
|
2025-06-05 21:36:55 +04:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2025-06-15 23:19:24 +04:00
|
|
|
margin-bottom: var(--spacing-16);
|
2025-06-02 23:41:31 +04:00
|
|
|
color: var(--color-text-heading);
|
2025-06-15 23:19:24 +04:00
|
|
|
font-weight: var(--font-weight-semibold);
|
|
|
|
|
font-size: var(--font-size-350);
|
2025-01-19 21:55:05 +04:00
|
|
|
}
|
|
|
|
|
|
2025-06-02 23:41:31 +04:00
|
|
|
/* Monitor elements in the group */
|
2025-01-19 21:55:05 +04:00
|
|
|
.shadow-box.monitor-list {
|
2025-06-01 23:32:17 +04:00
|
|
|
margin-top: 0 !important;
|
|
|
|
|
box-shadow: none;
|
2025-01-19 21:55:05 +04:00
|
|
|
background-color: transparent !important;
|
2025-06-01 23:32:17 +04:00
|
|
|
padding: 0;
|
|
|
|
|
}
|
2025-06-12 14:17:51 +04:00
|
|
|
|
2025-06-01 23:32:17 +04:00
|
|
|
.shadow-box.monitor-list > .monitor-list {
|
|
|
|
|
display: grid;
|
2025-06-12 14:17:51 +04:00
|
|
|
grid-template-columns: minmax(0, 1fr);
|
2025-06-15 23:19:24 +04:00
|
|
|
gap: var(--spacing-16);
|
2025-06-12 14:17:51 +04:00
|
|
|
}
|
|
|
|
|
|
2025-06-15 23:19:24 +04:00
|
|
|
@media (min-width: 532px) {
|
2025-06-12 14:17:51 +04:00
|
|
|
.shadow-box.monitor-list > .monitor-list {
|
|
|
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
2025-01-19 21:55:05 +04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-06-02 23:41:31 +04:00
|
|
|
/* MONITOR ITEM
|
|
|
|
|
-------------------------------------------------- */
|
|
|
|
|
|
2025-06-01 23:32:17 +04:00
|
|
|
.monitor-list .item {
|
2025-06-15 23:19:24 +04:00
|
|
|
box-shadow: var(--shadow-filter);
|
|
|
|
|
border: 1px solid var(--color-border);
|
|
|
|
|
border-radius: var(--border-radius-500);
|
|
|
|
|
background-color: var(--color-block-bg);
|
|
|
|
|
padding: var(--spacing-16) var(--spacing-20) !important;
|
2025-06-01 23:32:17 +04:00
|
|
|
}
|
|
|
|
|
.monitor-list .item:hover {
|
2025-06-15 23:19:24 +04:00
|
|
|
background-color: var(--color-block-bg) !important;
|
2025-06-01 23:32:17 +04:00
|
|
|
}
|
|
|
|
|
.monitor-list .item > .row {
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
.monitor-list .item > .row > div {
|
|
|
|
|
width: 100%;
|
2025-01-19 21:55:05 +04:00
|
|
|
}
|
|
|
|
|
|
2025-06-02 23:41:31 +04:00
|
|
|
/* Monitor name and badge container */
|
2025-01-19 21:55:05 +04:00
|
|
|
.info {
|
|
|
|
|
display: flex;
|
2025-06-05 21:36:55 +04:00
|
|
|
align-items: center;
|
2025-06-15 23:19:24 +04:00
|
|
|
margin-bottom: var(--spacing-8);
|
2025-01-19 21:55:05 +04:00
|
|
|
}
|
|
|
|
|
|
2025-06-02 23:41:31 +04:00
|
|
|
/* Monitor name */
|
2025-06-12 00:15:20 +04:00
|
|
|
.item-name[data-v-f71ca08e],
|
|
|
|
|
.item-name[data-v-026459e0] {
|
2025-06-05 21:36:55 +04:00
|
|
|
padding-left: 0;
|
2025-01-19 21:55:05 +04:00
|
|
|
overflow: hidden;
|
2025-06-02 23:41:31 +04:00
|
|
|
color: var(--color-text-heading);
|
2025-06-15 23:19:24 +04:00
|
|
|
font-weight: var(--font-weight-semibold);
|
2025-01-19 21:55:05 +04:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
|
2025-06-02 23:41:31 +04:00
|
|
|
/* Uptime percentage badge (now just text) */
|
2025-01-19 21:55:05 +04:00
|
|
|
.badge {
|
|
|
|
|
all: unset;
|
|
|
|
|
order: 2;
|
2025-06-05 21:36:55 +04:00
|
|
|
margin-left: auto;
|
2025-01-19 21:55:05 +04:00
|
|
|
background-color: transparent !important;
|
2025-06-15 23:19:24 +04:00
|
|
|
color: var(--color-text-primary) !important;
|
2025-01-19 21:55:05 +04:00
|
|
|
}
|
|
|
|
|
|
2025-06-02 23:41:31 +04:00
|
|
|
/* Extra vertical indentation */
|
2025-06-12 00:15:20 +04:00
|
|
|
.extra-info[data-v-f71ca08e],
|
|
|
|
|
.extra-info[data-v-026459e0] {
|
2025-06-01 23:32:17 +04:00
|
|
|
display: none;
|
2025-01-19 21:55:05 +04:00
|
|
|
}
|
|
|
|
|
|
2025-06-02 23:41:31 +04:00
|
|
|
/* Wrapper for the uptime history timeline and daily uptime text */
|
2025-01-19 21:55:05 +04:00
|
|
|
.wrap {
|
2025-06-01 23:32:17 +04:00
|
|
|
padding: 0 !important;
|
|
|
|
|
}
|
2025-01-19 21:55:05 +04:00
|
|
|
|
2025-06-02 23:41:31 +04:00
|
|
|
/* Uptime history timeline */
|
2025-06-01 23:32:17 +04:00
|
|
|
.hp-bar-big {
|
|
|
|
|
display: flex;
|
2025-06-15 23:19:24 +04:00
|
|
|
margin-bottom: 6px;
|
|
|
|
|
padding: 0;
|
2025-06-01 23:32:17 +04:00
|
|
|
}
|
|
|
|
|
.mobile .hp-bar-big {
|
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
}
|
2025-01-19 21:55:05 +04:00
|
|
|
|
2025-06-15 23:19:24 +04:00
|
|
|
/* Uptime day bar in the uptime history timeline */
|
2025-06-12 00:15:20 +04:00
|
|
|
.hp-bar-big .beat[data-v-636dc6a9],
|
|
|
|
|
.hp-bar-big .beat-hover-area .beat[data-v-3fe48e5d] {
|
2025-06-15 23:19:24 +04:00
|
|
|
border-radius: 0;
|
2025-06-01 23:32:17 +04:00
|
|
|
background-color: var(--color-green);
|
2025-06-15 23:19:24 +04:00
|
|
|
width: 100% !important;
|
|
|
|
|
height: var(--size-uptime-day-bar-height) !important;
|
|
|
|
|
}
|
|
|
|
|
.hp-bar-big .beat[data-v-636dc6a9] {
|
|
|
|
|
flex: 1;
|
|
|
|
|
margin: 0 1px 0 0 !important;
|
|
|
|
|
}
|
|
|
|
|
.hp-bar-big .beat-hover-area[data-v-3fe48e5d] {
|
|
|
|
|
flex: 1;
|
|
|
|
|
padding: 0 1px 0 0 !important;
|
2025-06-01 23:32:17 +04:00
|
|
|
}
|
2025-06-12 00:15:20 +04:00
|
|
|
.hp-bar-big .beat[data-v-636dc6a9]:not(.empty):hover,
|
|
|
|
|
.hp-bar-big .beat-hover-area[data-v-3fe48e5d]:not(.empty):hover {
|
2025-06-01 23:32:17 +04:00
|
|
|
transform: none;
|
2025-06-09 20:06:05 +04:00
|
|
|
opacity: .7;
|
2025-06-01 23:32:17 +04:00
|
|
|
}
|
2025-06-12 00:15:20 +04:00
|
|
|
.hp-bar-big .beat[data-v-636dc6a9]:first-of-type,
|
2025-06-15 23:19:24 +04:00
|
|
|
.hp-bar-big .beat-hover-area:first-of-type .beat[data-v-3fe48e5d] {
|
|
|
|
|
border-top-left-radius: var(--border-radius-200);
|
|
|
|
|
border-bottom-left-radius: var(--border-radius-200);
|
2025-06-01 23:32:17 +04:00
|
|
|
}
|
2025-06-12 00:15:20 +04:00
|
|
|
.hp-bar-big .beat[data-v-636dc6a9]:last-of-type,
|
2025-06-15 23:19:24 +04:00
|
|
|
.hp-bar-big .beat-hover-area:last-of-type .beat[data-v-3fe48e5d] {
|
|
|
|
|
margin: 0 !important;
|
|
|
|
|
border-top-right-radius: var(--border-radius-200);
|
|
|
|
|
border-bottom-right-radius: var(--border-radius-200);
|
|
|
|
|
padding: 0 !important;
|
2025-06-01 23:32:17 +04:00
|
|
|
}
|
2025-06-12 00:15:20 +04:00
|
|
|
.hp-bar-big .beat[data-v-636dc6a9].empty,
|
|
|
|
|
.hp-bar-big .beat-hover-area .beat[data-v-3fe48e5d].empty {
|
2025-06-15 23:19:24 +04:00
|
|
|
background-color: var(--color-gray) !important;
|
2025-06-01 23:32:17 +04:00
|
|
|
}
|
2025-06-12 00:15:20 +04:00
|
|
|
.hp-bar-big .beat[data-v-636dc6a9].down,
|
|
|
|
|
.hp-bar-big .beat-hover-area .beat[data-v-3fe48e5d].down {
|
2025-06-01 23:32:17 +04:00
|
|
|
background-color: var(--color-red);
|
|
|
|
|
}
|
2025-06-12 00:15:20 +04:00
|
|
|
.hp-bar-big .beat[data-v-636dc6a9].pending,
|
|
|
|
|
.hp-bar-big .beat-hover-area .beat[data-v-3fe48e5d].pending {
|
2025-06-01 23:32:17 +04:00
|
|
|
background-color: var(--color-orange);
|
|
|
|
|
}
|
2025-06-12 00:15:20 +04:00
|
|
|
.hp-bar-big .beat[data-v-636dc6a9].maintenance,
|
|
|
|
|
.hp-bar-big .beat-hover-area .beat[data-v-3fe48e5d].maintenance {
|
2025-06-01 23:32:17 +04:00
|
|
|
background-color: var(--color-blue);
|
|
|
|
|
}
|
2025-01-19 21:55:05 +04:00
|
|
|
|
2025-06-02 23:41:31 +04:00
|
|
|
/* Daily uptime text (below day bars) */
|
2025-06-12 00:15:20 +04:00
|
|
|
.word[data-v-636dc6a9],
|
|
|
|
|
.word[data-v-3fe48e5d] {
|
2025-06-02 23:41:31 +04:00
|
|
|
color: var(--color-text-primary);
|
2025-01-19 21:55:05 +04:00
|
|
|
}
|
|
|
|
|
|
2025-06-02 23:41:31 +04:00
|
|
|
/* FOOTER
|
|
|
|
|
-------------------------------------------------- */
|
|
|
|
|
|
|
|
|
|
/* User markdown, Uptime Kuma branding, refresh timer */
|
2025-06-12 00:15:20 +04:00
|
|
|
footer[data-v-b8247e57],
|
|
|
|
|
footer[data-v-84507135] {
|
2025-06-15 23:19:24 +04:00
|
|
|
margin: var(--spacing-32) 0 !important;
|
2025-06-01 23:32:17 +04:00
|
|
|
color: var(--color-text-secondary);
|
2025-01-19 21:55:05 +04:00
|
|
|
}
|
|
|
|
|
|
2025-06-02 23:41:31 +04:00
|
|
|
/* Extra spacing if the user footer has anything */
|
2025-06-01 23:32:17 +04:00
|
|
|
footer .alert-heading.p-2:has(*) {
|
2025-06-15 23:19:24 +04:00
|
|
|
margin-bottom: var(--spacing-16) !important;
|
2025-01-19 21:55:05 +04:00
|
|
|
}
|
|
|
|
|
|
2025-06-02 23:41:31 +04:00
|
|
|
/* Refresh timer */
|
|
|
|
|
/* Remove/comment "display: none" to restore visibility */
|
2025-06-12 00:15:20 +04:00
|
|
|
.refresh-info[data-v-b8247e57],
|
|
|
|
|
.refresh-info[data-v-84507135]{
|
2025-01-19 21:55:05 +04:00
|
|
|
display: none;
|
2025-06-01 23:32:17 +04:00
|
|
|
opacity: 1;
|
|
|
|
|
margin-bottom: 0 !important;
|
2025-01-19 21:55:05 +04:00
|
|
|
}
|
2025-06-05 21:36:55 +04:00
|
|
|
|
|
|
|
|
/* EDIT WINDOW
|
|
|
|
|
-------------------------------------------------- */
|
|
|
|
|
|
|
|
|
|
.container:has(.edit) {
|
|
|
|
|
max-width: var(--size-edit-container-width);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Input field for the monitor group name */
|
2025-06-12 00:15:20 +04:00
|
|
|
.edit span[data-v-7d4a7f28][data-v-f71ca08e],
|
|
|
|
|
.edit span[data-v-7d4a7f28][data-v-026459e0] {
|
2025-06-15 23:19:24 +04:00
|
|
|
background-color: var(--color-input-bg);
|
|
|
|
|
padding: var(--spacing-4) var(--spacing-8);
|
2025-06-05 21:36:55 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Input field for page description and footer */
|
2025-06-09 20:06:05 +04:00
|
|
|
.edit h4[data-v-7d4a7f28][data-v-b8247e57][contenteditable="true"],
|
2025-06-12 00:15:20 +04:00
|
|
|
.edit h4[data-v-7d4a7f28][data-v-84507135][contenteditable="true"],
|
|
|
|
|
.edit div[data-v-7d4a7f28][data-v-b8247e57],
|
|
|
|
|
.edit div[data-v-7d4a7f28][data-v-84507135] {
|
2025-06-15 23:19:24 +04:00
|
|
|
background-color: var(--color-input-bg);
|
|
|
|
|
padding: var(--spacing-16) var(--spacing-20) !important;
|
2025-06-05 21:36:55 +04:00
|
|
|
color: var(--color-text-heading);
|
|
|
|
|
}
|