Gradience/data/ui/error.blp

32 lines
582 B
Text
Raw Normal View History

2022-07-18 19:20:02 +00:00
using Gtk 4.0;
using Adw 1;
2022-08-19 19:14:05 +00:00
template GradienceError : ListBoxRow {
2022-07-18 19:20:02 +00:00
Box {
orientation: vertical;
margin-top: 6;
margin-bottom: 6;
margin-start: 12;
margin-end: 12;
Box {
orientation: horizontal;
spacing: 6;
Label error-label {
styles ["heading", "error"]
halign: start;
justify: left;
}
Label element-label {
styles ["dim-label", "error"]
halign: start;
justify: left;
}
}
Label line-label {
halign: start;
wrap: true;
justify: left;
}
}
}