-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplaceholder2.rasi
More file actions
129 lines (116 loc) · 3.79 KB
/
placeholder2.rasi
File metadata and controls
129 lines (116 loc) · 3.79 KB
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/*****----- Configuration -----*****/
* {
background: rgba(24, 18, 11, 1);
background-alt: rgba(37, 31, 23, 1);
foreground: rgba(237, 224, 212, 1);
selected: rgba(244, 189, 110, 1);
hover: rgba(244, 189, 110, 0.2);
active: rgba(184, 206, 161, 1);
urgent: rgba(255, 180, 171, 1);
}
configuration {
show-icons: false;
hover-select: true;
me-select-entry: "";
me-accept-entry: "MousePrimary";
}
/*****----- Main Window -----*****/
window {
transparency: "real";
location: center;
anchor: center;
width: 700px;
background-color: transparent;
border: 0px;
children: [ "mainbox" ];
}
/*****----- Main Box -----*****/
mainbox {
background-color: transparent;
orientation: vertical;
spacing: 15px;
padding: 0px;
children: [ "input-wrapper", "listview" ];
}
/*****----- Top Box (Message + Input) -----*****/
input-wrapper {
orientation: vertical;
expand: false;
padding: 20px;
spacing: 10px;
background-color: @background;
border-radius: 12px;
border: 1px;
border-color: @hover;
children: [ "message", "inputbar" ];
}
/*****----- Message Text -----*****/
message {
padding: 0px 0px 10px 0px;
margin: 0px;
background-color: transparent;
border: 0px;
}
textbox {
background-color: transparent;
text-color: @foreground;
vertical-align: 0.5;
horizontal-align: 0.0;
markup: true;
}
/*****----- Input Bar -----*****/
inputbar {
enabled: true;
padding: 5px;
margin: 0px;
background-color: transparent;
border: 0px;
children: [ "entry" ];
}
entry {
background-color: @background-alt;
text-color: @foreground;
cursor: text;
placeholder: "" ;
placeholder-color: inherit;
vertical-align: 0.5;
horizontal-align: 0.5;
border: 1px;
border-radius: 8px;
border-color: @hover;
padding: 10px;
}
/*****----- Listview (The Buttons) -----*****/
listview {
columns: 1;
lines: 1;
cycle: true;
scrollbar: false;
layout: vertical;
spacing: 15px;
fixed-height: true;
fixed-columns: true;
background-color: transparent;
text-color: @foreground;
border: 0px;
}
element {
padding: 12px 10px;
border-radius: 12px;
background-color: @background;
text-color: @foreground;
cursor: pointer;
border: 1px;
border-color: @hover;
}
element-text {
background-color: transparent;
text-color: inherit;
horizontal-align: 0.5;
vertical-align: 0.5;
}
element selected {
background-color: @selected;
text-color: @background;
border-color: @hover;
}