Closed
Bug 1430872
Opened 7 years ago
Closed 7 years ago
Stop wrapping the whole browser window in a deck (remove tab-view-deck and browser-panel)
Categories
(Firefox :: General, enhancement, P3)
Firefox
General
Tracking
()
RESOLVED
FIXED
Firefox 59
Tracking | Status | |
---|---|---|
firefox59 | --- | fixed |
People
(Reporter: dao, Assigned: dao)
References
Details
Attachments
(1 file)
No description provided.
Comment hidden (mozreview-request) |
Comment 2•7 years ago
|
||
mozreview-review |
Comment on attachment 8943007 [details]
Bug 1430872 - remove tab-view-deck and browser-panel.
https://reviewboard.mozilla.org/r/213280/#review219248
::: browser/themes/windows/compacttheme.css:128
(Diff revision 1)
>
> - /* Use default window colors when in non-maximized mode */
> + /* Use default window colors */
> - #tabbrowser-tabs,
> #TabsToolbar,
> - #browser-panel,
> - #titlebar-content {
> + #navigator-toolbox {
> + background-color: transparent;
For the benefit of future archaeology, can you explain why you removed `#titlebar-content` from this selector?
Attachment #8943007 -
Flags: review?(gijskruitbosch+bugs) → review+
Assignee | ||
Comment 3•7 years ago
|
||
(In reply to :Gijs from comment #2)
> ::: browser/themes/windows/compacttheme.css:128
> (Diff revision 1)
> >
> > - /* Use default window colors when in non-maximized mode */
> > + /* Use default window colors */
> > - #tabbrowser-tabs,
> > #TabsToolbar,
> > - #browser-panel,
> > - #titlebar-content {
> > + #navigator-toolbox {
> > + background-color: transparent;
>
> For the benefit of future archaeology, can you explain why you removed
> `#titlebar-content` from this selector?
#titlebar-content doesn't get a background in the first place on Windows.
Pushed by dgottwald@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/80e57c896fd7
remove tab-view-deck and browser-panel. r=Gijs
Comment 5•7 years ago
|
||
bugherder |
Status: ASSIGNED → RESOLVED
Closed: 7 years ago
status-firefox59:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → Firefox 59
Is there any way to move toolbars to the window bottom after this change? The following userChrome.css solution does not work anymore:
#browser-panel {
-moz-box-direction: reverse;
}
Replacing browser-panel with navigator-toolbox does not give me the correct result.
Assignee | ||
Comment 7•7 years ago
|
||
(In reply to init from comment #6)
> Is there any way to move toolbars to the window bottom after this change?
Using -moz-box-ordinal-group, yes.
Thanks. I was able to restore my preferred layout with:
#navigator-toolbox {
-moz-box-ordinal-group: 2;
}
You need to log in
before you can comment on or make changes to this bug.
Description
•