2025-03-16 11:12:49 +01:00
|
|
|
:root {
|
|
|
|
|
--font-family: "Noto Sans",Helvetica,Arial,sans-serif;
|
|
|
|
|
--font-family--header: "Noto Sans Light",Helvetica,Arial,sans-serif;
|
|
|
|
|
--card-background: #f7f7f8;
|
|
|
|
|
--navbar-background: #f3f4f6;
|
2025-03-26 17:44:20 +01:00
|
|
|
--pankow-text-color: black;
|
2025-03-16 11:12:49 +01:00
|
|
|
}
|
2025-01-17 12:24:48 +01:00
|
|
|
|
2025-03-16 11:12:49 +01:00
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
|
:root {
|
|
|
|
|
--card-background: #15181f;
|
|
|
|
|
--navbar-background: #11161f;
|
|
|
|
|
--pankow-dialog-background-color: var(--navbar-background);
|
|
|
|
|
--pankow-color-background: var(--navbar-background);
|
|
|
|
|
--pankow-text-color: white;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
html, body {
|
2025-04-16 10:45:17 +02:00
|
|
|
font-size: 15px; /* this also defines the overall widget size as all sizes are in rem */
|
2025-03-16 11:12:49 +01:00
|
|
|
font-family: var(--font-family);
|
2024-12-14 20:28:34 +01:00
|
|
|
font-weight: 300;
|
2023-02-19 17:13:33 +01:00
|
|
|
height: 100%;
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 0;
|
2023-02-22 16:20:07 +01:00
|
|
|
margin: 0;
|
2024-06-13 12:19:03 +02:00
|
|
|
color: var(--pankow-text-color);
|
2025-03-25 15:05:08 +01:00
|
|
|
background-color: white;
|
|
|
|
|
background-position: center;
|
|
|
|
|
background-size: cover;
|
2023-02-19 17:13:33 +01:00
|
|
|
}
|
|
|
|
|
|
2024-10-18 18:33:38 +02:00
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
|
body {
|
|
|
|
|
background-color: black;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-05-12 15:02:28 +02:00
|
|
|
b {
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
}
|
|
|
|
|
|
2023-02-23 13:16:21 +01:00
|
|
|
.shadow {
|
|
|
|
|
box-shadow: 0 2px 5px rgba(0,0,0,.1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#app {
|
|
|
|
|
height: 100%;
|
2023-02-27 00:33:07 +01:00
|
|
|
}
|
2024-12-14 20:28:34 +01:00
|
|
|
|
2025-03-16 11:12:49 +01:00
|
|
|
h1, h2, h3, h4, h5 {
|
|
|
|
|
font-family: var(--font-family--header);
|
2024-12-14 20:28:34 +01:00
|
|
|
font-weight: 400;
|
2025-03-16 11:12:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h2 {
|
2025-01-14 15:52:12 +01:00
|
|
|
font-size: 24px;
|
2024-12-14 20:28:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
color: var(--pankow-color-primary);
|
|
|
|
|
}
|
2024-12-14 21:17:51 +01:00
|
|
|
|
2025-03-16 11:12:49 +01:00
|
|
|
fieldset {
|
|
|
|
|
border: none;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
hr {
|
|
|
|
|
border: 0;
|
|
|
|
|
border-top: 1px solid rgb(238.425,238.425,238.425);
|
|
|
|
|
}
|
|
|
|
|
|
2025-01-16 17:31:36 +01:00
|
|
|
.content {
|
|
|
|
|
max-width: 1280px;
|
|
|
|
|
width: 100%;
|
2025-03-26 18:36:04 +01:00
|
|
|
position: absolute;
|
2025-01-16 17:31:36 +01:00
|
|
|
}
|
|
|
|
|
|
2025-01-16 12:24:15 +01:00
|
|
|
.header {
|
|
|
|
|
margin-top: 50px;
|
2025-01-16 15:04:53 +01:00
|
|
|
padding-left: 15px;
|
|
|
|
|
padding-right: 15px;
|
2025-01-16 12:24:15 +01:00
|
|
|
}
|
|
|
|
|
|
2025-01-15 12:31:35 +01:00
|
|
|
.header-with-button {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
2025-01-15 16:32:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.slide-left-enter-active,
|
|
|
|
|
.slide-left-leave-active {
|
|
|
|
|
transition: all 0.25s ease-out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.slide-left-enter-from {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transform: translateY(30px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.slide-left-leave-to {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
2025-01-17 15:08:29 +01:00
|
|
|
|
2025-05-28 16:55:25 +02:00
|
|
|
a.pankow-breadcrumb-item {
|
|
|
|
|
color: var(--pankow-text-color);
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
2025-05-07 12:23:05 +02:00
|
|
|
.pankow-checkbox {
|
|
|
|
|
margin: 8px 0;
|
|
|
|
|
}
|
|
|
|
|
|
2025-01-17 15:08:29 +01:00
|
|
|
.pankow-table-header-column {
|
|
|
|
|
border-bottom-color: transparent;
|
|
|
|
|
}
|
2025-01-17 15:59:01 +01:00
|
|
|
|
|
|
|
|
.table-actions {
|
2025-02-16 15:56:33 +01:00
|
|
|
display: flex;
|
|
|
|
|
justify-content: end;
|
|
|
|
|
gap: 6px;
|
2025-02-11 21:02:30 +01:00
|
|
|
/* those margins will give table rows in Pankow TableViews some more space */
|
|
|
|
|
margin-top: 4px;
|
|
|
|
|
margin-bottom: 4px;
|
2025-01-17 15:59:01 +01:00
|
|
|
text-align: right;
|
|
|
|
|
visibility: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
2025-03-09 21:04:24 +01:00
|
|
|
@media (hover: none) {
|
|
|
|
|
tr .table-actions {
|
|
|
|
|
visibility: visible;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-01-17 15:59:01 +01:00
|
|
|
tr:hover .table-actions {
|
|
|
|
|
visibility: visible;
|
|
|
|
|
}
|
2025-01-19 19:12:00 +01:00
|
|
|
|
|
|
|
|
/* status classes for circle indicators */
|
|
|
|
|
.status-active {
|
2025-03-24 16:58:29 +01:00
|
|
|
color: #27CE65;
|
2025-01-19 19:12:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.status-inactive {
|
2025-03-24 16:58:29 +01:00
|
|
|
color: #7c7c7c;
|
2025-01-19 19:12:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.status-starting {
|
2025-03-24 16:58:29 +01:00
|
|
|
color: #f0ad4e;
|
2025-01-19 19:12:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.status-error {
|
2025-03-24 16:58:29 +01:00
|
|
|
color: #ec534f;
|
2025-01-19 19:12:00 +01:00
|
|
|
}
|
|
|
|
|
|
2025-03-24 16:58:29 +01:00
|
|
|
/* generic text modifiers */
|
2025-01-19 19:12:00 +01:00
|
|
|
.text-success {
|
|
|
|
|
color: #5CB85C;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.text-warning {
|
|
|
|
|
color: #8a6d3b;
|
|
|
|
|
}
|
|
|
|
|
|
2025-03-24 16:58:29 +01:00
|
|
|
.text-danger {
|
|
|
|
|
color: var(--pankow-color-danger);
|
|
|
|
|
}
|
|
|
|
|
|
2025-01-19 19:12:00 +01:00
|
|
|
.text-bold {
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.text-small {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
}
|
2025-01-19 19:53:29 +01:00
|
|
|
|
2025-04-24 20:49:40 +02:00
|
|
|
.text-muted {
|
|
|
|
|
opacity: 0.5;
|
|
|
|
|
}
|
|
|
|
|
|
2025-04-24 20:17:37 +02:00
|
|
|
.warning-label {
|
|
|
|
|
margin-top: 6px;
|
|
|
|
|
color: #8a6d3b;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
2025-04-24 20:42:52 +02:00
|
|
|
.error-label {
|
|
|
|
|
margin-top: 6px;
|
|
|
|
|
color: var(--pankow-color-danger);
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
2025-03-23 17:16:50 +01:00
|
|
|
.view-header {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
|
|
|
|
margin: 0;
|
|
|
|
|
margin-right: 10px;
|
2025-03-27 09:43:58 +01:00
|
|
|
margin-left: 10px;
|
2025-03-23 17:16:50 +01:00
|
|
|
margin-bottom: 10px;
|
|
|
|
|
gap: 5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.view-header > div {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 6px;
|
2025-02-16 15:56:33 +01:00
|
|
|
}
|
|
|
|
|
|
2025-03-07 10:28:49 +01:00
|
|
|
.button-bar {
|
2025-03-03 11:34:45 +01:00
|
|
|
display: flex;
|
2025-03-07 10:28:49 +01:00
|
|
|
gap: 6px;
|
|
|
|
|
/* flex-direction: row-reverse;*/
|
2025-03-17 18:21:27 +01:00
|
|
|
margin-top: 6px;
|
2025-03-03 11:34:45 +01:00
|
|
|
}
|
|
|
|
|
|
2025-01-19 19:53:29 +01:00
|
|
|
/* info table label:value in Sections */
|
|
|
|
|
.info-row {
|
|
|
|
|
display: flex;
|
2025-01-24 18:28:45 +01:00
|
|
|
margin-bottom: 10px;
|
2025-01-20 16:53:31 +01:00
|
|
|
}
|
|
|
|
|
|
2025-01-19 19:53:29 +01:00
|
|
|
.info-label {
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
flex-basis: 50%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.info-value {
|
|
|
|
|
flex-basis: 50%;
|
|
|
|
|
text-align: right;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-wrap: nowrap;
|
2025-01-23 16:19:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.actionable {
|
|
|
|
|
cursor: pointer;
|
2025-01-29 12:15:53 +01:00
|
|
|
color: var(--pankow-color-primary);
|
2025-01-23 16:19:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.actionable:hover {
|
2025-01-29 12:15:53 +01:00
|
|
|
color: var(--pankow-color-primary-hover);
|
2025-01-23 16:19:23 +01:00
|
|
|
}
|
2025-03-14 18:48:13 +01:00
|
|
|
|
2025-04-19 11:53:42 +02:00
|
|
|
.collapse {
|
|
|
|
|
transition: transform 200ms linear;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.collapse.expanded {
|
|
|
|
|
transform: rotate(90deg);
|
|
|
|
|
}
|
|
|
|
|
|
2025-03-14 18:48:13 +01:00
|
|
|
fieldset > * {
|
|
|
|
|
margin: 6px 0;
|
2025-03-31 22:28:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Animations */
|
|
|
|
|
.slide-fade-enter-active {
|
|
|
|
|
transition: all 0.2s ease-out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.slide-fade-leave-active {
|
|
|
|
|
transition: all 0.2s cubic-bezier(1, 0.5, 0.8, 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.slide-fade-enter-from,
|
|
|
|
|
.slide-fade-leave-to {
|
|
|
|
|
transform: translateX(20px);
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
2025-04-07 17:05:57 +02:00
|
|
|
|
|
|
|
|
.slide-up-enter-active,
|
|
|
|
|
.slide-up-leave-active {
|
|
|
|
|
transition: all 0.15s ease-in-out;
|
|
|
|
|
}
|
|
|
|
|
.slide-up-enter-from {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transform: translateY(30px);
|
|
|
|
|
}
|
|
|
|
|
.slide-up-leave-to {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transform: translateY(-30px);
|
|
|
|
|
}
|