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 | |
parent | 6bee39204b737591214ca9f1f12949dfeeac34c6 (diff) | |
download | blog-2b3c8d5ced70ace627439919df870c1d40d62e0e.tar.gz blog-2b3c8d5ced70ace627439919df870c1d40d62e0e.tar.xz blog-2b3c8d5ced70ace627439919df870c1d40d62e0e.zip |
Add underline for blue hyperlinks in admin theme
-rw-r--r-- | theme/admin/rsrc/css/bright.css | 4 | ||||
-rw-r--r-- | theme/admin/rsrc/css/dark.css | 4 | ||||
-rw-r--r-- | theme/admin/rsrc/css/import/_styles.scss | 11 |
3 files changed, 16 insertions, 3 deletions
diff --git a/theme/admin/rsrc/css/bright.css b/theme/admin/rsrc/css/bright.css index d9ffd14..feac82e 100644 --- a/theme/admin/rsrc/css/bright.css +++ b/theme/admin/rsrc/css/bright.css @@ -93,6 +93,9 @@ a { color: #0060A0; text-decoration: none; } +a:hover { + text-decoration: underline; +} a:focus { background: #CCC; } @@ -350,6 +353,7 @@ body { color: inherit; display: block; padding: 0 0.25rem; + text-decoration: none; } .actions-before { diff --git a/theme/admin/rsrc/css/dark.css b/theme/admin/rsrc/css/dark.css index 8472aab..699489f 100644 --- a/theme/admin/rsrc/css/dark.css +++ b/theme/admin/rsrc/css/dark.css @@ -93,6 +93,9 @@ a { color: #5EA4D3; text-decoration: none; } +a:hover { + text-decoration: underline; +} a:focus { background: #42474E; } @@ -350,6 +353,7 @@ body { color: inherit; display: block; padding: 0 0.25rem; + text-decoration: none; } .actions-before { 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; } } |