blob: fac4188c1184c7565c3742a3ef1d85eb6cebc199 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
configuration {
font: "JetBrainsMono Nerd Font 12";
show-icons: true;
hover-select: true;
me-select-entry: "";
me-accept-entry: "MousePrimary";
}
* {
background-color: #1F1F1F;
text-color: #FFFFFF;
border-color: #FFFFFF;
}
window {
anchor: east;
location: east;
width: 320px;
height: 70%;
x-offset: -15px;
y-offset: 0px;
background-color: #1F1F1F;
border: 1px;
/* @dynamic_rofi_window */
border-radius: 15px;
border-color: #FFFFFF;
}
mainbox {
background-color: transparent;
spacing: 0px;
padding: 5px;
children: [ "inputbar", "listview" ];
}
inputbar {
background-color: transparent;
text-color: #FFFFFF;
padding: 4px 0px;
spacing: 0;
children: [ "prompt", "entry" ];
}
prompt {
background-color: transparent;
text-color: #FFFFFF;
padding: 0px 4px 0px 0px;
content: ">";
}
entry {
background-color: transparent;
text-color: #FFFFFF;
placeholder: "";
cursor: default;
}
listview {
background-color: transparent;
columns: 1;
lines: 5;
spacing: 2px;
cycle: true;
fixed-height: false;
scrollbar: false;
border: 0;
}
element {
orientation: vertical;
background-color: transparent;
padding: 0px;
/* @dynamic_rofi_element */
border-radius: 8px;
cursor: default;
}
element selected {
background-color: transparent;
border: 2px;
border-color: #FFFFFF;
}
element-icon {
background-color: transparent;
size: 170px;
horizontal-align: 0.5;
cursor: default;
}
element-text {
enabled: false;
width: 0px;
padding: 0px;
margin: 0px;
}
|