blob: b87283876877bfd3d2211349f333922def4268be (
plain) (
blame)
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
|
configuration {
modi: "drun";
click-to-exit: true;
show-icons: false;
}
* {
font: "Noto 10";
text-color: #eceff4;
background-color: #1d1f21;
padding: 10px;
lines: 10;
}
window {
width: 25%;
orientation: vertical;
border: 1px;
border-color: #eceff4;
}
mainbox {
children: [inputbar, listview];
}
textbox {
text-color: #1d1f21;
background-color: #1d1f21;
}
element {
border: 0;
padding: 8px;
}
element selected {
text-color: #5f819d;
}
inputbar {
children: [entry];
spacing: 0px;
}
entry {
padding: 1px 0px;
}
|