Bug 434360: Mac OS X: Active tab is broken in RTL when window is unfocused, patch by Yehuda <yehudab@gmail.com>, r=me, a=beltzner

This commit is contained in:
gavin@gavinsharp.com 2008-05-26 14:17:08 -07:00
Родитель 7010591454
Коммит 3be9e5fa1f
1 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -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;
}