Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

ძიება მხარდაჭერაში

ნუ გაებმებით თაღლითების მახეში მხარდაჭერის საიტზე. აქ არასდროს მოგთხოვენ სატელეფონო ნომერზე დარეკვას, შეტყობინების გამოგზავნას ან პირადი მონაცემების გაზიარებას. გთხოვთ, გვაცნობოთ რამე საეჭვოს შემჩნევისას „დარღვევაზე მოხსენების“ მეშვეობით.

Learn More

Why won't Outlook Web App (owa) as an app tab highlight when I get a new email? Gmail does.

  • 3 პასუხი
  • 4 მომხმარებელი წააწყდა მსგავს სიძნელეს
  • 2 ნახვა
  • ბოლოს გამოეხმაურა jimage

I'm trying to ditch my email client and use only OWA as an app tab in firefox. Everything is fine on the firefox end of things except that when I get a new email, the tab will not highlight like gmail does when I get a new email.

OWA product page: http://www.microsoft.com/exchange/en-us/outlook-web-app.aspx

The owa I'm working on is an internal site.

I'm trying to ditch my email client and use only OWA as an app tab in firefox. Everything is fine on the firefox end of things except that when I get a new email, the tab will not highlight like gmail does when I get a new email. OWA product page: http://www.microsoft.com/exchange/en-us/outlook-web-app.aspx The owa I'm working on is an internal site.

გადაწყვეტა შერჩეულია

I found a way of doing exactly what I wanted by redoing an OWA refresh and keep alive script I found (link). The script I set up is here: http://pastebin.com/T1Yffywm

პასუხის ნახვა სრულად 👍 0

ყველა პასუხი (3)

You only get a tab highlight (glow) if the URL changes as a consequence of the reload (titlechanged).
See line 1498: chrome://browser/skin/browser.css

Such a Tab should get an unread="true" attribute if the content is refreshed, so maybe you can use that instead.

Add code to userChrome.css below the default @namespace line.

The customization files userChrome.css (interface) and userContent.css (websites) are located in the chrome folder in the user profile folder.


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

.tabbrowser-tab[pinned][unread] {
 background-image: -moz-radial-gradient(center 3px, circle cover, rgba(233,242,252,1) 3%, rgba(172,206,255,.75) 40%, rgba(87,151,201,.5) 80%, rgba(87,151,201,0))!important;
}

ჩასწორების თარიღი: , ავტორი: cor-el

Unfortunately that doesn't solve my problem. If I set up my userChrome.css with your code, I get the highlight every time the app tab is completely refreshed (by opening a closed FF, or through ReloadEvery addon) but not when I get a new email. Whatever mechanism owa uses to update the inbox while I'm off in another tab does not trigger the highlight. What you said makes sense though, gmail changes the title to Gmail Inbox - (#) whenever you get a new message. Any other ideas?

შერჩეული გადაწყვეტა

I found a way of doing exactly what I wanted by redoing an OWA refresh and keep alive script I found (link). The script I set up is here: http://pastebin.com/T1Yffywm

ჩასწორების თარიღი: , ავტორი: jimage