diff options
author | silverwind <me@silverwind.io> | 2019-02-27 18:24:21 +0100 |
---|---|---|
committer | zeripath <art27@cantab.net> | 2019-02-27 17:24:21 +0000 |
commit | b1ffe7e47b7752ba7c4f1733d0d6448d9c701078 (patch) | |
tree | b17a28ead44c1620447eebe518cb2e3ed55afabc /public/less/_repository.less | |
parent | a1214978b3850c69517deb7d0f0630a72e44fad2 (diff) | |
download | gitea-b1ffe7e47b7752ba7c4f1733d0d6448d9c701078.tar.gz gitea-b1ffe7e47b7752ba7c4f1733d0d6448d9c701078.zip |
UI: Style tweaks to issue selection (#6196)
- Prevent jump in layout when selecting the first issue
- Remove useless padding on top of first issue
Diffstat (limited to 'public/less/_repository.less')
-rw-r--r-- | public/less/_repository.less | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/public/less/_repository.less b/public/less/_repository.less index 2b022c5ed3..854d1bd3d5 100644 --- a/public/less/_repository.less +++ b/public/less/_repository.less @@ -1583,6 +1583,10 @@ display: none; } +#issue-actions { + margin-top: -1rem !important; // counteract padding from Semantic +} + #issue-actions.hide { display: none; } @@ -1593,7 +1597,6 @@ .issue.list { list-style: none; - padding-top: 15px; >.item { padding-top: 15px; padding-bottom: 10px; |