Re: [ FF66b ] Multiples lignes bookmarks + Disable autoplay
Publié : 16 déc. 2019, 17:02
C'est super! plusieurs lignes sur la barre perso, j'ai même fait des dossiers
Forums d'assistance et de discussion sur les logiciels produits par Mozilla ou créés à partir des technologies Mozilla. Ce site ne dépend pas de la fondation Mozilla et est maintenu par un collectif de bénévoles.
https://forums.mozfr.org/
Eh oui, c'est super; moi aussi j'ai fait des dossiers et ai réussi à mettre quelques couleurs dessus !C'est super! plusieurs lignes sur la barre perso, j'ai même fait des dossiers
En effet quand ma souris passe trop vite au dessus de la barre d'outils , ma barre perso se développe et je ne puis cliquer sur la partie que je souhaitais actionner ! Il suffit de bouger ma souris plus lentement.....Une chose me gêne c'est que la barre de menu ne se trouve pas en haut comme indiqué mais entre la barre personnelle et les onglets.
Serait_il possible de la replacer au dessus de la barre personnelle ou de la barre de recherche ?
Je ne sais pas personnellement comment faire pour modifier le code donné !
A voir avec le dernier code en date, donné il y à peu... viewtopic.php?f=5&t=142837#p894704Marc Driver a écrit : 16 déc. 2019, 18:25
Mais, et je n'ai pas eu de réponse à ma précédente question :En effet quand ma souris passe trop vite au dessus de la barre d'outils , ma barre perso se développe et je ne puis cliquer sur la partie que je souhaitais actionner ! Il suffit de bouger ma souris plus lentement.....Une chose me gêne c'est que la barre de menu ne se trouve pas en haut comme indiqué mais entre la barre personnelle et les onglets.
Serait_il possible de la replacer au dessus de la barre personnelle ou de la barre de recherche ?
Je ne sais pas personnellement comment faire pour modifier le code donné !
J'aimerais cependant pouvoir remettre ma barre d'outils au dessus de ma barre perso !
Le problème est que dans le topic mentionné, le code n'est pas du tout le même que celui d'où je pars ! En effet, je l'ai signalé plus haut je ne suis pas un cador et ne comprends pas grand chose au vocabulaire css ! Je suis à l'occasion capable de corriger ou modifier certaines choses si je suis bien guidéA voir avec le dernier code en date, donné il y à peu... viewtopic.php?f=5&t=142837#p894704
Code : Tout sélectionner
/*===== Barre personnelle multilignes =====*/
#PlacesToolbarItems {
display: block !important;
overflow: visible !important;
}
/* Barre personnelle cachée */
#PersonalToolbar {
max-height: 5px !important;
transition-duration: 1s !important;
}
#PersonalToolbar:hover{
max-height:200px !important;
transition-duration: 1s !important;
}
/* Sans le texte des Favicons */
#personal-bookmarks .toolbarbutton-text {
display: none !important; }
/*======================= Barre onglets sur plusieurs lignes (3 ici) ==========================*/
:root{
--multirow-n-rows: 3;
--multirow-tab-min-width: 200px;
--multirow-tab-dynamic-width: 1; /* Change to 0 for fixed-width tabs using the above width. */
}
/* Test for Firefox > 66 */
@supports (inset-block:auto){
#tabbrowser-tabs > .tabbrowser-arrowscrollbox > .arrowscrollbox-scrollbox{
display: flex;
flex-wrap: wrap;
overflow-y: auto;
max-height: calc(var(--tab-min-height) * var(--multirow-n-rows));
scrollbar-color: var(--toolbar-bgcolor) var(--lwt-accent-color);
scrollbar-width: thin;
}
#tabbrowser-tabs > .tabbrowser-arrowscrollbox {
overflow: -moz-hidden-unscrollable;
display: block;
}
}
/*===================== barre MENU en haut =======================*/
/*!!!!! barre de titre désactivée !!!!!*/
/*** fenêtre maxi ***/
#main-window[tabsintitlebar][sizemode="maximized"] #toolbar-menubar {
position: fixed !important;
top: 8px !important;
}
/* Test for Firefox < 66 */
@supports not (inset-block:auto){
#tabbrowser-tabs > .tabbrowser-arrowscrollbox{
min-height: unset !important;
}
#tabbrowser-tabs .scrollbox-innerbox{
display: flex;
flex-wrap: wrap;
}
#tabbrowser-tabs .arrowscrollbox-scrollbox {
overflow: -moz-hidden-unscrollable;
display: block;
}
}
.tabbrowser-tab{ height: var(--tab-min-height); }
#tabbrowser-tabs .tabbrowser-tab[pinned]{
position: static !important;
margin-inline-start: 0px !important;
}
.tabbrowser-tab[fadein]:not([pinned]){
min-width: var(--multirow-tab-min-width) !important;
flex-grow: var(--multirow-tab-dynamic-width);
/*
Uncomment to enable full-width tabs, also makes tab dragging a tiny bit more sensible
Don't set to none or you'll see errors in console when closing tabs
*/
/*max-width: 100vw !important;*/
}
.tabbrowser-tab > stack{ width: 100%; height: 100% }
#tabbrowser-tabs .scrollbutton-up,
#tabbrowser-tabs .scrollbutton-down,
#alltabs-button,
:root:not([customizing]) #TabsToolbar #new-tab-button,
#tabbrowser-tabs spacer,
.tabbrowser-tab::after{ display: none !important }
/*==================== barre ONGLET dessous ===================*/
#titlebar { -moz-box-ordinal-group: 3 !important;
}
/*** réduire l'espace avec barre perso ***/
/* règle en fenêtre maxi utile seulement pour windows */
#main-window[tabsintitlebar][sizemode="maximized"] > #navigator-toolbox > #titlebar {
-moz-appearance: -moz-window-titlebar !important;
}
:root[extradragspace][tabsintitlebar]:not([inFullscreen]) {
--space-above-tabbar: -10px !important;
}
/*** ajuster position verticale barre d'outils ***/
#main-window[tabsintitlebar][sizemode="maximized"] > #navigator-toolbox {
margin-top: 30px !important;
}
#main-window[tabsintitlebar][sizemode="normal"] > #navigator-toolbox {
margin-top: 20px;
}
/*** déplacer décalage de la barre d'onglets pour l'espace des boutons fenêtre ***/
/*sans thème (fenêtre redimentionnable)*/
#main-window[tabsintitlebar][sizemode="normal"]> #navigator-toolbox:not(:-moz-lwtheme) > #titlebar .titlebar-buttonbox-container{
display: none
}
/*avec thème*/
#main-window[tabsintitlebar][sizemode="normal"]> #navigator-toolbox:-moz-lwtheme > #titlebar .titlebar-buttonbox-container{
position: fixed !important;
top: 0; right: 0; margin-top: -15px;
}
/* (fenêtre maxi) */
#main-window[tabsintitlebar][sizemode="maximized"] > #navigator-toolbox > #titlebar .titlebar-buttonbox-container{
position: fixed !important; top: 0; right: 0; margin-top: -5px;
}
/*** ajuster position horizontale barre d'onglets ***/
#main-window[tabsintitlebar][sizemode="maximized"] #toolbar-menubar[inactive="true"] + #TabsToolbar {
margin-right: -40px;
}
#main-window[tabsintitlebar][sizemode="normal"] #toolbar-menubar[inactive="true"] + #TabsToolbar {
margin-left: -40px; margin-right: -40px;
}
/*======================= FIN barre onglet dessous ==========================*/
Code : Tout sélectionner
/* Test for Firefox < 66 */ (inférieur à la version 66)
Qu'est-ce qui a changé avec FF74 ? ???