From 7281f64eaef7ee5c6eccd113ec108c1c9f5b390c Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Wed, 6 May 2009 21:39:34 +1000 Subject: [PATCH] Fix the activity indicator when tab numbering is active. --- common/content/tabs.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/common/content/tabs.js b/common/content/tabs.js index ec0f6471..44fa4bf2 100644 --- a/common/content/tabs.js +++ b/common/content/tabs.js @@ -683,7 +683,9 @@ function Tabs() //{{{ styles.removeSheet(true, "tab-binding"); else if (!this.tabsBound) styles.addSheet(true, "tab-binding", "chrome://browser/content/browser.xul", - ".tabbrowser-tab { -moz-binding: url(chrome://liberator/content/bindings.xml#" + fragment + ") !important; }"); + ".tabbrowser-tab { -moz-binding: url(chrome://liberator/content/bindings.xml#" + fragment + ") !important; }" + + // FIXME: better solution for themes? + ".tabbrowser-tab[busy] > .tab-icon > .tab-icon-image { list-style-image: url('chrome://global/skin/icons/loading_16.png') !important; }"); }, get count() getBrowser().mTabs.length,