mprovements into the server view

This commit is contained in:
2026-01-04 20:58:11 +01:00
parent 73529ae34a
commit f84eb6d149
9 changed files with 249 additions and 51 deletions

View File

@@ -9048,7 +9048,7 @@ body[data-background-color="dark2"] .main-panel h5,
body[data-background-color="dark2"] .main-panel h6,
body[data-background-color="dark2"] .main-panel label,
body[data-background-color="dark2"] .main-panel .badge-count {
color: #ebdbb2 !important;
color: #ebdbb2;
}
body[data-background-color="dark"] .card:not(.card-primary,

View File

@@ -9048,7 +9048,7 @@ body[data-background-color="dark2"] .main-panel h5,
body[data-background-color="dark2"] .main-panel h6,
body[data-background-color="dark2"] .main-panel label,
body[data-background-color="dark2"] .main-panel .badge-count {
color: #ebdbb2 !important;
color: #ebdbb2;
}
body[data-background-color="dark"] .card:not(.card-primary,
@@ -9540,7 +9540,7 @@ body[data-background-color="dark"] .jvm-zoom-btn, body[data-background-color="da
}
.bg-primary2 {
background-color: #83a598 !important;
background-color: #076678 !important;
}
.bg-secondary {
@@ -9556,7 +9556,7 @@ body[data-background-color="dark"] .jvm-zoom-btn, body[data-background-color="da
}
.bg-info2 {
background-color: #3697E1 !important;
background-color: #83a598 !important;
}
.bg-success {

141
pub/src/css/prism.css Normal file
View File

@@ -0,0 +1,141 @@
/**
* prism.js default theme for JavaScript, CSS and HTML
* Based on dabblet (http://dabblet.com)
* @author Lea Verou
*/
code[class*="language-"],
pre[class*="language-"] {
color: black;
background: none;
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
font-size: 1em;
text-align: left;
white-space: pre-wrap;
word-spacing: normal;
word-break: normal;
word-wrap: normal;
line-height: 1.5;
-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;
-webkit-hyphens: none;
-moz-hyphens: none;
-ms-hyphens: none;
hyphens: none;
}
pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
text-shadow: none;
background: #b3d4fc;
}
pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
code[class*="language-"]::selection, code[class*="language-"] ::selection {
text-shadow: none;
background: #b3d4fc;
}
@media print {
code[class*="language-"],
pre[class*="language-"] {
text-shadow: none;
}
}
/* Code blocks */
pre[class*="language-"] {
padding: 1em;
margin: .5em 0;
overflow: auto;
}
:not(pre) > code[class*="language-"],
pre[class*="language-"] {
background: #f5f2f0;
}
/* Inline code */
:not(pre) > code[class*="language-"] {
padding: .1em;
border-radius: .3em;
white-space: normal;
}
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
color: slategray;
}
.token.punctuation {
color: #fbf1c7;
}
.token.namespace {
opacity: .7;
}
.token.property,
.token.tag,
.token.boolean,
.token.constant,
.token.symbol,
.token.deleted {
color: #fe8019;
}
.token.number {
color: #fb4934;
}
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
color: #8ec07c;
}
.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
color: #9a6e3a;
}
.token.atrule,
.token.attr-value,
.token.keyword {
color: #458588;
}
.token.function,
.token.class-name {
color: #d3869b;
}
.token.regex,
.token.important,
.token.variable {
color: #d79921;
}
.token.important,
.token.bold {
font-weight: bold;
}
.token.italic {
font-style: italic;
}
.token.entity {
cursor: help;
}