Edited rofi theme after system upgrade due to inconsistent sizing of
[my-dotfiles.git] / rofi / blackpearl / appmenu.rasi
CommitLineData
fdd76fc5 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;
a443d3fd 35 border-color: @accent;
36 color: @accent;
fdd76fc5 37 border-radius: 5px;
a443d3fd 38 padding: 10px;
fdd76fc5 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;
a443d3fd 47 lines: 6;
fdd76fc5 48 expand: false;
49 /*cycle: true;*/
a443d3fd 50 spacing: 30px;
51 padding: 80px 10px 50px;
fdd76fc5 52
53}
54#element {
55 border: 1;
56 border-radius: 24;
57 border-color: @transparent;
58 text-color: @fg;
59 orientation: vertical;
a443d3fd 60 padding: 16 24;
fdd76fc5 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;
a443d3fd 69 size: 128;
fdd76fc5 70}
71#element-name {
72 horizontal-align: 0.5;
73 vertical-align: 0.5;
74}