Re: Firefox 69 et userChrome.css

Publié par Anonyme le 10/09/2019 12:11:39
A toutes fins utiles, mon Userchrome.css pour les onglets sous la barre de navigation, onglet actif en fond beige et bords arrondis, titre en italiques pour les onglets en cours de chargement. Minimal.


@namespace url("http://www.mozilla.org/keymaster/gate ... r/there.is.only.xul");

/* TABS on bottom */
#navigator-toolbox toolbar:not(#nav-bar):not(#toolbar-menubar) {-moz-box-ordinal-group:10}
#TabsToolbar {-moz-box-ordinal-group:1000!important}

#TabsToolbar {
position: absolute !important;
bottom: 0 !important;
width: 100vw !important;
}
#main-window:not([chromehidden*="toolbar"]) #navigator-toolbox {
padding-bottom: var(--tab-min-height) !important;
}
#tabbrowser-tabs {
width: 100vw !important;
}

/* Onglet Actif couleur */
.tab-background[selected="true"] {
background-attachment: none!important;
background-color: beige!important;
background-image: none!important;
}

/* Arrondir uniquement les coins de l'onglet actif */
.tab-background {
border-radius: 12px 12px 0px 0px !important;
border-image: none !important; }
.tab-line {
display: none; }

/* Apparence des onglets busy */
.tabbrowser-tab[busy] .tab-label{font-style: italic !important; }

Cette contribution était de : http://www.gratilog.net/xoops/newbb/viewtopic.php?forum=9&topic_id=16278&post_id=193833