diff options
| author | 2025-10-17 18:39:21 +0700 | |
|---|---|---|
| committer | 2025-10-17 18:39:21 +0700 | |
| commit | ecda238c01a4e6bb837f9a2fb0714648dea08d03 (patch) | |
| tree | b436e7af1c5a7d9db2c5175094038dc30ac7196f /static | |
| parent | 22cbb05bdd2b3c2b3fc242985d587f9c9e8494d7 (diff) | |
| download | web-ecda238c01a4e6bb837f9a2fb0714648dea08d03.tar.gz web-ecda238c01a4e6bb837f9a2fb0714648dea08d03.zip | |
feat: allow links to appear in tooltips in gallery
Diffstat (limited to 'static')
| -rw-r--r-- | static/input.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/static/input.css b/static/input.css index 01a747e..910149a 100644 --- a/static/input.css +++ b/static/input.css @@ -122,12 +122,12 @@ html { --squares-and-triangles-background-height-coef: 15; } -a { +a, .linklike { color: var(--main-medium-color) !important; text-decoration: underline; } -a:hover { +a:hover, .linklike:hover { color: var(--main-light-color) !important; } |