summaryrefslogtreecommitdiffstats
path: root/src/_thread.scss
diff options
context:
space:
mode:
authorVolpeon <git@volpeon.ink>2025-03-28 15:06:23 +0100
committerVolpeon <git@volpeon.ink>2025-03-28 15:06:23 +0100
commit199f673e94d57e28fd0b235c281ef85f84aa5e51 (patch)
treeb6dc8a2406020242ab13bea2ed78eabf39dbdac9 /src/_thread.scss
parentUpdate (diff)
downloadfurbase-design-2024-199f673e94d57e28fd0b235c281ef85f84aa5e51.tar.gz
furbase-design-2024-199f673e94d57e28fd0b235c281ef85f84aa5e51.tar.bz2
furbase-design-2024-199f673e94d57e28fd0b235c281ef85f84aa5e51.zip
New variable organizing
Diffstat (limited to 'src/_thread.scss')
-rw-r--r--src/_thread.scss11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/_thread.scss b/src/_thread.scss
index c602a87..e4feb1c 100644
--- a/src/_thread.scss
+++ b/src/_thread.scss
@@ -10,7 +10,7 @@
10 10
11 .messageSidebar { 11 .messageSidebar {
12 a:hover { 12 a:hover {
13 text-decoration: underline; 13 text-decoration-line: underline;
14 } 14 }
15 15
16 .username { 16 .username {
@@ -21,17 +21,18 @@
21 .messageText, 21 .messageText,
22 .messageSignature { 22 .messageSignature {
23 a { 23 a {
24 text-decoration: underline; 24 text-decoration-line: underline;
25 text-decoration-color: props.get(core.$vlpnLinkUnderline); 25 text-decoration-thickness: 1px;
26 text-decoration-color: props.get(core.$theme, --link, --underline);
26 } 27 }
27 28
28 a:hover { 29 a:hover {
29 text-decoration: underline; 30 text-decoration-line: underline;
30 text-decoration-color: currentColor; 31 text-decoration-color: currentColor;
31 } 32 }
32 } 33 }
33 34
34 .quoteBoxTitle a { 35 .quoteBoxTitle a {
35 text-decoration: none; 36 text-decoration-line: none;
36 } 37 }
37} 38}