yfdyh000 / tabutils

Tab Utilities's compatibility fixes release.
https://addons.mozilla.org/firefox/addon/tab-utilities-fixed/
93 stars 13 forks source link

extra space appears in tabsbar begin in Fx53 #146

Open yfdyh000 opened 7 years ago

yfdyh000 commented 7 years ago

https://hg.mozilla.org/integration/mozilla-inbound/rev/8a98388a60bd, since Fx53b1.

liuxb commented 7 years ago

在用55,也发现标签栏左边开始那多了一块,说的是不是这个问题啊? 好像是下面css失效了 tabutils.css

PinnedTabsBar:empty {

-moz-padding-end: 0; -moz-padding-start: 0; } 记得原来是这样的

PinnedTabsBar:empty > *,

PinnedTabsBarItems:empty {

display: none; } 我现在用下面这个也行 .tabbrowser-tabs #PinnedTabsBar:empty, .tabbrowser-tabs #PinnedTabsBarItems:empty { visibility: collapse; }

yfdyh000 commented 7 years ago

@liuxb 是。在有固定标签页时会有问题。

yfdyh000 commented 7 years ago

https://github.com/yfdyh000/tabutils/blob/342bc3e54dc92f76d16851125a7e1c8618c9c114/chrome/content/tabutils.js#L2464 are broken for Fx53+, but update to "calc(-1 *" + cssRule.style.MozPaddingStart + ")" (like this) seem not well too.