summaryrefslogtreecommitdiff
path: root/src/main/resources/static
diff options
context:
space:
mode:
authorPaul-Christian Volkmer2024-03-01 14:09:06 +0100
committerGitHub2024-03-01 14:09:06 +0100
commit5928d52237cd5935fb751b3f667617e84b5bbae2 (patch)
tree9ab899a2581ebd037320a7c951db1711392e129c /src/main/resources/static
parent0b6decf88d9084616874d65827e7eb1e8050d1c5 (diff)
parent1eb40b40c99b4aed31da983332e8b44275c19dd9 (diff)
Merge pull request #48 from CCC-MF/issue_36
Freigabe und Berechtigung für OIDC-Benutzer
Diffstat (limited to 'src/main/resources/static')
-rw-r--r--src/main/resources/static/style.css26
1 files changed, 25 insertions, 1 deletions
diff --git a/src/main/resources/static/style.css b/src/main/resources/static/style.css
index c7a0b38..0dd5820 100644
--- a/src/main/resources/static/style.css
+++ b/src/main/resources/static/style.css
@@ -202,6 +202,17 @@ form.samplecode-input input:focus-visible {
background: none;
}
+.userrole-form form {
+ margin: 0;
+ padding: 0;
+
+ border: none;
+ border-radius: 0;
+ background: none;
+
+ text-align: inherit;
+}
+
.login-form form *,
.token-form form * {
padding: 0.5em;
@@ -210,7 +221,8 @@ form.samplecode-input input:focus-visible {
}
.login-form form hr,
-.token-form form hr {
+.token-form form hr,
+.userrole-form form hr {
padding: 0;
width: 100%;
}
@@ -224,6 +236,14 @@ form.samplecode-input input:focus-visible {
border: none;
}
+.userrole-form form select {
+ padding: 0.5em;
+ border: none;
+ border-radius: 3px;
+ line-height: 1.2rem;
+ font-size: 0.8rem;
+}
+
.border {
padding: 1.5em;
border: 1px solid var(--table-border);
@@ -527,6 +547,10 @@ input.inline:focus-visible {
color: var(--bg-green);
}
+.notification.notice {
+ color: var(--bg-yellow);
+}
+
.notification.error {
color: var(--bg-red);
}