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;
|
2022-10-01 17:09:55 +00:00
|
|
|
|
2022-07-18 19:20:02 +00:00
|
|
|
Box {
|
|
|
|
orientation: horizontal;
|
|
|
|
spacing: 6;
|
2022-10-01 17:09:55 +00:00
|
|
|
|
2022-07-18 19:20:02 +00:00
|
|
|
Label error-label {
|
|
|
|
halign: start;
|
|
|
|
justify: left;
|
2022-10-01 17:09:55 +00:00
|
|
|
styles ["heading", "error"]
|
2022-07-18 19:20:02 +00:00
|
|
|
}
|
2022-10-01 17:09:55 +00:00
|
|
|
|
2022-07-18 19:20:02 +00:00
|
|
|
Label element-label {
|
|
|
|
halign: start;
|
|
|
|
justify: left;
|
2022-10-01 17:09:55 +00:00
|
|
|
styles ["dim-label", "error"]
|
2022-07-18 19:20:02 +00:00
|
|
|
}
|
|
|
|
}
|
2022-10-01 17:09:55 +00:00
|
|
|
|
2022-07-18 19:20:02 +00:00
|
|
|
Label line-label {
|
|
|
|
halign: start;
|
|
|
|
wrap: true;
|
|
|
|
justify: left;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|