dotfiles/.config/rofi/themes/layouts/list-horizontal.rasi

31 lines
628 B
Plaintext
Raw Normal View History

/**
* Settings for a general purpose
* horizontal options list menu:
*/
@import "../settings.rasi"
* {
background-color: @background;
text-color: @foreground;
font: @text-font;
}
#window {
2019-09-05 19:15:50 +00:00
children: [ horizbox ];
}
2019-09-05 19:15:50 +00:00
#horizbox {
orientation: horizontal;
children: [ prompt, entry, listview ];
}
#listview {
layout: horizontal;
}
#element {
2019-09-05 11:03:51 +00:00
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;
}