Skip to content

Commit

Permalink
Fix button hover border (#30048)
Browse files Browse the repository at this point in the history
Fix regression from #30014. The
rule was to broad and affecting things like `primary` button
unintentionally.
  • Loading branch information
silverwind authored Mar 25, 2024
1 parent 475b6e8 commit bbaf625
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion web_src/css/modules/button.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
.ui.button:hover {
background: var(--color-hover);
color: var(--color-text);
border-color: var(--color-secondary-dark-2);
}

.page-content .ui.button {
Expand Down Expand Up @@ -62,6 +61,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);
}
Expand Down

0 comments on commit bbaf625

Please sign in to comment.