Open
Bug 629339
Opened 14 years ago
Updated 2 years ago
custom toolbars should be positioned immediately below bookmarks toolbar
Categories
(Firefox :: Toolbars and Customization, defect)
Firefox
Toolbars and Customization
Tracking
()
NEW
People
(Reporter: valeriopetroni, Unassigned)
References
()
Details
Attachments
(2 files)
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; it; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 6.1; it; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
adding a new toolbar from the window "Customize Toolbar", this remains detached from the the other toolbars
Reproducible: Always
with this code the toolbars are in the right position:
/*MENUBAR TOOLBAR*/
#navigator-toolbox[tabsontop="false"] #toolbar-menubar
{ -moz-box-ordinal-group: 1 !important; }
/*NAVIGATION TOOLBAR(urlbar and searchbar)*/
#navigator-toolbox[tabsontop="false"] #nav-bar
{ -moz-box-ordinal-group: 2 !important; }
/*BOOKMARKS TOOLBAR*/
#navigator-toolbox[tabsontop="false"] #PersonalToolbar
{ -moz-box-ordinal-group: 3 !important; }
/*EXTRA TOOLBARS ADDED*/
#navigator-toolbox[tabsontop="false"] [ID^='__customToolbar']
{ -moz-box-ordinal-group: 4 !important; }
Updated•14 years ago
|
Status: UNCONFIRMED → NEW
Ever confirmed: true
OS: Windows 7 → All
Hardware: x86_64 → All
Summary: (tabs on bottom) custom toolbars should be grouped between bookmarks toolbar and tabs toolbar → custom toolbars should be positioned immediately below bookmarks toolbar
Version: unspecified → Trunk
Updated•14 years ago
|
Assignee: nobody → fryn
Status: NEW → ASSIGNED
The last lines of comment 2 does not function. The code does work, since the default ordinal-group number for custom toolbars is 10, and the others are simply moved up. For not breaking things, the following probably is better (obviously based on Valerio's, just changed a bit by me).
#navigator-toolbox[tabsontop="false"] > [id^="__customToolbar"] {
-moz-box-ordinal-group: 75 !important;
}
It places custom toolbars between bookmarks (=50) and tabbar (=100).
For a reason I can't understand, this code, unlike the one in comment 2, changes behavior in tabs on top mode. In tabs on top, only the first custom toolbar will now be placed above bookmarks toolbar, all others beneath it. Since the code explicitly should not affect tabsontop, I just don't get it.
Hi pino, have you restarted the browser after the change? I've tried your change and I had the same problem but after a restart it worked
Comment 5•14 years ago
|
||
Alex, where did we want the custom toolbars to go in tabs-on-top and tabs-on-bottom mode? And should they be detached or attached? With glassed or opaque background?
Comment 6•14 years ago
|
||
Nevermind. I found it:
Tabs on top:
https://wiki.mozilla.org/images/a/aa/Firefox-4-Mockup-i06-%28Win7%29-%28Aero%29-%28TabsTop%29-%28ExtraToolbars%29.png
Tabs on bottom:
https://wiki.mozilla.org/images/1/11/Firefox-4-Mockup-i06-%28Win7%29-%28Aero%29-%28TabsBottom%29-%28ExtraToolbars%29.png
Comment 7•14 years ago
|
||
Since this is not really a problem in the default tabs-on-top configuration, this is a low priority bug, so unassigning myself.
Assignee: fryn → nobody
Status: ASSIGNED → NEW
Updated•2 years ago
|
Severity: normal → S3
You need to log in
before you can comment on or make changes to this bug.
Description
•