Vyhľadajte odpoveď

Vyhnite sa podvodom s podporou. Nikdy vás nebudeme žiadať, aby ste zavolali alebo poslali SMS na telefónne číslo alebo zdieľali osobné informácie. Nahláste prosím podozrivú aktivitu použitím voľby “Nahlásiť zneužitie”.

Learn More

How do I make the Window buttons appear when Tabs are on Bottom and the Menu Bar is unchecked on userChrome.css?

  • Žiadne odpovede
  • 1 má tento problém
  • 12 zobrazení
more options

Heya, I am currently using a code I copy pasta'd from another user into my Chrome.css, which removes some buttons and also makes the tabs appear on bottom. It works great when I am using a Menu Bar, but when I disable it, the Window buttons for minimizing, maximizing and closing aren't right besides my tabs where I guess they are supposed to be without the Menu Bar? But just simply disappear and only show during the transition to Full Screen when I press F11.

Picture with Menu Bar: https://i.imgur.com/2KEY4ki.png without Menu Bar: https://i.imgur.com/YzRpdwF.png (nothing besides my tabs) And during the transitioning to Full Screen: https://i.imgur.com/6kdgSsP.png


The code I am using is:

@-moz-document url(chrome://browser/content/browser.xul);

  1. PanelUI-menu-button {

display: none; }

  1. PopupAutoCompleteRichResult > richlistbox >:-moz-any(richlistitem[actiontype="searchengine"]) {

display: none !important; }

  1. TabsToolbar {

-moz-box-ordinal-group: 21 !important; } toolbar:not(#toolbar-menubar):not(#TabsToolbar):not(#addon-bar):not(#nav-bar) { -moz-box-ordinal-group: 20 !important; }

  1. urlbar .urlbar-history-dropmarker {

display: none !important; } tab {

 max-height: 28px !important;

} .tabbrowser-tabs, #main-window[windowtype="navigator:browser"] { background-color: #201e1d !important; }

root {--tab-line-color: #00ffff !important;}
Heya, I am currently using a code I copy pasta'd from another user into my Chrome.css, which removes some buttons and also makes the tabs appear on bottom. It works great when I am using a Menu Bar, but when I disable it, the Window buttons for minimizing, maximizing and closing aren't right besides my tabs where I guess they are supposed to be without the Menu Bar? But just simply disappear and only show during the transition to Full Screen when I press F11. Picture with Menu Bar: https://i.imgur.com/2KEY4ki.png without Menu Bar: https://i.imgur.com/YzRpdwF.png (nothing besides my tabs) And during the transitioning to Full Screen: https://i.imgur.com/6kdgSsP.png The code I am using is: @-moz-document url(chrome://browser/content/browser.xul); #PanelUI-menu-button { display: none; } #PopupAutoCompleteRichResult > richlistbox >:-moz-any(richlistitem[actiontype="searchengine"]) { display: none !important; } #TabsToolbar { -moz-box-ordinal-group: 21 !important; } toolbar:not(#toolbar-menubar):not(#TabsToolbar):not(#addon-bar):not(#nav-bar) { -moz-box-ordinal-group: 20 !important; } #urlbar .urlbar-history-dropmarker { display: none !important; } tab { max-height: 28px !important; } .tabbrowser-tabs, #main-window[windowtype="navigator:browser"] { background-color: #201e1d !important; } :root {--tab-line-color: #00ffff !important;}