1
- html {
1
+ html , html [data-theme = 'dark' ] {
2
+ # dock {
3
+ li {
4
+ position : relative;
5
+ height : 18px ;
6
+ display : flex;
7
+ align-items : center;
8
+ justify-content : center;
9
+ }
10
+ li : not (: last-child ) {
11
+ border-right : 1px solid var (--color-dock-sp );
12
+ }
13
+ }
2
14
.columns {
3
- > . column : not ( # columnSubjectHomeB , # columnHomeB ) : last-child {
15
+ > # columnInSubjectB {
4
16
> * { margin : 0 ; }
5
17
display : flex;
6
18
gap : 10px ;
@@ -12,34 +24,25 @@ html {
12
24
overflow-y : auto;
13
25
}
14
26
}
15
- .avatar : not (.tinyCover ) {
16
- img ,
17
- .avatarNeue {
18
- border-radius : 50% !important ;
19
- }
20
- }
21
- .postTopic {
22
- border-bottom : none;
23
- .inner .tips {
24
- display : flex;
25
- height : 40px ;
26
- align-items : center;
27
- gap : 8px ;
28
- color : var (--color-reply-tips );
29
- }
30
- }
31
- # comment_list {
32
- box-sizing : border-box;
33
-
34
- .row : nth-child (odd),
35
- .row : nth-child (even) {
36
- background : transparent;
27
+ * : has (> # comment_list ) {
28
+ .postTopic {
29
+ border-bottom : none;
30
+ .inner .tips {
31
+ display : flex;
32
+ height : 40px ;
33
+ align-items : center;
34
+ gap : 8px ;
35
+ color : var (--color-reply-tips );
36
+ }
37
37
}
38
- > .clearit : first-child {
39
- border-top : 1px solid transparent;
38
+ .avatar : not (.tinyCover ) {
39
+ img ,
40
+ .avatarNeue {
41
+ border-radius : 50% !important ;
42
+ }
40
43
}
41
- > .clearit ,
42
- . topic_sub_reply > . clearit {
44
+ .clearit : not (. message ) {
45
+ transition : all 0.3 s ease;
43
46
box-sizing : border-box;
44
47
border-bottom : none !important ;
45
48
border-top : 1px dashed var (--color-reply-sp );
@@ -50,51 +53,48 @@ html {
50
53
gap : 8px ;
51
54
color : var (--color-reply-tips );
52
55
}
53
- .sub_reply_collapse .inner .tips {
54
- height : auto;
55
- }
56
- }
57
-
58
- > .clearit : not (: has (.topic_sub_reply > .clearit : hover )): hover ,
59
- .topic_sub_reply > .clearit : hover {
60
- position : relative;
61
- z-index : 1 ;
62
- }
63
-
64
- > .clearit : not (: has (.topic_sub_reply > .clearit : hover )): hover ,
65
- .topic_sub_reply > .clearit : hover {
66
- border-top : 1px solid var (--color-reply-normal-top ) !important ;
67
- background : linear-gradient (var (--color-reply-normal-bg ) 1px , # 00000000 60px ) !important ;
68
- box-shadow : 0 0 4px var (--color-reply-normal-shadow );
56
+ .sub_reply_collapse .inner .tips { height : auto; }
57
+ --color-reply : var (--color-bangumi );
69
58
}
70
- .clearit .owner {
71
- border-top : 1px solid var (--color-reply-owner-top ) !important ;
72
- background : linear-gradient (var (--color-reply-owner-bg ) 1px , # 00000000 60px ) !important ;
73
- }
74
- .clearit .owner : not (: has (.clearit : hover )): hover {
75
- border-top : 1px solid var (--color-reply-owner-top ) !important ;
76
- background : linear-gradient (var (--color-reply-owner-bg ) 1px , # 00000000 60px ) !important ;
77
- box-shadow : 0 0 4px var (--color-reply-owner-shadow );
78
- }
79
- .clearit .floor {
80
- border-top : 1px solid var (--color-reply-floor-top ) !important ;
81
- background : linear-gradient (var (--color-reply-floor-bg ) 1px , # 00000000 60px ) !important ;
59
+ .clearit .friend { --color-reply : var (--color-green ); }
60
+ .clearit .owner { --color-reply : var (--color-yellow ); }
61
+ .clearit .floor { --color-reply : var (--color-purple ); }
62
+ .clearit .self { --color-reply : var (--color-blue ); }
63
+ .clearit .friend , .clearit .owner , .clearit .floor , .clearit .self {
64
+ border-top : 1px solid var (--color-reply ) !important ;
65
+ background : linear-gradient (rgb (from var (--color-reply ) r g b / .125 ) 1px , # 00000000 60px ) !important ;
66
+ > .inner > : first-child > strong ::before , > .inner > strong ::before {
67
+ padding : 1px 4px ;
68
+ margin-right : 4px ;
69
+ border-radius : 2px ;
70
+ background : rgb (from var (--color-bangumi ) r g b / .5 );
71
+ }
82
72
}
83
- .clearit . floor : not (: has (.clearit : hover )): hover {
84
- border-top : 1px solid var (--color-reply-floor-top ) !important ;
85
- background : linear-gradient (var (--color-reply-floor-bg ) 1px , # 00000000 60px ) !important ;
86
- box-shadow : 0 0 4px var (--color-reply-floor-shadow );
73
+ .clearit : not (: has (.clearit : not (. message ) : hover ), . message ): hover {
74
+ border-top : 1px solid var (--color-reply ) !important ;
75
+ background : linear-gradient (rgb (from var (--color-reply ) r g b / .125 ) 1px , # 00000000 60px ) !important ;
76
+ box-shadow : 0 0 4px rgb (from var (--color-reply ) r g b / .5 );
87
77
}
78
+ .clearit .self { > .inner > : first-child > strong ::before , > .inner > strong ::before { content : '自' ; } }
79
+ .clearit .friend { > .inner > : first-child > strong ::before , > .inner > strong ::before { content : '友' ; } }
80
+ .clearit .owner { > .inner > : first-child > strong ::before , > .inner > strong ::before { content : '楼' ; } }
81
+ .clearit .floor { > .inner > : first-child > strong ::before , > .inner > strong ::before { content : '层' ; } }
82
+ .clearit .friend .owner { > .inner > : first-child > strong ::before , > .inner > strong ::before { content : '友 楼' ; } }
83
+ .clearit .friend .floor { > .inner > : first-child > strong ::before , > .inner > strong ::before { content : '友 层' ; } }
84
+ .clearit .owner .floor { > .inner > : first-child > strong ::before , > .inner > strong ::before { content : '楼 层' ; } }
85
+ .clearit .self .owner { > .inner > : first-child > strong ::before , > .inner > strong ::before { content : '自 楼' ; } }
86
+ .clearit .self .floor { > .inner > : first-child > strong ::before , > .inner > strong ::before { content : '自 层' ; } }
87
+ .clearit .friend .owner .floor { > .inner > : first-child > strong ::before , > .inner > strong ::before { content : '友 楼 层' ; } }
88
+ .clearit .self .owner .floor { > .inner > : first-child > strong ::before , > .inner > strong ::before { content : '自 楼 层' ; } }
89
+ }
88
90
89
- div .reply_collapse {
90
- padding : 5px 10px ;
91
- }
91
+ # comment_list {
92
+ box-sizing : border-box;
93
+ .row : nth-child (odd), .row : nth-child (even) { background : transparent; }
94
+ > .clearit : first-child { border-top : 1px solid transparent; }
95
+ div .reply_collapse { padding : 5px 10px ; }
92
96
}
93
97
@media (max-width : 640px ) {
94
- .columns {
95
- > .column : last-child {
96
- align-self : auto !important ;
97
- }
98
- }
98
+ .columns { > .column : last-child { align-self : auto !important ; } }
99
99
}
100
100
}
0 commit comments