-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent-styles.css
More file actions
110 lines (97 loc) · 2.01 KB
/
Copy pathcontent-styles.css
File metadata and controls
110 lines (97 loc) · 2.01 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/* XFilter Content Styles */
.xfilter-collapsed {
position: relative;
overflow: hidden;
}
.xfilter-collapsed > * {
visibility: hidden;
}
.xfilter-collapsed::after {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(
to bottom,
rgba(0, 0, 0, 0.08) 0%,
rgba(0, 0, 0, 0.2) 35%,
rgba(0, 0, 0, 0.7) 100%
);
pointer-events: none;
z-index: 1;
}
.xfilter-overlay {
position: absolute;
inset: auto 12px 10px 12px;
z-index: 2;
display: flex;
align-items: center;
justify-content: center;
width: calc(100% - 24px);
min-height: 44px;
padding: 10px 14px;
border: 1px solid #2f3336;
border-radius: 14px;
background: rgba(22, 24, 28, 0.92);
color: #e7e9ea;
cursor: pointer;
box-sizing: border-box;
backdrop-filter: blur(4px);
pointer-events: auto;
visibility: visible;
}
.xfilter-collapsed > [data-xfilter-overlay="true"],
.xfilter-recollapse {
visibility: visible;
pointer-events: auto;
}
.xfilter-overlay:hover {
background: rgba(29, 31, 35, 0.96);
}
.xfilter-recollapse {
position: relative;
z-index: 1;
border: 1px solid #2f3336;
border-radius: 999px;
background: rgba(22, 24, 28, 0.92);
color: #8ecdf8;
padding: 6px 10px;
font-size: 12px;
line-height: 1;
cursor: pointer;
box-sizing: border-box;
margin-left: 8px;
flex: 0 0 auto;
}
.xfilter-recollapse:hover {
background: rgba(29, 31, 35, 0.96);
}
.xfilter-placeholder-content {
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
gap: 8px;
max-width: 100%;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
font-size: 13px;
line-height: 1.35;
text-align: center;
}
.xfilter-placeholder-icon {
font-size: 15px;
flex: 0 0 auto;
}
.xfilter-placeholder-text {
color: #d6d9db;
word-break: break-word;
}
.xfilter-placeholder-text b {
color: #1d9bf0;
font-weight: 600;
}
.xfilter-placeholder-show {
color: #8ecdf8;
font-size: 12px;
font-weight: 600;
white-space: nowrap;
}