diff options
author | Jonathan Tran <jonnytran@gmail.com> | 2021-05-03 13:27:48 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-03 13:27:48 -0400 |
commit | 5e047b9bd7ba4bfa1c1ae3683eabe7e290de5728 (patch) | |
tree | 4f677454d6184de0ba06fed197a478ec6ce8dfe7 /web_src/less | |
parent | 1b017fe7ca9df5a8c7d7823a1ded897fc324f9d3 (diff) | |
download | gitea-5e047b9bd7ba4bfa1c1ae3683eabe7e290de5728.tar.gz gitea-5e047b9bd7ba4bfa1c1ae3683eabe7e290de5728.zip |
Add compare tag dropdown to releases page (#15695)
* Add compare tag dropdown to releases page
* Change defaults to be more intuitive and remove unneeded option
* Fix to select branch on releases page
Co-authored-by: Jonathan Tran <jon@allspice.io>
Co-authored-by: Kyle D <kdumontnu@gmail.com>
Diffstat (limited to 'web_src/less')
-rw-r--r-- | web_src/less/_repository.less | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/web_src/less/_repository.less b/web_src/less/_repository.less index 70ad8dd730..5ff51b1d6d 100644 --- a/web_src/less/_repository.less +++ b/web_src/less/_repository.less @@ -1803,6 +1803,10 @@ text-align: right; position: relative; + .label { + margin-right: 0; + } + .tag:not(.icon) { display: block; margin-top: 15px; @@ -1812,6 +1816,14 @@ display: block; margin-top: 10px; } + + .choose { + margin-top: 15px; + + .button { + margin-right: 0; + } + } } .detail { @@ -1855,7 +1867,7 @@ width: 9px; height: 9px; background-color: #ddd; - z-index: 999; + z-index: 9; position: absolute; display: block; left: -5px; |