Commit 65c38d8a authored by Bilal Elmoussaoui's avatar Bilal Elmoussaoui

Merge branch 'master' into 'master'

Minor tweaks See merge request bilelmoussaoui/gnome-tour!2
parents 34dbd44e 44a6eed6
...@@ -7,7 +7,6 @@ ...@@ -7,7 +7,6 @@
.page-head { .page-head {
font-weight: 300; font-weight: 300;
font-size: 20pt; font-size: 20pt;
letter-spacing: 0.2rem;
} }
.title-1 { .title-1 {
......
...@@ -29,7 +29,7 @@ impl WelcomePageWidget { ...@@ -29,7 +29,7 @@ impl WelcomePageWidget {
title.get_style_context().add_class("large-title"); title.get_style_context().add_class("large-title");
self.widget.add(&title); self.widget.add(&title);
let text = gtk::Label::new(Some("Take the tour to learn some essential fatures. It only takes a minute.")); let text = gtk::Label::new(Some("Hi there! If you are new to GNOME, you can take the tour to learn some essential features."));
text.get_style_context().add_class("body"); text.get_style_context().add_class("body");
text.set_margin_top(12); text.set_margin_top(12);
self.widget.add(&text); self.widget.add(&text);
...@@ -46,7 +46,7 @@ impl WelcomePageWidget { ...@@ -46,7 +46,7 @@ impl WelcomePageWidget {
start_tour_btn.set_action_name(Some("app.start-tour")); start_tour_btn.set_action_name(Some("app.start-tour"));
let skip_tour_btn = gtk::Button::new(); let skip_tour_btn = gtk::Button::new();
skip_tour_btn.add(&gtk::Label::new(Some("Skip"))); skip_tour_btn.add(&gtk::Label::new(Some("No Thanks")));
skip_tour_btn.set_property_height_request(40); skip_tour_btn.set_property_height_request(40);
skip_tour_btn.set_property_width_request(180); skip_tour_btn.set_property_width_request(180);
skip_tour_btn.set_action_name(Some("app.skip-tour")); skip_tour_btn.set_action_name(Some("app.skip-tour"));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment