traxium / tabtree

Tab Tree extension for Firefox
https://addons.mozilla.org/en-US/firefox/addon/tab-tree/
GNU General Public License v3.0
144 stars 30 forks source link

Incompatibility with FT DeepDark #202

Open Sporif opened 7 years ago

Sporif commented 7 years ago

In addition to #116, if the navigation bar height is 30px, the forward button is a bit buggy. It appears narrower then normal, and reverts to normal size when hovered over. The reverse is seen with the greyed out forward button, shown when you disable forward button auto-hiding with:

forward-button {

margin: 0 !important; }

These are the css fixes I use for the issues above:

Remove extra Titlebar:

titlebar {

margin-bottom: -25px !important; }

Fix forward button:

forward-button {

-moz-image-region: rect(0, 74px, 18px, 49px);

}

forward-button:hover, #forward-button[disabled="true"] {

-moz-image-region: rect(0, 74px, 18px, 55px);

}

forward-button[disabled="true"]:hover {

padding-left: 6px !important;

}