Closed
Bug 602893
Opened 14 years ago
Closed 14 years ago
Put setting textboxes on separate row when in portrait
Categories
(Firefox for Android Graveyard :: General, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: mfinkle, Assigned: mfinkle)
Details
Attachments
(1 file)
6.81 KB,
patch
|
mbrubeck
:
review+
|
Details | Diff | Splinter Review |
We easily run out of space for a label and textbox on the same row in Fennec preferences. This patch puts the label and textbox on separate rows.
The patch adds some CSS classes to the setting XBL to make it easier to access from CSS.
Attachment #481859 -
Flags: review?(mbrubeck)
Comment 1•14 years ago
|
||
Comment on attachment 481859 [details] [diff] [review]
patch
Looks nice! Just one nit: if you add flex="1" to the xul:textbox element in the setting-string XBL, then you can get delete this slow CSS rule:
>+#editor-setting[type="string"] .setting-input > textbox {
> -moz-box-flex: 1;
> }
This one is important because it will be tested against every <textbox> element, and it contains a descendant selector.
Attachment #481859 -
Flags: review?(mbrubeck) → review+
Assignee | ||
Comment 2•14 years ago
|
||
(In reply to comment #1)
> Comment on attachment 481859 [details] [diff] [review]
> patch
>
> Looks nice! Just one nit: if you add flex="1" to the xul:textbox element in
> the setting-string XBL, then you can get delete this slow CSS rule:
>
> >+#editor-setting[type="string"] .setting-input > textbox {
> > -moz-box-flex: 1;
> > }
>
> This one is important because it will be tested against every <textbox>
> element, and it contains a descendant selector.
I think we should file a new bug on reworking about:config and config.css
I think we should be using vertical aligned textboxes there too. And I found a weird bug with the editor.
Assignee | ||
Comment 3•14 years ago
|
||
Assignee: nobody → mark.finkle
Status: NEW → RESOLVED
Closed: 14 years ago
Resolution: --- → FIXED
Comment 4•14 years ago
|
||
Can you provide some webpages to test this?
You need to log in
before you can comment on or make changes to this bug.
Description
•