nie wiem co zmieniałem, a dużo tego było

This commit is contained in:
2022-01-08 14:53:36 +01:00
parent 7f01e3c578
commit 8c1b3b2423
385 changed files with 24002 additions and 180 deletions

View File

@ -0,0 +1,41 @@
/**
* This theme is intended for a 2 items option menu with a headerbar.
*/
@import "shared/option-menu.rasi"
* {
font: @text-font;
}
#window {
height: @confirm-window-height;
width: @confirm-window-width;
children: [ inputbar, horibox ];
border: @confirm-window-border;
border-color: @accent;
}
#inputbar {
children: [ prompt ];
}
#prompt {
padding: @confirm-prompt-padding;
margin: @confirm-prompt-margin;
background-color: @accent;
text-color: @background-light;
}
#listview {
padding: @confirm-listview-padding;
spacing: @option-5-listview-spacing;
lines: 2;
}
#element {
font: @confirm-text-font;
padding: @confirm-element-padding;
}
element.selected.urgent {
background-color: @off;
text-color: @background;
}
element.selected.active {
background-color: @on;
text-color: @background;
}