summaryrefslogtreecommitdiff
path: root/src/main/resources/static
diff options
context:
space:
mode:
authorPaul-Christian Volkmer2024-03-05 10:27:27 +0100
committerGitHub2024-03-05 10:27:27 +0100
commit69d796dab46cf17069057ed2177174200039135e (patch)
tree60369bf8c4cd718fc127a1aa31e7edfffb7a3ab9 /src/main/resources/static
parentb1a83510a67496b1d3a6874e345f292815995468 (diff)
parent4bfe7dc69861c47b752f1f6d415f504d5518a03d (diff)
Merge pull request #52 from CCC-MF/issue_51
Darstellung und Aufteilung der Konfigurationsseite verbessern
Diffstat (limited to 'src/main/resources/static')
-rw-r--r--src/main/resources/static/style.css39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/main/resources/static/style.css b/src/main/resources/static/style.css
index 82b4d19..1dd68ed 100644
--- a/src/main/resources/static/style.css
+++ b/src/main/resources/static/style.css
@@ -257,6 +257,10 @@ form.samplecode-input input:focus-visible {
display: block;
}
+.userrole-form {
+ display: inline-block;
+}
+
.userrole-form form {
margin: 0;
padding: 0;
@@ -321,6 +325,15 @@ table {
font-family: sans-serif;
}
+table.config-table td:first-child {
+ width: 24em;
+ min-width: fit-content;
+}
+
+table.config-table td > button:last-of-type {
+ float: right;
+}
+
.border > table {
padding: 0;
border: none;
@@ -618,6 +631,32 @@ input.inline:focus-visible {
color: var(--bg-red);
}
+.tab {
+ padding: 1em;
+ border: none;
+ border-radius: 3px 3px 0 0;
+ cursor: pointer;
+ transition: all 0.2s;
+
+ font-weight: bold;
+}
+
+.tab:hover,
+.tab.active {
+ background: var(--table-border);
+}
+
+.tabcontent {
+ border: 1px solid var(--table-border);
+ border-radius: 0 .5em .5em .5em;
+ display: none;
+ padding: 1em;
+}
+
+.tabcontent.active {
+ display: block;
+}
+
a.reload {
display: none;
position: absolute;