blob: 5d8310b43596e205d094961fcede0f5a724f86d7 (
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
|
/*
* udt menu layout: a small box for a few fixed options.
* For the screenshot menu, notes actions, the power menu.
* Copyright (C) 2026 Danilo M. <danix@danix.xyz>
* Licensed under the GNU General Public License v2 only.
*/
@import "common.rasi"
window {
width: 380px;
anchor: center;
location: center;
}
mainbox {
children: [ listview ];
}
listview {
columns: 1;
lines: 6;
fixed-height: false;
}
element {
padding: 10px 12px;
}
|