-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathwalker.css
More file actions
49 lines (42 loc) · 943 Bytes
/
walker.css
File metadata and controls
49 lines (42 loc) · 943 Bytes
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
@define-color selected-text #8683b5;
@define-color text #ffffff;
@define-color base #050709;
@define-color border #4a4a4a;
@define-color foreground #ffffff;
@define-color background #050709;
/* Search */
window .search-container,
window .search {
background: alpha(@hover, 0.35);
color: @foreground;
border-radius: 10px;
}
/* Main container */
.box-wrapper {
border-radius: 12px;
background: @background;
}
/* Item base */
child {
border-radius: 10px;
padding: 2px 6px;
transition:
background-color 0.18s ease-out,
margin 0.18s ease-out;
}
/* Hover */
child:hover {
background-color: alpha(@hover, 0.25);
}
/* Selected item */
child:selected {
background-color: alpha(@selected-box, 0.45);
transition: background-color 0.22s ease-out;
}
child:selected .item-box {
margin-left: 6px;
transition: margin 0.18s ease-out;
}
child:selected .item-box * {
color: @text;
}