blob: 5217447cad488e4dab8d632a262ad6bf38d6b460 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
@use 'iro-sass/src/props';
@use 'common';
@mixin styles {
.messageGroupList .columnSubject > .statusDisplay {
margin-block-start: -.1em;
margin-block-end: -.2em;
}
.messageSidebar {
a:hover {
text-decoration: underline;
}
.username {
font-weight: bold;
}
}
.messageText,
.messageSignature {
a {
text-decoration: underline;
text-decoration-color: props.get(common.$vlpnLinkUnderline);
}
a:hover {
text-decoration: underline;
text-decoration-color: currentColor;
}
}
.quoteBoxTitle a {
text-decoration: none;
}
}
|