28 lines
533 B
Text
28 lines
533 B
Text
/**
|
|
* Settings for a general purpose
|
|
* horizontal options list menu:
|
|
*/
|
|
@import "../settings.rasi"
|
|
* {
|
|
background-color: @background;
|
|
text-color: @foreground;
|
|
font: @text-font;
|
|
}
|
|
#window {
|
|
children: [ horizbox ];
|
|
}
|
|
#horizbox {
|
|
orientation: horizontal;
|
|
children: [ prompt, entry, listview ];
|
|
}
|
|
#listview {
|
|
layout: horizontal;
|
|
}
|
|
#element {
|
|
background-color: @background-nofocus;
|
|
text-color: @foreground-nofocus;
|
|
}
|
|
#element.selected {
|
|
background-color: @background-focus;
|
|
text-color: @foreground-focus;
|
|
}
|