diff options
author | silverwind <me@silverwind.io> | 2020-12-17 20:58:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-17 19:58:21 +0000 |
commit | 3260e156682ea69fcf1f7441abd8d2483aab1d32 (patch) | |
tree | 1dd952dc5a34f99db7a2474678a507f3a1f80761 /web_src/less/helpers.less | |
parent | 8af9df00360a812d31281179f4c6e095959e487e (diff) | |
download | gitea-3260e156682ea69fcf1f7441abd8d2483aab1d32.tar.gz gitea-3260e156682ea69fcf1f7441abd8d2483aab1d32.zip |
Dashboard search tweaks (#14008)
- Fix color of inactive pagination parts caused by overreaching CSS
selector.
- Slightly reduce horizontal padding on list items
- Add spacing around pagination and move it outside of <ul>
Diffstat (limited to 'web_src/less/helpers.less')
-rw-r--r-- | web_src/less/helpers.less | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/web_src/less/helpers.less b/web_src/less/helpers.less index 04c1b6567b..83d7b1d708 100644 --- a/web_src/less/helpers.less +++ b/web_src/less/helpers.less @@ -32,6 +32,12 @@ .rounded-left { border-radius: var(--border-radius) 0 0 var(--border-radius) !important; } .rounded-right { border-radius: 0 var(--border-radius) var(--border-radius) 0 !important; } +.border-secondary { border: 1px solid var(--color-secondary) !important; } +.border-secondary-top { border-top: 1px solid var(--color-secondary) !important; } +.border-secondary-bottom { border-bottom: 1px solid var(--color-secondary) !important; } +.border-secondary-left { border-left: 1px solid var(--color-secondary) !important; } +.border-secondary-right { border-right: 1px solid var(--color-secondary) !important; } + .no-transition { transition: none !important; } .bg-red { background: var(--color-red) !important; } |