blob: 77b81952230b4d897ab47db2ff9e25d623426ea6 (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
@use 'iro-sass/src/props';
@use 'core';
@mixin styles {
.messageGroupList .columnSubject > .statusDisplay {
margin-block-start: -.1em;
margin-block-end: -.2em;
}
.messageSidebar {
a:hover {
text-decoration-line: underline;
}
.username {
font-weight: bold;
}
}
.messageText,
.messageSignature {
a {
text-decoration-line: underline;
text-decoration-thickness: 1px;
text-decoration-color: props.get(core.$theme, --link, --underline);
}
a:hover {
text-decoration-line: underline;
text-decoration-color: currentColor;
}
}
.vlpnSignatureMobile {
display: none;
}
.quoteBoxTitle a {
text-decoration-line: none;
}
.attachmentThumbnail {
background-color: props.get(core.$theme, --base, --75);
}
@media screen and (max-width: 768px) {
.messageSignature {
display: block;
margin-top: 20px;
border-top: 1px solid props.get(core.$theme, --wcfContentBorderInner);
padding-top: 10px;
}
.vlpnSignature {
display: none;
}
.vlpnSignatureMobile {
display: block;
}
}
}
|