-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwalker.css
More file actions
57 lines (51 loc) · 1.23 KB
/
Copy pathwalker.css
File metadata and controls
57 lines (51 loc) · 1.23 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
@define-color selected-text #e2687c;
@define-color text #F5ECDF;
@define-color base #0A101F;
@define-color border #656074;
@define-color foreground #F5ECDF;
@define-color background #0A101F;
window * {
all: unset;
color: @text;
background: none;
border: none;
margin: 0;
padding: 0;
line-height: 1em;
}
window .normal-icons,
window .large-icons,
window .item-image,
window .symbols {
-gtk-icon-size: 18px;
min-width: 0;
min-height: 0;
padding: 0;
margin: 0;
display: none;
}
window .box-wrapper {
background: alpha(@base, 1); /* dark transparency */
border: 2px solid alpha(@border, 0.9); /* visible border */
border-radius: 5px;
padding: 4px;
margin: 0;
box-shadow: 0 2px 12px alpha(black, 0.85);
backdrop-filter: blur(1px);
}
window .search-container {
border: 2px solid alpha(@border, 0.9); /* visible border */
border-radius: 4px;
padding: 4px 6px;
margin: 0;
background: alpha(@base, 0.8); /* slightly transparent */
box-shadow: inset 0 0 6px alpha(white, 0.05);
backdrop-filter: blur(1px);
}
window .input {
background: transparent;
color: @text;
}
child:selected .item-box {
background-color: @base;
}