diff options
| author | winter | 2025-05-11 20:25:11 +0100 |
|---|---|---|
| committer | winter | 2025-05-11 20:25:11 +0100 |
| commit | 07d1f1236c11b4261ab2b954a91278711a24901c (patch) | |
| tree | dc52072e468ec6a5980cbe6894459e8623441025 /static/misc.css | |
| parent | 5d7a4605bd0bd71949a37139eccfbf8a70d0c32e (diff) | |
sql console in admin menu + other misc
Diffstat (limited to 'static/misc.css')
| -rw-r--r-- | static/misc.css | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/static/misc.css b/static/misc.css index 8b619b9..7793ce0 100644 --- a/static/misc.css +++ b/static/misc.css @@ -183,6 +183,25 @@ details[open] > summary::before { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 19v-2h6.6L4 5.4L5.4 4L17 15.6V9h2v10z'/%3E%3C/svg%3E"); } +table { + border-collapse: collapse; + td, + th { + border: var(--border); + margin: 0; + padding: var(--spacing-single); + } + th { + background-color: var(--clr-secondary); + color: var(--clr-foreground-on-secondary); + } +} + +.tableContainer { + width: 100%; + overflow-x: auto; +} + .indentedContainer { display: block; margin: 0 var(--spacing-double); |
