blob: c8f1c692292fb248033cec7bea37bb9ecfbba218 (
plain)
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
|
@theme "/dev/null"
* {
background-color: #130A0C;
}
window {
children: [ horibox ];
border: 1;
border-color: #72595E;
padding: 5;
width: 797;
}
horibox {
orientation: horizontal;
children: [ listview ];
}
listview {
layout: horizontal;
spacing: 5;
children: [element-icon];
}
element {
border-color: #33272A;
border: 1;
children: [element-icon];
}
element-icon {
expand: true;
size: 33%;
squared: false;
}
element selected{
text-color: inherit;
border-color: #95736A;
}
|