-
-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathExtension.blp
More file actions
60 lines (49 loc) · 1010 Bytes
/
Extension.blp
File metadata and controls
60 lines (49 loc) · 1010 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
56
57
58
59
60
using Gtk 4.0;
template $Extension: ListBoxRow {
activatable: false;
Box {
orientation: vertical;
CenterBox {
height-request: 55;
valign: center;
halign: fill;
margin-start: 14;
margin-end: 14;
[start]
Label label_title {}
[end]
Image image_available {
icon-name: "re.sonny.Workbench-test-pass-symbolic";
styles [
"success",
]
}
}
Box installation_guide {
visible: false;
margin-start: 14;
margin-end: 14;
margin-bottom: 14;
orientation: vertical;
Label {
wrap: true;
xalign: 0;
label: _("Run the following command");
styles [
"dim-label",
]
}
Label label_command {
margin-top: 12;
use-markup: true;
wrap: true;
wrap-mode: word_char;
selectable: true;
xalign: 0;
styles [
"command_snippet",
]
}
}
}
}