Je pense qu'il faut que tu change de valeur pour la propriété "
top:" concernant les règles suivantes
/*** 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;
}
J'en profite pour préciser que je me suis un peu compliqué la vie, mais bon ça arrive quand on bricole une modif, le "margin-top:" n'est pas nécessaire, il suffit d'agir sur la valeur de "top:"
Du coup ça deviendrait plus simplement ça:
Code : Tout sélectionner
/*avec thème*/
#main-window[tabsintitlebar][sizemode="normal"]> #navigator-toolbox:-moz-lwtheme > #titlebar .titlebar-buttonbox-container{
position: fixed !important;
top: -15px; right: 0; /*margin-top: -15px; */
}
/* (fenêtre maxi) */
#main-window[tabsintitlebar][sizemode="maximized"] > #navigator-toolbox > #titlebar .titlebar-buttonbox-container{
position: fixed !important; top: -5px; right: 0; /*margin-top: -5px;*/
}
Bref, je peux pas te dire de combien, mais je dirai qu'il faut augmenter sa valeur (dans le positif).
Après ce qui me parait bizarre c'est que c'est plutôt les boutons qui remontent plutôt que la zone de recouvrement
Mais c'est ptêt dû à ton OS, car mes test sont sur w7...
