From 5c05a66ea10aaf3d329a58beced71a3a9cc2fdd0 Mon Sep 17 00:00:00 2001 From: "gavin%gavinsharp.com" Date: Mon, 26 May 2008 21:17:08 +0000 Subject: [PATCH] Bug 434360: Mac OS X: Active tab is broken in RTL when window is unfocused, patch by Yehuda , r=me, a=beltzner git-svn-id: svn://10.0.0.236/trunk@251833 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/browser/themes/pinstripe/browser/browser.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/mozilla/browser/themes/pinstripe/browser/browser.css b/mozilla/browser/themes/pinstripe/browser/browser.css index 72330f969c6..14f9824f1f7 100755 --- a/mozilla/browser/themes/pinstripe/browser/browser.css +++ b/mozilla/browser/themes/pinstripe/browser/browser.css @@ -97,11 +97,13 @@ background-image: url("chrome://browser/skin/tabbrowser/tab-middle-inactive.png"); } -#main-window:not([active="true"]) .tabbrowser-tab[selected="true"] > .tab-image-left { +#main-window:not([active="true"]) .tabbrowser-tab[selected="true"] > .tab-image-left, +#main-window:not([active="true"]) .tabbrowser-tab[selected="true"][chromedir="rtl"] > .tab-image-right { background: url("chrome://browser/skin/tabbrowser/tab-left-inactive.png") no-repeat; } -#main-window:not([active="true"]) .tabbrowser-tab[selected="true"] > .tab-image-right { +#main-window:not([active="true"]) .tabbrowser-tab[selected="true"] > .tab-image-right, +#main-window:not([active="true"]) .tabbrowser-tab[selected="true"][chromedir="rtl"] > .tab-image-left { background: url("chrome://browser/skin/tabbrowser/tab-right-inactive.png") no-repeat; }