-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwalker.css
More file actions
136 lines (117 loc) · 2.5 KB
/
walker.css
File metadata and controls
136 lines (117 loc) · 2.5 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
@define-color selected-text #05080a;
@define-color text #a29da2;
@define-color base #05080a;
@define-color border #141719;
@define-color foreground #dce2f7;
@define-color background #05080a;
@define-color select #baf7b5;
window * {
all: unset;
color: @text;
background: none;
border: none;
margin: 0;
padding: 0;
font-size: 18px;
line-height: 1em;
}
window .normal-icons,
window .large-icons,
window .item-image,
window .symbols {
-gtk-icon-size: 24px;
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, 1);
border-radius: 9px;
padding: 4px;
margin: 0px 0px 0px 0px;
box-shadow: 0 2px 12px alpha(black, 1);
backdrop-filter: blur(1px);
color: @text;
}
window .search-container {
border-radius: 7px;
padding: 6px 12px;
margin: 0px 0px 0px 0px;
background: alpha(#dfbaff, 1);
box-shadow: inset 0 0 3px alpha(white, 0);
backdrop-filter: blur(1px);
color: @base;
animation: input-alive 3.5s ease-in-out infinite;
}
window .search-container text,
window .input {
background: transparent;
padding: 0px 0px;
color: @base;
caret-color: @text;
}
window .search-container .placeholder,
window .search-container entry placeholder {
color: @base;
opacity: 1;
}
window .preview {
border: 0px solid alpha(@border, 0);
border-radius: 7px;
background: alpha(@base, 0.5);
color: @text;
padding: 10px 10px 10px;
margin: 10px 0px 10px;
box-shadow: inset 0 0 8px alpha(white, 0);
backdrop-filter: blur(8px);
}
/* --- Selection States --- */
child:selected {
background-color: alpha(@select, 1);
border-radius: 7px;
}
child:selected .item-box {
padding: 2px 12px;
color: @selected-text;
}
child:selected .item-title,
child:selected .item-text {
color: @selected-text;
}
.item-box {
padding: 2px 12px;
spacing: 8px;
vertical-align: center;
}
.item-text {
vertical-align: center;
margin: 0;
padding: 0;
}
.item-title {
font-weight: bold;
color: @text;
}
.item-subtitle {
font-size: 10px;
opacity: 0.7;
}
.item-icon {
margin-right: 4px;
vertical-align: center;
}
.elephant-hint,
.keybind-bind,
.keybind-label {
border-radius: 8px;
background-color: #b2fff3;
color: @base;
font-weight: bold;
font-size: 12px;
padding: 2px 4px;
margin: 0 0 0 0;
line-height: 1em;
}