Fix button hover border (#30048)
Fix regression from https://github.com/go-gitea/gitea/pull/30014. The rule was to broad and affecting things like `primary` button unintentionally. (cherry picked from commit bbaf62589fe538be4afc86455d772360de80e7d8)
This commit is contained in:
parent
2c4e85421e
commit
553ef46226
1 changed files with 4 additions and 1 deletions
|
@ -11,7 +11,6 @@
|
|||
.ui.button:focus {
|
||||
background: var(--color-hover);
|
||||
color: var(--color-text);
|
||||
border-color: var(--color-secondary-dark-2);
|
||||
}
|
||||
|
||||
.page-content .ui.button {
|
||||
|
@ -64,6 +63,10 @@ It needs some tricks to tweak the left/right borders with active state */
|
|||
border-right: none;
|
||||
}
|
||||
|
||||
.ui.buttons .button:hover {
|
||||
border-color: var(--color-secondary-dark-2);
|
||||
}
|
||||
|
||||
.ui.buttons .button:hover + .button {
|
||||
border-left: 1px solid var(--color-secondary-dark-2);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue