diff options
| author | Jake Mannens <jake@asger.xyz> | 2023-08-30 01:12:27 +1000 |
|---|---|---|
| committer | Jake Mannens <jake@asger.xyz> | 2023-08-30 01:15:43 +1000 |
| commit | 78fa94a78958d976127555d64f2758c56f399fea (patch) | |
| tree | 74b95b4cd00a5f7674862902526a72f34abcc258 /wwwroot/styles | |
| parent | 35e98d66a2b2f3cff2a9a9b9905cba270b6c6cc3 (diff) | |
Made tag names in TagDefinitions clickable
Diffstat (limited to 'wwwroot/styles')
| -rw-r--r-- | wwwroot/styles/data-table.css | 2 | ||||
| -rw-r--r-- | wwwroot/styles/global.css | 13 |
2 files changed, 14 insertions, 1 deletions
diff --git a/wwwroot/styles/data-table.css b/wwwroot/styles/data-table.css index 6256fc7..994d625 100644 --- a/wwwroot/styles/data-table.css +++ b/wwwroot/styles/data-table.css @@ -13,7 +13,7 @@ table.data-table > tr > td { } table.data-table > tr:nth-child(2n) { - background: rgba(255, 255, 255, 0.2); + background: rgba(255, 255, 255, 0.1); } table.data-table > tr > td:not(:last-child) { diff --git a/wwwroot/styles/global.css b/wwwroot/styles/global.css index de0a0ac..c0dbe3f 100644 --- a/wwwroot/styles/global.css +++ b/wwwroot/styles/global.css @@ -46,6 +46,19 @@ a:hover { filter: brightness(1.5); } +a::selection { + background: var(--col-accent-pri); + color: #fff; +} + +a.nondecorated { + color: #fff; +} + +a.nondecorated:hover { + color: #999; +} + button, input[type=submit] { color: white; background: var(--col-button-pri); |
