diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-06-28 22:19:55 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-28 22:19:55 -0400 |
commit | deb2a742edf2ddc741d71fa8a95471cbd4663a4a (patch) | |
tree | 6f9b9513e4928d06d4f1e97224ebad4332b069c6 /ext/css/structured-content.css | |
parent | 1f1a958a71b44e5c6e0dbc0742e007fa5abeca29 (diff) |
Update dictionary image link color (#1778)
Diffstat (limited to 'ext/css/structured-content.css')
-rw-r--r-- | ext/css/structured-content.css | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ext/css/structured-content.css b/ext/css/structured-content.css index 37cfde86..c799e865 100644 --- a/ext/css/structured-content.css +++ b/ext/css/structured-content.css @@ -32,12 +32,15 @@ } .gloss-image-link { cursor: inherit; - color: inherit; + color: var(--accent-color); display: inline-block; position: relative; line-height: 1; max-width: 100%; } +.gloss-image-link:hover { + color: var(--accent-color-dark); +} .gloss-image-link[href]:hover { cursor: pointer; } |