GNOME Bugzilla – Bug 678769
Introductory banner too wide
Last modified: 2016-03-31 13:57:37 UTC
I recommend having lower max-width for the introductory graphic + text. It is extremely wide now and doesn't look good on _any_ resolution. Lower resolution/screen size lacks white space on the right hand side, and high resolution screens make the super long lines of text hard to read and visually unbalanced. The recommend using the same width as the menu widget on the next page.
Created attachment 217180 [details] text lines too wide, unpleasant proportions/layout.
Created attachment 217181 [details] small res - no white space on the right hand side
Created attachment 217182 [details] appropriate layout on the next page.
Created attachment 217378 [details] [review] Fix layout of initial wizard page The page had no max width, making the label become very wide (not wrapping) when the window was wide. Also, the margins were not consisten. The fix works by setting the minimal size and the margin on the notebook itself, and properly centering the first notebook page. We also set a max width on the label.
Review of attachment 217378 [details] [review]: Looks good apart from a small nit. ::: src/wizard.vala @@ +420,3 @@ // Work around clutter size allocation issue (bz#677260) label.width_chars = 30; + label.max_width_chars = 30; 30 looks a bit cramped here, and makes the text + image smaller than the iso chooser on the next page. 40 looks better imo (at least on my setup).
Attachment 217378 [details] pushed as d36ca03 - Fix layout of initial wizard page
I agree, pushed with that change.