Gradience/data/ui/custom_css_group.blp

35 lines
826 B
Text
Raw Normal View History

2022-07-24 17:46:37 +00:00
using Gtk 4.0;
using Adw 1;
2022-08-19 19:14:05 +00:00
template GradienceCustomCSSGroup : Adw.PreferencesGroup {
title: _("Custom CSS");
description: _("Changing this may break some programs. Keep in mind that Libadwaita was made so that applications could hardcode values like paddings and margins.");
2022-07-24 17:46:37 +00:00
[header-suffix]
DropDown app_type_dropdown {
2022-07-24 17:46:37 +00:00
valign: start;
model: app_type_list;
2022-07-24 17:46:37 +00:00
notify => on_dropdown_notify();
}
2022-07-24 18:00:56 +00:00
ScrolledWindow {
min-content-height: 500;
max-content-height: 500;
TextView custom_css_text_view {
styles ["card"]
left-margin: 10;
right-margin: 10;
top-margin: 10;
bottom-margin: 10;
2022-07-24 17:46:37 +00:00
monospace: true;
buffer: TextBuffer {
changed => on_custom_css_changed();
};
}
}
}
StringList app_type_list {
strings [_("GTK 4"), _("GTK 3")]
}