diff options
| author | Paul-Christian Volkmer | 2024-03-05 10:24:25 +0100 |
|---|---|---|
| committer | Paul-Christian Volkmer | 2024-03-05 10:24:25 +0100 |
| commit | 4bfe7dc69861c47b752f1f6d415f504d5518a03d (patch) | |
| tree | 60369bf8c4cd718fc127a1aa31e7edfffb7a3ab9 /src/main/resources/static/style.css | |
| parent | 0aec5e44794d6458ee9b8d7b086922aec89aefeb (diff) | |
style: layout and style changes for config page
Diffstat (limited to 'src/main/resources/static/style.css')
| -rw-r--r-- | src/main/resources/static/style.css | 26 |
1 files changed, 26 insertions, 0 deletions
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; |
