diff options
author | Thomas Lange <code@nerdmind.de> | 2021-08-26 21:04:45 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2021-08-26 21:07:03 +0200 |
commit | 2b3c8d5ced70ace627439919df870c1d40d62e0e (patch) | |
tree | 914c3d3e561872369886448a30575dd65e7d22b5 /theme/admin/rsrc/css/import | |
parent | 6bee39204b737591214ca9f1f12949dfeeac34c6 (diff) | |
download | blog-2b3c8d5ced70ace627439919df870c1d40d62e0e.tar.gz blog-2b3c8d5ced70ace627439919df870c1d40d62e0e.tar.xz blog-2b3c8d5ced70ace627439919df870c1d40d62e0e.zip |
Add underline for blue hyperlinks in admin theme
Diffstat (limited to 'theme/admin/rsrc/css/import')
-rw-r--r-- | theme/admin/rsrc/css/import/_styles.scss | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/theme/admin/rsrc/css/import/_styles.scss b/theme/admin/rsrc/css/import/_styles.scss index 421aaac..53edf5b 100644 --- a/theme/admin/rsrc/css/import/_styles.scss +++ b/theme/admin/rsrc/css/import/_styles.scss @@ -59,6 +59,10 @@ a { color: $linkColor; text-decoration: none; + &:hover { + text-decoration: underline; + } + &:focus { background: $linkColorFocused; } @@ -348,9 +352,10 @@ body { } a { - color: inherit; - display: block; - padding: 0 0.25rem; + color: inherit; + display: block; + padding: 0 0.25rem; + text-decoration: none; } } |