Status bar for Firefox Quantum
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
1. Summary
I use many addon buttons in Firefox.
I don't find, how I can add additional bar for these buttons in Firefox Quantum.
I need add new bar, not modify already existing Menu and Bookmarks bars.
2. Not helped
- In previous Firefox versions I use Status-4-evar plugin, but it not Quantum-compatible.
- I don't find Quantum-compatible in https://addons.mozilla.org site; for example, not compatible New Add-on Bar or The Addon Bar plugins.
- I don't find, how I can solve this problem, in Google, for example, similar question.
3. Do not offer
Please, do not offer:
- use another browser,
- downgrade Firefox.
firefox firefox-extensions statusbar firefox-quantum
add a comment |
1. Summary
I use many addon buttons in Firefox.
I don't find, how I can add additional bar for these buttons in Firefox Quantum.
I need add new bar, not modify already existing Menu and Bookmarks bars.
2. Not helped
- In previous Firefox versions I use Status-4-evar plugin, but it not Quantum-compatible.
- I don't find Quantum-compatible in https://addons.mozilla.org site; for example, not compatible New Add-on Bar or The Addon Bar plugins.
- I don't find, how I can solve this problem, in Google, for example, similar question.
3. Do not offer
Please, do not offer:
- use another browser,
- downgrade Firefox.
firefox firefox-extensions statusbar firefox-quantum
add a comment |
1. Summary
I use many addon buttons in Firefox.
I don't find, how I can add additional bar for these buttons in Firefox Quantum.
I need add new bar, not modify already existing Menu and Bookmarks bars.
2. Not helped
- In previous Firefox versions I use Status-4-evar plugin, but it not Quantum-compatible.
- I don't find Quantum-compatible in https://addons.mozilla.org site; for example, not compatible New Add-on Bar or The Addon Bar plugins.
- I don't find, how I can solve this problem, in Google, for example, similar question.
3. Do not offer
Please, do not offer:
- use another browser,
- downgrade Firefox.
firefox firefox-extensions statusbar firefox-quantum
1. Summary
I use many addon buttons in Firefox.
I don't find, how I can add additional bar for these buttons in Firefox Quantum.
I need add new bar, not modify already existing Menu and Bookmarks bars.
2. Not helped
- In previous Firefox versions I use Status-4-evar plugin, but it not Quantum-compatible.
- I don't find Quantum-compatible in https://addons.mozilla.org site; for example, not compatible New Add-on Bar or The Addon Bar plugins.
- I don't find, how I can solve this problem, in Google, for example, similar question.
3. Do not offer
Please, do not offer:
- use another browser,
- downgrade Firefox.
firefox firefox-extensions statusbar firefox-quantum
firefox firefox-extensions statusbar firefox-quantum
edited Feb 16 '18 at 8:41
Саша Черных
asked Feb 16 '18 at 8:20
Саша ЧерныхСаша Черных
325622
325622
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
This should be possible with userChrome.css
. I found this Github where there are a lot of customizations for Firefox available: https://github.com/Aris-t2/CustomCSSforFx
One that stood out was addonbar_extra_bookmarks_toolbar_below_navbar_fx65.css
. If you add its code to your userChrome.css
file, it will add another bar below the navigation bar.
/* create an empty space below navigation toolbar */
/* Firefox Quantum userChrome.css tweaks ************************************************/
/* Github: https://github.com/aris-t2/customcssforfx ************************************/
/****************************************************************************************/
#main-window:not([customizing="true"]) #nav-bar {
padding-bottom: 26px !important;
}
/* reduce maximum width of location bar and search bar on navigation toolbar */
#main-window:not([customizing="true"]) #nav-bar :-moz-any(#urlbar-container, #urlbar, #search-container, #searchbar) {
min-width: 50px !important;
}
/* move bookmarks to empty space below navigation toolbar, if on navigation toolbar */
#main-window:not([customizing="true"]) #nav-bar #personal-bookmarks {
position: absolute !important;
bottom: 1px !important;
min-width: 0 !important;
width: auto !important;
max-width: 100vw !important;
}
/* reduce size of bookmarks 'more bookmarks' menu chevron and remove its background color on navigation toolbar */
#nav-bar #personal-bookmarks #PlacesChevron .toolbarbutton-icon {
min-width: 0px !important;
min-height: 0px !important;
width: 16px !important;
height: 16px !important;
padding: 0 !important;
margin: 0 !important;
background: unset !important;
box-shadow: unset !important;
}
/* set minimum height for bookmarks, when on navigation toolbar */
#nav-bar #personal-bookmarks toolbarbutton.bookmark-item:not(.subviewbutton) {
min-height: 24px !important;
}
/* adjustments */
#nav-bar #personal-bookmarks {
min-width: 40px !important;
width: auto !important;
max-width: 50vw !important;
}
Now you will have to move the Bookmarks Toolbar Items into the navigation bar using Firefox's customize option. Then you can use the bar just for add-ons, just drag them down.
I only have one add-on on this browser so it's not a great test but I can test more once I get home.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1295489%2fstatus-bar-for-firefox-quantum%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
This should be possible with userChrome.css
. I found this Github where there are a lot of customizations for Firefox available: https://github.com/Aris-t2/CustomCSSforFx
One that stood out was addonbar_extra_bookmarks_toolbar_below_navbar_fx65.css
. If you add its code to your userChrome.css
file, it will add another bar below the navigation bar.
/* create an empty space below navigation toolbar */
/* Firefox Quantum userChrome.css tweaks ************************************************/
/* Github: https://github.com/aris-t2/customcssforfx ************************************/
/****************************************************************************************/
#main-window:not([customizing="true"]) #nav-bar {
padding-bottom: 26px !important;
}
/* reduce maximum width of location bar and search bar on navigation toolbar */
#main-window:not([customizing="true"]) #nav-bar :-moz-any(#urlbar-container, #urlbar, #search-container, #searchbar) {
min-width: 50px !important;
}
/* move bookmarks to empty space below navigation toolbar, if on navigation toolbar */
#main-window:not([customizing="true"]) #nav-bar #personal-bookmarks {
position: absolute !important;
bottom: 1px !important;
min-width: 0 !important;
width: auto !important;
max-width: 100vw !important;
}
/* reduce size of bookmarks 'more bookmarks' menu chevron and remove its background color on navigation toolbar */
#nav-bar #personal-bookmarks #PlacesChevron .toolbarbutton-icon {
min-width: 0px !important;
min-height: 0px !important;
width: 16px !important;
height: 16px !important;
padding: 0 !important;
margin: 0 !important;
background: unset !important;
box-shadow: unset !important;
}
/* set minimum height for bookmarks, when on navigation toolbar */
#nav-bar #personal-bookmarks toolbarbutton.bookmark-item:not(.subviewbutton) {
min-height: 24px !important;
}
/* adjustments */
#nav-bar #personal-bookmarks {
min-width: 40px !important;
width: auto !important;
max-width: 50vw !important;
}
Now you will have to move the Bookmarks Toolbar Items into the navigation bar using Firefox's customize option. Then you can use the bar just for add-ons, just drag them down.
I only have one add-on on this browser so it's not a great test but I can test more once I get home.
add a comment |
This should be possible with userChrome.css
. I found this Github where there are a lot of customizations for Firefox available: https://github.com/Aris-t2/CustomCSSforFx
One that stood out was addonbar_extra_bookmarks_toolbar_below_navbar_fx65.css
. If you add its code to your userChrome.css
file, it will add another bar below the navigation bar.
/* create an empty space below navigation toolbar */
/* Firefox Quantum userChrome.css tweaks ************************************************/
/* Github: https://github.com/aris-t2/customcssforfx ************************************/
/****************************************************************************************/
#main-window:not([customizing="true"]) #nav-bar {
padding-bottom: 26px !important;
}
/* reduce maximum width of location bar and search bar on navigation toolbar */
#main-window:not([customizing="true"]) #nav-bar :-moz-any(#urlbar-container, #urlbar, #search-container, #searchbar) {
min-width: 50px !important;
}
/* move bookmarks to empty space below navigation toolbar, if on navigation toolbar */
#main-window:not([customizing="true"]) #nav-bar #personal-bookmarks {
position: absolute !important;
bottom: 1px !important;
min-width: 0 !important;
width: auto !important;
max-width: 100vw !important;
}
/* reduce size of bookmarks 'more bookmarks' menu chevron and remove its background color on navigation toolbar */
#nav-bar #personal-bookmarks #PlacesChevron .toolbarbutton-icon {
min-width: 0px !important;
min-height: 0px !important;
width: 16px !important;
height: 16px !important;
padding: 0 !important;
margin: 0 !important;
background: unset !important;
box-shadow: unset !important;
}
/* set minimum height for bookmarks, when on navigation toolbar */
#nav-bar #personal-bookmarks toolbarbutton.bookmark-item:not(.subviewbutton) {
min-height: 24px !important;
}
/* adjustments */
#nav-bar #personal-bookmarks {
min-width: 40px !important;
width: auto !important;
max-width: 50vw !important;
}
Now you will have to move the Bookmarks Toolbar Items into the navigation bar using Firefox's customize option. Then you can use the bar just for add-ons, just drag them down.
I only have one add-on on this browser so it's not a great test but I can test more once I get home.
add a comment |
This should be possible with userChrome.css
. I found this Github where there are a lot of customizations for Firefox available: https://github.com/Aris-t2/CustomCSSforFx
One that stood out was addonbar_extra_bookmarks_toolbar_below_navbar_fx65.css
. If you add its code to your userChrome.css
file, it will add another bar below the navigation bar.
/* create an empty space below navigation toolbar */
/* Firefox Quantum userChrome.css tweaks ************************************************/
/* Github: https://github.com/aris-t2/customcssforfx ************************************/
/****************************************************************************************/
#main-window:not([customizing="true"]) #nav-bar {
padding-bottom: 26px !important;
}
/* reduce maximum width of location bar and search bar on navigation toolbar */
#main-window:not([customizing="true"]) #nav-bar :-moz-any(#urlbar-container, #urlbar, #search-container, #searchbar) {
min-width: 50px !important;
}
/* move bookmarks to empty space below navigation toolbar, if on navigation toolbar */
#main-window:not([customizing="true"]) #nav-bar #personal-bookmarks {
position: absolute !important;
bottom: 1px !important;
min-width: 0 !important;
width: auto !important;
max-width: 100vw !important;
}
/* reduce size of bookmarks 'more bookmarks' menu chevron and remove its background color on navigation toolbar */
#nav-bar #personal-bookmarks #PlacesChevron .toolbarbutton-icon {
min-width: 0px !important;
min-height: 0px !important;
width: 16px !important;
height: 16px !important;
padding: 0 !important;
margin: 0 !important;
background: unset !important;
box-shadow: unset !important;
}
/* set minimum height for bookmarks, when on navigation toolbar */
#nav-bar #personal-bookmarks toolbarbutton.bookmark-item:not(.subviewbutton) {
min-height: 24px !important;
}
/* adjustments */
#nav-bar #personal-bookmarks {
min-width: 40px !important;
width: auto !important;
max-width: 50vw !important;
}
Now you will have to move the Bookmarks Toolbar Items into the navigation bar using Firefox's customize option. Then you can use the bar just for add-ons, just drag them down.
I only have one add-on on this browser so it's not a great test but I can test more once I get home.
This should be possible with userChrome.css
. I found this Github where there are a lot of customizations for Firefox available: https://github.com/Aris-t2/CustomCSSforFx
One that stood out was addonbar_extra_bookmarks_toolbar_below_navbar_fx65.css
. If you add its code to your userChrome.css
file, it will add another bar below the navigation bar.
/* create an empty space below navigation toolbar */
/* Firefox Quantum userChrome.css tweaks ************************************************/
/* Github: https://github.com/aris-t2/customcssforfx ************************************/
/****************************************************************************************/
#main-window:not([customizing="true"]) #nav-bar {
padding-bottom: 26px !important;
}
/* reduce maximum width of location bar and search bar on navigation toolbar */
#main-window:not([customizing="true"]) #nav-bar :-moz-any(#urlbar-container, #urlbar, #search-container, #searchbar) {
min-width: 50px !important;
}
/* move bookmarks to empty space below navigation toolbar, if on navigation toolbar */
#main-window:not([customizing="true"]) #nav-bar #personal-bookmarks {
position: absolute !important;
bottom: 1px !important;
min-width: 0 !important;
width: auto !important;
max-width: 100vw !important;
}
/* reduce size of bookmarks 'more bookmarks' menu chevron and remove its background color on navigation toolbar */
#nav-bar #personal-bookmarks #PlacesChevron .toolbarbutton-icon {
min-width: 0px !important;
min-height: 0px !important;
width: 16px !important;
height: 16px !important;
padding: 0 !important;
margin: 0 !important;
background: unset !important;
box-shadow: unset !important;
}
/* set minimum height for bookmarks, when on navigation toolbar */
#nav-bar #personal-bookmarks toolbarbutton.bookmark-item:not(.subviewbutton) {
min-height: 24px !important;
}
/* adjustments */
#nav-bar #personal-bookmarks {
min-width: 40px !important;
width: auto !important;
max-width: 50vw !important;
}
Now you will have to move the Bookmarks Toolbar Items into the navigation bar using Firefox's customize option. Then you can use the bar just for add-ons, just drag them down.
I only have one add-on on this browser so it's not a great test but I can test more once I get home.
answered Mar 19 at 18:15
MC10MC10
6,72722341
6,72722341
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1295489%2fstatus-bar-for-firefox-quantum%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown