45 lines
693 B
Text
45 lines
693 B
Text
|
/**
|
||
|
* Layout for the horizontal top bar
|
||
|
* dmenu we all know and love
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
@import "../settings.rasi"
|
||
|
* {
|
||
|
background-color: @background;
|
||
|
border-color: @accent;
|
||
|
text-color: @foreground;
|
||
|
font: @text-font;
|
||
|
}
|
||
|
|
||
|
#window {
|
||
|
anchor: north;
|
||
|
location: north;
|
||
|
width: 100%;
|
||
|
padding: 4px;
|
||
|
children: [ horizbox ];
|
||
|
}
|
||
|
|
||
|
#horizbox {
|
||
|
orientation: horizontal;
|
||
|
children: [ prompt, entry, listview ];
|
||
|
}
|
||
|
|
||
|
#listview {
|
||
|
layout: horizontal;
|
||
|
spacing: 5px;
|
||
|
lines: 100;
|
||
|
}
|
||
|
|
||
|
#entry {
|
||
|
expand: false;
|
||
|
width: 10em;
|
||
|
}
|
||
|
|
||
|
#element {
|
||
|
padding: 0px 2px;
|
||
|
}
|
||
|
#element selected {
|
||
|
background-color: @background-focus;
|
||
|
}
|