Éditer le fichier /Firefox/Profiles/xxxxxx.default/chrome/userChrome.css et ajouter :
- Colorise l'onglet actif :
.tabbrowser-tab[selected="true"],
.tabs-bottom,
[class="close-button tabs-closebutton"] {
background-color: yellow !important;
}
- Always (even in "search as typing") display next/previous/Highlight All buttons from the quick search bar
.findbar-container>* {display: -moz-box !important;}
/* Diminue l'espacement entre les items de la barre de bookmaks personnelle : */
toolbarbutton.bookmark-item {
padding:0px 2px!important;
-moz-appearance: none !important;
}
/* cache les icons (gagne encore plus de place en largeur...) : */
toolbarbutton.bookmark-item > .toolbarbutton-icon {display: none;}
/* resserre verticalement les barres : */
#personal-bookmarks {min-height:9px!important;}
- Suppression d'entrées du menu contextuel que je n'utilise jamais :
/*
* Suppression d'entrées du menu contextuel que je n'utilise jamais :
* cf. http://kb.mozillazine.org/UserChrome.css_Element_Names/IDs
*/
#context-openlink,
#context-openlinkintab,
#context-sep-open,
#context-bookmarklink,
#context-savelink,
#context-sendlink,
#context-sendimage,
#context-setDesktopBackground,
#context-viewbgimage,
#context-stop,
#context-bookmarkpage,
#context-sendpage,
#context-selectall,
#context-stumble-search,
#context-stumble-tagit,
#fd-add-page-menu,
#fd-add-page {
display:none;
}
|