From 0aec5e44794d6458ee9b8d7b086922aec89aefeb Mon Sep 17 00:00:00 2001 From: Paul-Christian Volkmer Date: Mon, 4 Mar 2024 17:03:41 +0100 Subject: style: fixed first column width --- src/main/resources/static/style.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'src/main/resources/static/style.css') diff --git a/src/main/resources/static/style.css b/src/main/resources/static/style.css index 82b4d19..81c61eb 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; -- cgit v1.2.3 From 4bfe7dc69861c47b752f1f6d415f504d5518a03d Mon Sep 17 00:00:00 2001 From: Paul-Christian Volkmer Date: Tue, 5 Mar 2024 10:24:25 +0100 Subject: style: layout and style changes for config page --- src/main/resources/static/style.css | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'src/main/resources/static/style.css') diff --git a/src/main/resources/static/style.css b/src/main/resources/static/style.css index 81c61eb..1dd68ed 100644 --- a/src/main/resources/static/style.css +++ b/src/main/resources/static/style.css @@ -631,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; -- cgit v1.2.3