diff options
author | John Olheiser <42128690+jolheiser@users.noreply.github.com> | 2019-03-05 18:48:30 -0600 |
---|---|---|
committer | techknowlogick <matti@mdranta.net> | 2019-03-05 19:48:30 -0500 |
commit | 608781f8806ad810e13ac6dc479bf5eac7a40b96 (patch) | |
tree | d5b5cdb7ed7c39f2a531564c176e8f729f8c75af /public/less | |
parent | 6460cff222280fba77fb166a3bce80a828deace3 (diff) | |
download | gitea-608781f8806ad810e13ac6dc479bf5eac7a40b96.tar.gz gitea-608781f8806ad810e13ac6dc479bf5eac7a40b96.zip |
Fix fork button (#6223)
Diffstat (limited to 'public/less')
-rw-r--r-- | public/less/_repository.less | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/public/less/_repository.less b/public/less/_repository.less index 854d1bd3d5..a5c30403e3 100644 --- a/public/less/_repository.less +++ b/public/less/_repository.less @@ -1875,3 +1875,23 @@ tbody.commit-list { display: flex; align-items: center; } + +.repo-buttons .disabled-repo-button .label { + opacity: .5; +} + +.repo-buttons .disabled-repo-button a.button { + opacity: .5; + cursor: not-allowed; +} + +.repo-buttons .disabled-repo-button a.button:hover { + background: none !important; + color: rgba(0,0,0,.6) !important; + box-shadow: 0 0 0 1px rgba(34,36,38,.15) inset !important; +} + +.repo-buttons .ui.labeled.button > .label { + border-left: none !important; + margin: 0 !important; +} |