From 2a865e5549ed20694005d36db1e12f37c5a6bc55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vlastimil=20Ov=C4=8D=C3=A1=C4=8D=C3=ADk?= Date: Thu, 8 May 2014 12:59:13 +0200 Subject: [PATCH] Fixes piroor/treestyletab/#710. Changes background color of dummy almost transparent element spread over Firefox content area from black to white. The near transparent element may change website tone with inverse color. Therefore white dummy element will affect only black websites since this commit. --- content/treestyletab/treestyletab.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/treestyletab/treestyletab.css b/content/treestyletab/treestyletab.css index 65c5ab0a..3823204a 100644 --- a/content/treestyletab/treestyletab.css +++ b/content/treestyletab/treestyletab.css @@ -162,7 +162,7 @@ tabbrowser[treestyletab-tabbar-autohide-mode="1"][treestyletab-tabbar-autohide=" * Don't make this panel completely transparent, because * mousemove event never fire on 100% transparent panel. */ - background: rgba(0, 0, 0, 0.01); + background: rgba(255, 255, 255, 0.01); line-height: 0; margin: 0; padding: 0;