diff options
author | silverwind <me@silverwind.io> | 2021-12-17 21:29:00 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-18 05:29:00 +0000 |
commit | 9296baf65a73ccdda329b45770d22390ead7905f (patch) | |
tree | ceecd8261519970fb736ce6d7b6baa6f7690839f /web_src/less/helpers.less | |
parent | 8662ff68dae103f010dd634275d07b17d313d7de (diff) | |
download | gitea-9296baf65a73ccdda329b45770d22390ead7905f.tar.gz gitea-9296baf65a73ccdda329b45770d22390ead7905f.zip |
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.
Diffstat (limited to 'web_src/less/helpers.less')
-rw-r--r-- | web_src/less/helpers.less | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/web_src/less/helpers.less b/web_src/less/helpers.less index f35412fd0e..6904083da8 100644 --- a/web_src/less/helpers.less +++ b/web_src/less/helpers.less @@ -6,6 +6,7 @@ .ac { align-items: center !important; } .tc { text-align: center !important; } .tl { text-align: left !important; } +.tdn { text-decoration: none !important; } .jc { justify-content: center !important; } .js { justify-content: flex-start !important; } .je { justify-content: flex-end !important; } |