You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Library/Library.blp
+40-6Lines changed: 40 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -50,12 +50,24 @@ Adw.Window window {
50
50
]
51
51
}
52
52
53
-
SearchEntry search_entry {
54
-
search-delay: 100;
55
-
placeholder-text: _("Search demos");
56
-
activates-default: true;
57
-
width-request: 400;
58
-
margin-top: 32;
53
+
Box {
54
+
spacing: 6;
55
+
56
+
SearchEntry search_entry {
57
+
search-delay: 100;
58
+
placeholder-text: _("Search demos");
59
+
activates-default: true;
60
+
hexpand: true;
61
+
margin-top: 32;
62
+
}
63
+
64
+
DropDown dropdown_language {
65
+
valign: end;
66
+
}
67
+
68
+
DropDown dropdown_category {
69
+
valign: end;
70
+
}
59
71
}
60
72
}
61
73
@@ -215,6 +227,28 @@ Adw.Window window {
215
227
halign: center;
216
228
margin-bottom: 24;
217
229
margin-top: 12;
230
+
orientation: vertical;
231
+
232
+
Box results_empty {
233
+
orientation: vertical;
234
+
visible: false;
235
+
margin-top: 46;
236
+
margin-bottom: 70;
237
+
spacing: 6;
238
+
239
+
Label {
240
+
label: _("No results");
241
+
242
+
styles [
243
+
"title-4"
244
+
]
245
+
}
246
+
247
+
Button button_reset {
248
+
label: _("Reset filters");
249
+
halign: center;
250
+
}
251
+
}
218
252
219
253
Label {
220
254
label: _("All examples are dedicated to the public domain\nand <b>can be used freely</b> under the terms of <a href=\"https://creativecommons.org/publicdomain/zero/1.0/\">CC0 1.0</a>");
0 commit comments