mirror of
https://codeberg.org/davrot/forgejo.git
synced 2025-05-22 20:00:03 +02:00
Change <a> elements to underline on hover (#17898)
Fomantic brings a opinionated style that removed underline on mouse hover which I think is important UX to have. This re-enables the underline in the Fomantic config and fixes a few cases where underline was deemed disruptive.
This commit is contained in:
parent
8662ff68da
commit
9296baf65a
6 changed files with 27 additions and 29 deletions
|
@ -236,6 +236,7 @@ a,
|
|||
.ui.breadcrumb a {
|
||||
color: var(--color-primary);
|
||||
cursor: pointer;
|
||||
text-decoration-skip-ink: all;
|
||||
}
|
||||
|
||||
a.muted {
|
||||
|
@ -245,7 +246,19 @@ a.muted {
|
|||
a:hover,
|
||||
a.muted:hover,
|
||||
.ui.breadcrumb a:hover {
|
||||
color: var(--color-primary-dark-2);
|
||||
color: var(--color-primary);
|
||||
}
|
||||
|
||||
a.label,
|
||||
.repository-menu a,
|
||||
.ui.search .results a,
|
||||
.ui .menu a,
|
||||
.issue-keyword a {
|
||||
text-decoration: none !important;
|
||||
}
|
||||
|
||||
.ui.breadcrumb a:hover {
|
||||
text-decoration: underline !important;
|
||||
}
|
||||
|
||||
.ui.breadcrumb .divider {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue