Edited rofi theme after system upgrade due to inconsistent sizing of
[my-dotfiles.git] / rofi / blackpearl / appmenu.rasi
1 /*
2 * BLACKPEARL appsmenu rofi theme
3 * tested on a 1366x768 screen
4 */
5
6 /* IMPORTS */
7 @import "shared/settings.rasi"
8 @import "shared/reset.rasi"
9
10
11 #scrollbar {
12 enabled: false;
13 }
14 #window {
15 fullscreen: true;
16 transparency: "real";
17 background-color: @bg-trans;
18 }
19
20 #mainbox {
21 children: [ inputbar, listview ];
22 border: 0;
23 padding: 0;
24 }
25
26 #inputbar {
27 padding: 40px 383px 10px;
28 }
29 #prompt {
30 enabled: false;
31 }
32 #entry {
33 background-color: @bg-focus;
34 border: 1px solid;
35 border-color: @accent;
36 color: @accent;
37 border-radius: 5px;
38 padding: 10px;
39 horizontal-align: 0.0;
40 vertical-align: 0.5;
41 placeholder: "enter app to search...";
42 placeholder-color: @fg;
43 }
44
45 #listview {
46 columns: 6;
47 lines: 6;
48 expand: false;
49 /*cycle: true;*/
50 spacing: 30px;
51 padding: 80px 10px 50px;
52
53 }
54 #element {
55 border: 1;
56 border-radius: 24;
57 border-color: @transparent;
58 text-color: @fg;
59 orientation: vertical;
60 padding: 16 24;
61 }
62 #element.selected {
63 background-color: @bg-focus;
64 border-color: @accent;
65 }
66 #element-icon {
67 horizontal-align: 0.5;
68 vertical-align: 0.5;
69 size: 128;
70 }
71 #element-name {
72 horizontal-align: 0.5;
73 vertical-align: 0.5;
74 }