29 lines
520 B
Text
29 lines
520 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: [ horibox ];
|
||
|
}
|
||
|
#horibox {
|
||
|
children: [ listview ];
|
||
|
}
|
||
|
#listview {
|
||
|
layout: horizontal;
|
||
|
}
|
||
|
#element {
|
||
|
padding: @option-element-padding;
|
||
|
background-color: @background-nofocus;
|
||
|
text-color: @foreground-nofocus;
|
||
|
}
|
||
|
#element.selected {
|
||
|
background-color: @background-focus;
|
||
|
text-color: @foreground-focus;
|
||
|
}
|