diff options
author | silverwind <me@silverwind.io> | 2023-06-22 03:59:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-21 21:59:49 -0400 |
commit | 656d3cc71973c547b574866e30e5f3da5327ce25 (patch) | |
tree | 1572fc6ee19650b148a899e87b579dd63c3c5664 /web_src/css/base.css | |
parent | 8afc1b1cb5ad44ab5dd9597a814b19412702ede3 (diff) | |
download | gitea-656d3cc71973c547b574866e30e5f3da5327ce25.tar.gz gitea-656d3cc71973c547b574866e30e5f3da5327ce25.zip |
Various UI fixes (#25264)
Numerous small UI fixes:
- Fix double border in collaborator list
- Fix system notice table background
- Mute links in repo and org lists
- Downsize projects edit buttons
- Improve milestones and project list rendering
- Condense milestone list entry to a single line of "metas"
- Mute ".." button in repo files list
Diffstat (limited to 'web_src/css/base.css')
-rw-r--r-- | web_src/css/base.css | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/web_src/css/base.css b/web_src/css/base.css index 78bcd4f1c4..2393040396 100644 --- a/web_src/css/base.css +++ b/web_src/css/base.css @@ -869,6 +869,13 @@ a.label, border-color: var(--color-secondary); } +.ui.table > tfoot > tr > th, +.ui.table > tfoot > tr > td { + border-color: var(--color-secondary); + background: var(--color-box-body); + color: var(--color-text); +} + img.ui.avatar, .ui.avatar img, .ui.avatar svg { |