blob: a88bdaf553230ac4cfe63b2aa7d68e4af4cf6acc (
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
50
51
52
53
54
|
* {
background-color: #282828;
border-color: #458588;
text-color: #ebdbb2;
font: "JetBrainsMono Nerd Font 10";
prompt-font: "JetBrainsMono Nerd Font 10";
prompt-background: #458588;
prompt-foreground: #282828;
prompt-padding: 2px 6px;
selected-normal-background: #458588;
selected-normal-foreground: #ebdbb2;
}
#window {
anchor: north;
location: north;
width: 35%;
padding: 0px;
children: [ mainbox ];
}
#mainbox {
orientation: vertical;
children: [ inputbar, listview ];
}
#inputbar {
children: [ prompt, entry ];
}
#prompt {
padding: @prompt-padding;
background-color: @prompt-background;
text-color: @prompt-foreground;
font: @prompt-font;
}
#listview {
layout: vertical;
columns: 1;
lines: 12;
fixed-height: false;
}
#entry {
padding: 2px;
expand: false;
width: 10em;
}
#element {
padding: 2px 8px;
}
#element selected {
background-color: @selected-normal-background;
text-color: @selected-normal-foreground;
}
element-text {
background-color: inherit;
text-color: inherit;
}
|