-
-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathEntryRow.blp
More file actions
55 lines (46 loc) · 908 Bytes
/
EntryRow.blp
File metadata and controls
55 lines (46 loc) · 908 Bytes
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
using Gtk 4.0;
using Adw 1;
template $EntryRow: Adw.ActionRow {
activatable: true;
accessibility {
labelled-by: title_label;
described-by: description_label;
}
[prefix]
Box contents {
orientation: horizontal;
Box labels_box {
margin-top: 6;
margin-bottom: 6;
spacing: 3;
orientation: vertical;
Label title_label {
xalign: 0;
wrap: true;
wrap-mode: word_char;
}
Label description_label {
styles [
"dim-label",
"caption",
]
xalign: 0;
wrap: true;
wrap-mode: word_char;
natural-wrap-mode: none;
}
Box languages_box {
orientation: horizontal;
spacing: 3;
margin-top: 3;
}
}
}
[suffix]
Image {
icon-name: "go-next-symbolic";
margin-start: 6;
hexpand: true;
halign: end;
}
}