mirror of
https://github.com/GradienceTeam/Gradience.git
synced 2024-11-02 11:43:58 +00:00
4edc5f4b50
* move flatpak manifests to build-aux/flatpak directory * update workflows to new manifests locations * update README
31 lines
582 B
Text
31 lines
582 B
Text
using Gtk 4.0;
|
|
using Adw 1;
|
|
|
|
template GradienceError : ListBoxRow {
|
|
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;
|
|
}
|
|
}
|
|
}
|