summaryrefslogtreecommitdiff
path: root/src/main/resources/static/style.css
diff options
context:
space:
mode:
authorPaul-Christian Volkmer2024-01-18 14:13:15 +0100
committerPaul-Christian Volkmer2024-01-18 14:13:15 +0100
commit30cf0fd22e492fd2b0052ddfd5b808da51b36052 (patch)
tree5745f1a2be493e9149cc986833d904bd62e01bfc /src/main/resources/static/style.css
parent531a8589db2bf170e6272602ccb4a3c4457186d8 (diff)
feat #29: add initial support for mtbfile api tokens
Diffstat (limited to 'src/main/resources/static/style.css')
-rw-r--r--src/main/resources/static/style.css24
1 files changed, 22 insertions, 2 deletions
diff --git a/src/main/resources/static/style.css b/src/main/resources/static/style.css
index e2bf65a..3249aad 100644
--- a/src/main/resources/static/style.css
+++ b/src/main/resources/static/style.css
@@ -202,13 +202,15 @@ form.samplecode-input input:focus-visible {
background: none;
}
-.login-form form * {
+.login-form form *,
+.token-form form * {
padding: 0.5em;
border: 1px solid var(--table-border);
border-radius: 3px;
}
-.login-form button {
+.login-form button,
+.token-form button {
margin: 1em 0;
background: var(--bg-blue);
color: white;
@@ -535,4 +537,22 @@ a.reload {
font-size: .6em;
align-content: center;
justify-content: center;
+}
+
+.new-token {
+ padding: 1em;
+ background: var(--bg-green-op);
+}
+
+.new-token > pre {
+ margin: 0;
+ border: 1px solid var(--bg-green);
+ padding: .5em;
+ width: max-content;
+ display: inline-block;
+}
+
+.no-token {
+ padding: 1em;
+ background: var(--bg-red-op);
} \ No newline at end of file