Page 1 sur 1
suprimer la barre des onglets
Publié : 21 juin 2022, 11:31
par michel7868
Bonjour,
Je voudrais supprimer la barre des onglets du haut pour utiliser la barre latérale ou "tree style tab" ou équivalent.
Je n'ai rien trouvé das les paramètres et blogs.
Merci par avance,
Michel
Re: suprimer la barre des onglets
Publié : 21 juin 2022, 11:48
par Agent virtuel
Bonjour
Éventuellement, et si ceci correspond à votre attente
https://github.com/mbnuqw/sidebery/wiki ... hrome.css)
Essayer
Copier/coller le code (par exemple) dans un Bloc-notes
Enregistrer
Type : Tous les fichiers
userChrome.css
Créer un dossier chrome
Déplacer userChrome.css vers votre dossier chrome
Dirigez-vous vers votre dossier de profil
https://support.mozilla.org/fr/kb/profi ... mon-profil Ouvrir le dossier correspondant
Déplacer votre dossier chrome vers votre dossier de profil
about:config
https://support.mozilla.org/fr/kb/edite ... on-firefox
Rechercher une préférence
toolkit.legacyUserProfileCustomizations.stylesheets
Vérifier
true
Arrêt Firefox démarrer Firefox
Et, éventuellement, en complément
Personnaliser les boutons et barres d’outils de Firefox
https://support.mozilla.org/fr/kb/perso ... ls-firefox Afficher la barre de titre
Pour afficher la barre de titre : cochez la case à côté de Barre de titre en bas à gauche.
Re: suprimer la barre des onglets
Publié : 21 juin 2022, 18:52
par michel7868
Merci,
Mais il y a toujours la barre au dessus vide, c'est cette barre que je voudrais enlever.
J'enlève déjà ma barre personnelle (mes favoris) après la première page affichée.
Re: suprimer la barre des onglets
Publié : 21 juin 2022, 19:18
par Agent virtuel
michel7868 a écrit : 21 juin 2022, 18:52
Mais il y a toujours la barre au dessus vide
C'est la barre de menus
J'ai omis de vous présenter, Sidebery
https://addons.mozilla.org/fr/firefox/addon/sidebery
Re: suprimer la barre des onglets
Publié : 23 juin 2022, 08:53
par Agent virtuel
Bonjour
Avec l'aide de
https://mrotherguy.github.io/firefox-csshacks
Éventuellement, et si ceci vous convient, remplacer, le code css, par le code css ci-dessous, et, néanmoins, cocher aussi Barre de menus
Code : Tout sélectionner
/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/autohide_menubar.css made available under Mozilla Public License v. 2.0
See the above repository for updates as well as full license text. */
/* Makes menubar slide over tabs toolbar when hovered */
/* Menubar will be shown when cursor touches top of the spacers on both side of tabs. Window controls will be in menubar, so they are automatically hidden */
/* Make sure you have menubar enabled */
:root{ --uc-menubar-spacer: 11px }
:root[sizemode="maximized"]{ --uc-menubar-spacer: 1px }
#nav-bar-customization-target,
#PanelUI-button,
#nav-bar-overflow-button,
#TabsToolbar > .toolbar-items{ position: relative; z-index: 5; }
#toolbar-menubar > spacer{ flex-grow: 1 }
#toolbar-menubar > spacer,
#toolbar-menubar > .titlebar-buttonbox-container{ order: 1000 }
#TabsToolbar > .titlebar-spacer{ display: -moz-box !important; }
:where(#toolbar-menubar){ -moz-window-dragging: no-drag; }
#toolbar-menubar:not([customizing]){
--uc-menubar-height: 34px;
position: fixed;
display: flex;
width: 100vw;
height: var(--uc-menubar-height);
/* --uc-menubar-extra-margin is defined in toolbars_below_content.css */
margin-top: calc(var(--uc-menubar-spacer) - var(--uc-menubar-height) + var(--uc-menubar-extra-margin,0px));
transition: margin-top 150ms linear !important;
z-index:4;
}
#toolbar-menubar:hover{
background-color: var(--toolbar-bgcolor) !important;
margin-top: var(--uc-menubar-extra-margin,0px) !important;
z-index: 6
}
#main-menubar > menu{ padding-bottom: 4px }
/* This exists only for compatibility reasons with some other styles */
#navigator-toolbox{ --uc-hide-window-control-space: 0 }
/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/hide_tabs_toolbar.css made available under Mozilla Public License v. 2.0
See the above repository for updates as well as full license text. */
/* Hides tabs toolbar */
/* For OSX use hide_tabs_toolbar_osx.css instead */
/* Note, if you have either native titlebar or menubar enabled, then you don't really need this style.
* In those cases you can just use: #TabsToolbar{ visibility: collapse !important }
*/
/* IMPORTANT */
/*
Get window_control_placeholder_support.css
Window controls will be all wrong without it
*/
:root[tabsintitlebar]{ --uc-toolbar-height: 40px; }
:root[tabsintitlebar][uidensity="compact"]{ --uc-toolbar-height: 32px }
#TabsToolbar{ visibility: collapse !important }
:root[sizemode="fullscreen"] #TabsToolbar > :is(#window-controls,.titlebar-buttonbox-container){
visibility: visible !important;
z-index: 2;
}
:root:not([inFullscreen]) #nav-bar{
margin-top: calc(0px - var(--uc-toolbar-height,0px));
}
:root[tabsintitlebar] #toolbar-menubar[autohide="true"]{
min-height: unset !important;
height: var(--uc-toolbar-height,0px) !important;
position: relative;
}
#toolbar-menubar[autohide="false"]{
margin-bottom: var(--uc-toolbar-height,0px)
}
:root[tabsintitlebar] #toolbar-menubar[autohide="true"] #main-menubar{
-moz-box-flex: 1;
-moz-box-align: stretch;
background-color: var(--toolbar-bgcolor,--toolbar-non-lwt-bgcolor);
background-clip: padding-box;
border-right: 30px solid transparent;
border-image: linear-gradient(to left, transparent, var(--toolbar-bgcolor,--toolbar-non-lwt-bgcolor) 30px) 20 / 30px
}
#toolbar-menubar:not([inactive]){ z-index: 2 }
#toolbar-menubar[autohide="true"][inactive] > #menubar-items {
opacity: 0;
pointer-events: none;
margin-left: var(--uc-window-drag-space-pre,0px)
}
Arrêt Firefox démarrer Firefox
Et pour quitter Firefox, utilisez le menu hamburger ≡