Fix: Tab bar - connected pinned tab at nightly #513

This commit is contained in:
alstjr7375 2022-11-24 09:16:18 +09:00
parent e7d2d36591
commit 229d08f5a3
2 changed files with 9 additions and 0 deletions

View file

@ -5665,6 +5665,10 @@
#tabbrowser-tabs[positionpinnedtabs] > #tabbrowser-arrowscrollbox > .tabbrowser-tab[pinned] {
z-index: 0 !important;
}
#tabbrowser-tabs[positionpinnedtabs] > #tabbrowser-arrowscrollbox > .tabbrowser-tab[pinned] .tab-stack {
/* Temporary solution for compatibility #513 */
overflow-y: clip;
}
}
/*= Selected Tab =============================================================*/
/*= Selected Tab - Color like toolbar ========================================*/

View file

@ -23,4 +23,9 @@
/* Pinned Tab - tabbrowser-arrowscrollbox overflowing */
#tabbrowser-tabs[positionpinnedtabs] > #tabbrowser-arrowscrollbox > .tabbrowser-tab[pinned] {
z-index: 0 !important;
.tab-stack {
/* Temporary solution for compatibility #513 */
overflow-y: clip;
}
}