Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions data/Application.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@
* SPDX-FileCopyrightText: 2024 elementary, Inc. (https://elementary.io)
*/

checkbutton > box {
border-spacing: 0.5rem;
}

checkbutton header {
margin-top: 0;
}
Expand Down
2 changes: 1 addition & 1 deletion src/Views/AbstractOnboardingView.vala
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public abstract class Onboarding.AbstractOnboardingView : Adw.NavigationPage {
};
description_label.add_css_class (Granite.CssClass.DIM);

var header_area = new Gtk.Box (VERTICAL, 0);
var header_area = new Granite.Box (VERTICAL, NONE);
header_area.append (overlay);
header_area.append (title_label);
header_area.append (description_label);
Expand Down
8 changes: 4 additions & 4 deletions src/Views/HouseKeepingView.vala
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public class Onboarding.HouseKeepingView : AbstractOnboardingView {
{_("Automatically Delete"), temp_label.label}
);

var temp_box = new Gtk.Box (HORIZONTAL, 0);
var temp_box = new Granite.Box (HORIZONTAL, HALF);
temp_box.append (new Gtk.Image.from_icon_name ("folder") { pixel_size = 24 });
temp_box.append (temp_label);
temp_box.set_parent (temp_check);
Expand All @@ -64,7 +64,7 @@ public class Onboarding.HouseKeepingView : AbstractOnboardingView {
{_("Automatically Delete"), download_label.label}
);

var download_box = new Gtk.Box (HORIZONTAL, 0);
var download_box = new Granite.Box (HORIZONTAL, HALF);
download_box.append (new Gtk.Image.from_icon_name ("folder-download") { pixel_size = 24 });
download_box.append (download_label);
download_box.set_parent (download_check);
Expand All @@ -80,7 +80,7 @@ public class Onboarding.HouseKeepingView : AbstractOnboardingView {
{_("Automatically Delete"), screenshots_label.label}
);

var screenshots_box = new Gtk.Box (HORIZONTAL, 0);
var screenshots_box = new Granite.Box (HORIZONTAL, HALF);
screenshots_box.append (new Gtk.Image.from_icon_name ("folder-screenshots-icon") { pixel_size = 24 });
screenshots_box.append (screenshots_label);
screenshots_box.set_parent (screenshots_check);
Expand All @@ -96,7 +96,7 @@ public class Onboarding.HouseKeepingView : AbstractOnboardingView {
{_("Automatically Delete"), trash_label.label}
);

var trash_box = new Gtk.Box (HORIZONTAL, 0);
var trash_box = new Granite.Box (HORIZONTAL, HALF);
trash_box.append (new Gtk.Image.from_icon_name ("user-trash-full") { pixel_size = 24 });
trash_box.append (trash_label);
trash_box.set_parent (trash_check);
Expand Down
4 changes: 2 additions & 2 deletions src/Views/UpdatesView.vala
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class Onboarding.UpdatesView : AbstractOnboardingView {
secondary_text = _("Apps being tried for free will not update automatically")
};

var appcenter_box = new Gtk.Box (HORIZONTAL, 0);
var appcenter_box = new Granite.Box (HORIZONTAL, HALF);
appcenter_box.append (new Gtk.Image.from_icon_name ("io.elementary.appcenter") { icon_size = LARGE });
appcenter_box.append (appcenter_label);
appcenter_box.set_parent (appcenter_check);
Expand All @@ -33,7 +33,7 @@ public class Onboarding.UpdatesView : AbstractOnboardingView {
secondary_text = _("Will be installed when you choose to restart this device")
};

var system_box = new Gtk.Box (HORIZONTAL, 0);
var system_box = new Granite.Box (HORIZONTAL, HALF);
system_box.append (new Gtk.Image.from_icon_name ("io.elementary.settings") { icon_size = LARGE });
system_box.append (system_label);
system_box.set_parent (system_check);
Expand Down