From 20bf2b1fe7abab6ccec9fec37f0a626b59bd89c3 Mon Sep 17 00:00:00 2001 From: SHIMODA Hiroshi Date: Tue, 5 Apr 2011 12:08:33 +0900 Subject: [PATCH] progressmeter in tabs inserted by Tab Mix Plus were wrongly positioned (fix for https://github.com/piroor/treestyletab/issues/#issue/70 ) --- skin/classic/treestyletab/treestyletab-tmp.css | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/skin/classic/treestyletab/treestyletab-tmp.css b/skin/classic/treestyletab/treestyletab-tmp.css index 37df8a17..83c8db50 100644 --- a/skin/classic/treestyletab/treestyletab-tmp.css +++ b/skin/classic/treestyletab/treestyletab-tmp.css @@ -1,7 +1,7 @@ /* hacks for Tab Mix Plus */ :root[treestyletab-enable-compatibility-tmp="true"] - tabbrowser[treestyletab-mode="vertical"] .tabs-closebutton-topbox > .tabs-closebutton { + .tabbrowser-tabs[treestyletab-mode="vertical"] .tabs-closebutton-topbox > .tabs-closebutton { -moz-appearance: none !important; border: 0 none !important; -moz-border-top-colors: none !important; @@ -13,12 +13,12 @@ } :root[treestyletab-enable-compatibility-tmp="true"] - tabbrowser[treestyletab-mode="vertical"] .tabs-closebutton-topbox > .tabs-closebutton:hover { + .tabbrowser-tabs[treestyletab-mode="vertical"] .tabs-closebutton-topbox > .tabs-closebutton:hover { background: ThreeDHighlight !important; } :root[treestyletab-enable-compatibility-tmp="true"] - tabbrowser[treestyletab-mode="vertical"] .tabs-closebutton-topbox > .tabs-closebutton { + .tabbrowser-tabs[treestyletab-mode="vertical"] .tabs-closebutton-topbox > .tabs-closebutton { background-image: none !important; margin: 0 !important; padding: 0 2px !important; @@ -28,7 +28,7 @@ } :root[treestyletab-enable-compatibility-tmp="true"] - tabbrowser[treestyletab-mode="vertical"] .tabs-newtab-topbox > .tabs-newtab-button { + .tabbrowser-tabs[treestyletab-mode="vertical"] .tabs-newtab-topbox > .tabs-newtab-button { -moz-box-flex: 1; -moz-box-align: center; -moz-box-pack: center; @@ -36,6 +36,11 @@ } :root[treestyletab-enable-compatibility-tmp="true"] - tabbrowser[treestyletab-mode="vertical"] .tabbrowser-arrowscrollbox[type="tabmix"] { + .tabbrowser-tabs[treestyletab-mode="vertical"] .tabbrowser-arrowscrollbox[type="tabmix"] { visibility: collapse !important; } + +:root[treestyletab-enable-compatibility-tmp="true"] + .tabbrowser-tabs[treestyletab-mode="vertical"] .tab-progress { + margin-top: -2px; +}