29 lines
581 B
Text
29 lines
581 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 {
|
|
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;
|
|
}
|