diff options
author | zeripath <art27@cantab.net> | 2022-02-04 15:53:43 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-04 15:53:43 +0000 |
commit | 88939a5663bbb4547f45421a846ec4420283d996 (patch) | |
tree | 179dfb6746828f11bba076834b5daf3d2eaeb776 /web_src/less | |
parent | 3c7374106e37f071b1570ae2a6be02c8c7fb4a2b (diff) | |
download | gitea-88939a5663bbb4547f45421a846ec4420283d996.tar.gz gitea-88939a5663bbb4547f45421a846ec4420283d996.zip |
Remove the spurious space in the .ui.right additional selector (#18605)
Somehow a spurious space sneaked in to #18538
this PR simply removes it.
Signed-off-by: Andrew Thornton <art27@cantab.net>
Diffstat (limited to 'web_src/less')
-rw-r--r-- | web_src/less/_repository.less | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web_src/less/_repository.less b/web_src/less/_repository.less index 6cce0ec66f..6cf70abdf7 100644 --- a/web_src/less/_repository.less +++ b/web_src/less/_repository.less @@ -5,7 +5,7 @@ max-height: 45vh; max-width: 60vw; - & .ui.right { + &.ui.right { // Override `.ui.attached.header .right:not(.dropdown) height: 30px;` which would otherwise lead to // the status popup box having its height fixed at 30px. See https://github.com/go-gitea/gitea/issues/18498 height: auto; |