diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2025-04-24 20:41:16 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2025-04-24 20:41:24 -0300 |
commit | cdc6efcbc3f8733e452b0cfe5bc2142688c06be6 (patch) | |
tree | 4cc961eaa0f4b7519eddd8a189b54daba15bfcf6 /src/static/css | |
parent | 1d1e9f8eb84e8a1931a255e6022edf7865162ce2 (diff) |
content, css: transformContent: [[tooltip]] tag preview
Diffstat (limited to 'src/static/css')
-rw-r--r-- | src/static/css/site.css | 43 |
1 files changed, 42 insertions, 1 deletions
diff --git a/src/static/css/site.css b/src/static/css/site.css index 962dc896..b4d9ba9a 100644 --- a/src/static/css/site.css +++ b/src/static/css/site.css @@ -1246,7 +1246,8 @@ li:not(:first-child:last-child) .tooltip:where(:not(.cover-artwork .tooltip)), .missing-duration-tooltip, .commentary-date-tooltip, .rerelease-tooltip, -.first-release-tooltip { +.first-release-tooltip, +.content-tooltip { padding: 3px 4px 2px 2px; left: -10px; } @@ -1428,6 +1429,30 @@ li:not(:first-child:last-child) .tooltip:where(:not(.cover-artwork .tooltip)), font-size: 0.9em; } +.content-tooltip-guy .hoverable a { + text-decoration-color: transparent; + text-decoration-style: dotted; +} + +.content-tooltip-guy { + display: inline-block; +} + +.content-tooltip-guy.has-link .text-with-tooltip-interaction-cue { + text-decoration-color: var(--primary-color); +} + +.content-tooltip .tooltip-content { + padding: 3px 4.5px; + width: 240px; +} + +.cover-artwork .content-tooltip { + font-size: 0.85rem; + padding: 2px 3px; + width: 220px; +} + .external-icon { display: inline-block; padding: 0 3px; @@ -1478,6 +1503,22 @@ s.spoiler::-moz-selection { background: white; } +span.path { + font-size: 0.9em; + font-family: "courier new", monospace; + font-weight: 800; +} + +span.path i { + display: inline-block; + font-style: normal; +} + +span.path i::before { + content: "\0020/\0020"; + color: #ccc; +} + progress { accent-color: var(--primary-color); } |