30 lines
628 B
Text
30 lines
628 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 {
|
|
option-element-padding: 88px 100px 81px 4px;
|
|
padding: @option-element-padding;
|
|
background-color: @background-nofocus;
|
|
text-color: @foreground-nofocus;
|
|
}
|
|
#element.selected {
|
|
background-color: @background-focus;
|
|
text-color: @foreground-focus;
|
|
}
|