summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/_badge.scss4
-rw-r--r--src/_core.vars.scss3
-rw-r--r--src/_thread.scss16
3 files changed, 22 insertions, 1 deletions
diff --git a/src/_badge.scss b/src/_badge.scss
index c74eb29..4200f01 100644
--- a/src/_badge.scss
+++ b/src/_badge.scss
@@ -18,6 +18,10 @@
18 --color: #{props.get(core.$theme, --yellow, --800-text)}; 18 --color: #{props.get(core.$theme, --yellow, --800-text)};
19 } 19 }
20 } 20 }
21
22 .userTitleBadge {
23 max-width: 100%;
24 }
21} 25}
22 26
23@mixin styles--dark { 27@mixin styles--dark {
diff --git a/src/_core.vars.scss b/src/_core.vars.scss
index 6ccb430..9629dd3 100644
--- a/src/_core.vars.scss
+++ b/src/_core.vars.scss
@@ -411,6 +411,9 @@ $themes-spec: (
411 --wcfSidebarDimmedLink: --wcfSidebarDimmedText, 411 --wcfSidebarDimmedLink: --wcfSidebarDimmedText,
412 --wcfSidebarDimmedLinkActive: --wcfSidebarDimmedText, 412 --wcfSidebarDimmedLinkActive: --wcfSidebarDimmedText,
413 413
414 --wcfHeaderSearchBoxBackground: --base --200,
415 --wcfHeaderSearchBoxBackgroundActive: --base --200,
416
414 --wcfTabularBoxBackgroundActive: --base --100, 417 --wcfTabularBoxBackgroundActive: --base --100,
415 418
416 --wcfStatusInfoBackground: --base --100, 419 --wcfStatusInfoBackground: --base --100,
diff --git a/src/_thread.scss b/src/_thread.scss
index a67348a..77b8195 100644
--- a/src/_thread.scss
+++ b/src/_thread.scss
@@ -32,6 +32,10 @@
32 } 32 }
33 } 33 }
34 34
35 .vlpnSignatureMobile {
36 display: none;
37 }
38
35 .quoteBoxTitle a { 39 .quoteBoxTitle a {
36 text-decoration-line: none; 40 text-decoration-line: none;
37 } 41 }
@@ -42,8 +46,18 @@
42 46
43 @media screen and (max-width: 768px) { 47 @media screen and (max-width: 768px) {
44 .messageSignature { 48 .messageSignature {
49 display: block;
50 margin-top: 20px;
51 border-top: 1px solid props.get(core.$theme, --wcfContentBorderInner);
52 padding-top: 10px;
53 }
54
55 .vlpnSignature {
56 display: none;
57 }
58
59 .vlpnSignatureMobile {
45 display: block; 60 display: block;
46 opacity: 0.6;
47 } 61 }
48 } 62 }
49} 63}