mirror of
https://github.com/GradienceTeam/Gradience.git
synced 2024-11-07 21:11:42 +00:00
35 lines
591 B
Text
35 lines
591 B
Text
using Gtk 4.0;
|
|
using Adw 1;
|
|
|
|
template GradienceErrorListRow : ListBoxRow {
|
|
Box {
|
|
orientation: vertical;
|
|
margin-top: 6;
|
|
margin-bottom: 6;
|
|
margin-start: 6;
|
|
margin-end: 6;
|
|
|
|
Box {
|
|
orientation: horizontal;
|
|
spacing: 6;
|
|
|
|
Label error-label {
|
|
halign: start;
|
|
justify: left;
|
|
styles ["heading", "error"]
|
|
}
|
|
|
|
Label element-label {
|
|
halign: start;
|
|
justify: left;
|
|
styles ["dim-label", "error"]
|
|
}
|
|
}
|
|
|
|
Label line-label {
|
|
halign: start;
|
|
wrap: true;
|
|
justify: left;
|
|
}
|
|
}
|
|
}
|