35 lines
606 B
Plaintext
35 lines
606 B
Plaintext
/**
|
|
* Settings used in every rofi option menu:
|
|
* - i3-layout
|
|
* - music
|
|
* - power
|
|
* - screenshot
|
|
*/
|
|
@import "settings.rasi"
|
|
* {
|
|
background-color: @normal-background;
|
|
text-color: @normal-foreground;
|
|
font: @icon-font;
|
|
}
|
|
#window {
|
|
children: [ horibox ];
|
|
}
|
|
#horibox {
|
|
children: [ listview ];
|
|
}
|
|
#listview {
|
|
layout: horizontal;
|
|
}
|
|
element {
|
|
padding: @option-element-padding;
|
|
}
|
|
element.normal.normal,
|
|
element.alternate.normal {
|
|
background-color: @normal-background;
|
|
}
|
|
element.selected.normal {
|
|
background-color: @selected-normal-background;
|
|
text-color: @selected-normal-foreground;
|
|
}
|
|
|