diff options
author | silverwind <me@silverwind.io> | 2020-12-08 05:14:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-07 23:14:28 -0500 |
commit | e7938c9c44384e044afba14d5a86b1ba32520dd3 (patch) | |
tree | a813d29893239c867324d2e579022e99ad95deb2 /web_src/less/_base.less | |
parent | 9b22ada0a786494a69cf8aedb3576f9e252b2c79 (diff) | |
download | gitea-e7938c9c44384e044afba14d5a86b1ba32520dd3.tar.gz gitea-e7938c9c44384e044afba14d5a86b1ba32520dd3.zip |
Repo avatar fixes (#13891)
- Split up avatar rendering helpers for performance
- Fix showing repo SVG icon when no avatar is set
- Make repo SVG and avatar same size at 32px
- Fix fork line by adding vertical flexbox on repo title
Co-authored-by: 6543 <6543@obermui.de>
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Diffstat (limited to 'web_src/less/_base.less')
-rw-r--r-- | web_src/less/_base.less | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/web_src/less/_base.less b/web_src/less/_base.less index 8885ffc409..81c6a310f5 100644 --- a/web_src/less/_base.less +++ b/web_src/less/_base.less @@ -1247,6 +1247,32 @@ footer { margin-bottom: 2px !important; } +.repo-title { + font-size: 1.5rem; + display: flex; + align-items: center; + flex: 1; + word-break: break-all; + color: var(--color-text-light); + + .avatar { + width: 32px !important; + height: 32px !important; + } + + .labels { + margin-left: .5rem; + + > * + * { + margin-left: .5rem; + } + } +} + +.repo-icon { + display: inline-block; +} + .activity-bar-graph { background-color: var(--color-primary); color: #fff; |