diff options
author | silverwind <me@silverwind.io> | 2020-11-13 02:31:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-13 09:31:25 +0800 |
commit | 0ae35c66f2efe608e3176f796866c18461f0780f (patch) | |
tree | 85aea4a7057e44929fe21caaecbcf5f32dd3f6d0 /web_src/less/_repository.less | |
parent | ff7341b9946df665da0cd1453963733711ea7714 (diff) | |
download | gitea-0ae35c66f2efe608e3176f796866c18461f0780f.tar.gz gitea-0ae35c66f2efe608e3176f796866c18461f0780f.zip |
Various style fixes (#13534)
* Various style fixes
- Fix the rest of the monochrome borders for arc-green
- Fix close icon position on system notice modal and padding
- Fix selectable table color for arc-green
* proper fix for close icon
Co-authored-by: Lauris BH <lauris@nix.lv>
Diffstat (limited to 'web_src/less/_repository.less')
-rw-r--r-- | web_src/less/_repository.less | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/web_src/less/_repository.less b/web_src/less/_repository.less index 5c18ae3857..29ae5ac07c 100644 --- a/web_src/less/_repository.less +++ b/web_src/less/_repository.less @@ -1070,10 +1070,10 @@ margin: 5px; padding: 5px; height: 150px; - border: solid 1px #eeeeee; + border: solid 1px var(--color-secondary); border-radius: 3px; max-width: 150px; - background-color: #ffffff; + background-color: var(--color-body); &::before { content: ' '; @@ -1962,14 +1962,14 @@ .list { padding-left: 0; - border-top: 1px solid #eeeeee; + border-top: 1px solid var(--color-secondary); li { list-style: none; display: block; padding-top: 8px; padding-bottom: 8px; - border-bottom: 1px solid #eeeeee; + border-bottom: 1px solid var(--color-secondary); a > .text.right { margin-right: 5px; @@ -2177,7 +2177,7 @@ } .item { - border: 1px solid #eaeaea; + border: 1px solid var(--color-secondary); padding: 10px 15px; &:not(:last-child) { @@ -2748,7 +2748,7 @@ } &:not(:first-child) { - border-top: 1px solid #eaeaea; + border-top: 1px solid var(--color-secondary); padding: 1rem; margin: 15px -1rem -1rem; } |