gistfile1.txt
· 1.6 KiB · Text
Orginalformat
.tk-replies .tk-master .tk-content > span:first-of-type {
color: var(--replies-span-tkMaster);
font-weight: bold;
}
.tk-replies .tk-master .tk-content > span:first-of-type a {
color: var(--replies-span-tkMaster-a);
font-weight: bold;
}
.tk-replies .tk-content > span:first-of-type {
color: var(--replies-span);
font-weight: bold;
}
.tk-replies .tk-content > span:first-of-type a {
color: var(--replies-span-a);
font-weight: bold;
}
.tk-comment blockquote,
.tk-panel .tk-admin-comment .tk-admin-comment-item .tk-content blockquote {
margin: 10px 0 !important;
border-radius: 8px;
color: var(--font-color) !important;
background-color: var(--tk-main-blockquote-bg);
padding: 8px 14px;
font-style: italic;
font-size: 14px;
line-height: 1.6;
}
.tk-comment.tk-master .tk-content blockquote,
.tk-replies .tk-comment.tk-master .tk-content blockquote {
border-left: 4px solid var(--blockquote-left-bg-tkMaster) !important;
}
.tk-comment:not(.tk-master) .tk-content blockquote,
.tk-replies .tk-comment:not(.tk-master) .tk-content blockquote,
.tk-panel .tk-admin-comment .tk-admin-comment-item .tk-content blockquote {
border-left: 4px solid var(--blockquote-left-bg) !important;
}
.tk-tag-red {
background-color: #a3bffa !important;
border: none !important;
color: #fff !important;
box-shadow: 0 0 6px rgba(163, 191, 250, 0.45) !important;
font-weight: bold;
}
.tk-tag-green{
background-color: #ff87c3 !important;
border: none !important;
color: #fff !important;
box-shadow: 0 0 6px rgba(255, 135, 195, 0.6) !important;
font-weight: bold;
}
1 | |
2 | .tk-replies .tk-master .tk-content > span:first-of-type { |
3 | color: var(--replies-span-tkMaster); |
4 | font-weight: bold; |
5 | } |
6 | |
7 | .tk-replies .tk-master .tk-content > span:first-of-type a { |
8 | color: var(--replies-span-tkMaster-a); |
9 | font-weight: bold; |
10 | } |
11 | |
12 | .tk-replies .tk-content > span:first-of-type { |
13 | color: var(--replies-span); |
14 | font-weight: bold; |
15 | } |
16 | |
17 | .tk-replies .tk-content > span:first-of-type a { |
18 | color: var(--replies-span-a); |
19 | font-weight: bold; |
20 | } |
21 | |
22 | .tk-comment blockquote, |
23 | .tk-panel .tk-admin-comment .tk-admin-comment-item .tk-content blockquote { |
24 | margin: 10px 0 !important; |
25 | border-radius: 8px; |
26 | color: var(--font-color) !important; |
27 | background-color: var(--tk-main-blockquote-bg); |
28 | padding: 8px 14px; |
29 | font-style: italic; |
30 | font-size: 14px; |
31 | line-height: 1.6; |
32 | } |
33 | |
34 | .tk-comment.tk-master .tk-content blockquote, |
35 | .tk-replies .tk-comment.tk-master .tk-content blockquote { |
36 | border-left: 4px solid var(--blockquote-left-bg-tkMaster) !important; |
37 | } |
38 | |
39 | .tk-comment:not(.tk-master) .tk-content blockquote, |
40 | .tk-replies .tk-comment:not(.tk-master) .tk-content blockquote, |
41 | .tk-panel .tk-admin-comment .tk-admin-comment-item .tk-content blockquote { |
42 | border-left: 4px solid var(--blockquote-left-bg) !important; |
43 | } |
44 | |
45 | .tk-tag-red { |
46 | background-color: #a3bffa !important; |
47 | border: none !important; |
48 | color: #fff !important; |
49 | box-shadow: 0 0 6px rgba(163, 191, 250, 0.45) !important; |
50 | font-weight: bold; |
51 | } |
52 | |
53 | .tk-tag-green{ |
54 | background-color: #ff87c3 !important; |
55 | border: none !important; |
56 | color: #fff !important; |
57 | box-shadow: 0 0 6px rgba(255, 135, 195, 0.6) !important; |
58 | font-weight: bold; |
59 | } |