Update dictionary image link color (#1778)

This commit is contained in:
toasted-nutbread 2021-06-28 22:19:55 -04:00 committed by GitHub
parent 1f1a958a71
commit deb2a742ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 3 deletions

View File

@ -21,6 +21,12 @@
.gloss-image-link[data-background=true]>.gloss-image-container {
/* remove-property background-color */
}
.gloss-image-link {
color: inherit;
}
.gloss-image-link:hover {
/* remove-rule */
}
.gloss-image-container-overlay {
font-size: initial;
line-height: initial;

View File

@ -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;
}

View File

@ -17,11 +17,11 @@
"selectors": [".gloss-image-link"],
"styles": [
["cursor", "inherit"],
["color", "inherit"],
["display", "inline-block"],
["position", "relative"],
["line-height", "1"],
["max-width", "100%"]
["max-width", "100%"],
["color", "inherit"]
]
},
{