[MASTER] Firefox 3 RC1: color (grey) used for urls in the awesome bar make them hard to read in multiple themes (human, etc.)

Bug #238823 reported by helios91940
22
Affects Status Importance Assigned to Milestone
Mozilla Firefox
Fix Released
Wishlist
firefox-3.0 (Ubuntu)
Won't Fix
Low
Unassigned
firefox-3.5 (Ubuntu)
Fix Released
Low
Unassigned

Bug Description

Binary package hint: mozilla-firefox

Hi!
Today I have upgraded Firefox beta 5 to RC 1 and I think that the new colors of urls in the awesome bar are not enough dark. It's difficult to read grey urls. I preferred when they were dark green.

EDIT: I use the default theme ( tango! ). The only extension that I have is Adblock plus.

Tags: usability
Revision history for this message
In , Jo-hermans (jo-hermans) wrote :

what theme are you using ?

Revision history for this message
In , Aditya Kavoor (adityakavoor) wrote :

I am using the default Ubuntu Human theme.

Here is a acreenshot. See the difference between the Beta5 version and RC2 version.

http://img357.imageshack.us/my.php?image=screenda2.jpg

Revision history for this message
In , Sylvain Pasche (sylvain-pasche) wrote :

*** This bug has been marked as a duplicate of bug 409974 ***

Revision history for this message
In , Dao (dao) wrote :

Bug 409974 was about the use of hard coded colors, which caused problems with certain OS themes. That bug is fixed now. GrayText isn't ideal, though, so this bug is still valid and not a duplicate.

Revision history for this message
In , Aditya Kavoor (adityakavoor) wrote :

Created attachment 324116
Screenshot showing differences between beta 5 and RC2

Revision history for this message
In , Sylvain Pasche (sylvain-pasche) wrote :

If you prefer the old appearance, you can use the following userChrome (see http://support.mozilla.com/en-US/kb/Editing+configuration+files#userChrome_css for instructions):

.ac-url-text {
    color: #336633 !important;
}
.autocomplete-richlistitem {
    border-bottom: 1px solid ThreeDShadow !important;
}

(this is from bug 409974 comment 35)

Revision history for this message
In , Aditya Kavoor (adityakavoor) wrote :

Created attachment 324139
Screenshot

I added the code to userchrome.css which indeed gave me what I needed. But I have one problem in that.

When the mouse moves over a particular website in the location bar drop down menu, both the website title and the website address should change color to black there by making it different from the rest.

Revision history for this message
helios91940 (florian-plaza) wrote : Firefox 3 RC1: colors used in the awesome bar are not enough dark

Binary package hint: mozilla-firefox

Hi!
Today I have upgraded Firefox beta 5 to RC 1 and I think that the new colors in the awesome bar are not enough dark. It's difficult to read grey urls. I preferred when they were dark green.

Revision history for this message
John Vivirito (gnomefreak) wrote : Re: [Bug 238823] [NEW] Firefox 3 RC1: colors used in the awesome bar are not enough dark

helios91940 wrote:
> Public bug reported:
>
> Binary package hint: mozilla-firefox
>
> Hi!
> Today I have upgraded Firefox beta 5 to RC 1 and I think that the new colors in the awesome bar are not enough dark. It's difficult to read grey urls. I preferred when they were dark green.
>
> ** Affects: firefox (Ubuntu)
> Importance: Undecided
> Status: New
>
>
Can you please attach a screenshot also what themes are you using? if by
awesome bar you mean URL address bar than it should be white.
If this is an extension please remove it and see if it goes back to
normal. Please list all themes and extensions you are using.

--
Sincerely Yours,
    John Vivirito

https://launchpad.net/~gnomefreak
https://wiki.ubuntu.com/JohnVivirito
Linux User# 414246

Revision history for this message
helios91940 (florian-plaza) wrote : Re: Firefox 3 RC1: colors used in the awesome bar are not enough dark

Actually when I click on the arrow on the right of the star in url bar I can't make a screenshot. I think it is a bug. I am going to report it.

description: updated
description: updated
description: updated
description: updated
description: updated
Revision history for this message
Alexander Sack (asac) wrote : Re: Firefox 3 RC1: color used for urls in the awesome bar are not enough dark

reported at least twice here. Maybe a problem that becomes visible in our human theme more than elsewhere. We should take care that this is filed in bugzilla.mozilla.org.

Changed in firefox:
importance: Undecided → Low
status: New → Confirmed
status: New → Incomplete
Revision history for this message
totya (totya) wrote :

The Awesome Bar was much better in Firefox beta 5.

Here are two screenshots about the problem.

Revision history for this message
Alexander Sack (asac) wrote :

please search for upstream bug in bugzilla.mozilla.org

Revision history for this message
In , Sylvain Pasche (sylvain-pasche) wrote :

*** Bug 438367 has been marked as a duplicate of this bug. ***

Changed in firefox:
status: Incomplete → Unknown
Changed in firefox:
status: Unknown → Confirmed
Revision history for this message
helios91940 (florian-plaza) wrote :

According to bugzilla website, if you want to get the beta 5 appearance you need to put the file userChrome.css which is attached in the directory /home/user/.mozilla/firefox/xxxxxxxx.default/chrome

It should be by default in Ubuntu. What do you think?

Revision history for this message
Sayerh Wassim (wsayerh-deactivatedaccount) wrote :

Any update will be released to fix this bug? Because the green colour for the URLs is much better then the grey one :S

Revision history for this message
Rob van der Linde (robvdl) wrote :

Wass: it looks like the bug didn't get fixed for Firefox 3 final, which saddens me as it was really so easy to revert. The bug also affects the Windows version of Firefox 3.

Although they may have only seen this bug as cosmetic, what really makes this bug so important are older LCD monitors. At course we have older LCD monitors and we have to remember that on older LCD monitors, it is much harder to distinguish between light grey and white, basically you cannot read the text at all on these monitors as it just appears white.

For now all you can do is apply the userChrome patch, both on Linux and Windows versions of Firefox 3, go into your Firefox user profile directory, then sub-directory chrome, and place the userChrome.css file attached by helios91940

Revision history for this message
Derek (bugs-m8y) wrote :

Better set of userChrome.css - even this one is not ideal since a menu item can be selected/highlighted even when the mouse is not hovering over it.
Leads to annoying effect of URL in wrong colour, and fllickering when moving over items. But at least this one handles dark themes.
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

.ac-url-text {
    color: MenuText !important;
    background-color: Menu !important;
}
.autocomplete-richlistitem:hover .ac-url-text {
    color: HighlightText !important;
    background-color: Highlight !important;
}
.autocomplete-richlistitem {
    border-bottom: 1px solid ThreeDShadow !important;
}

Revision history for this message
Derek (bugs-m8y) wrote :

Better version - [selected="true"] avoids issues with first one.

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

.ac-url-text {
    color: MenuText !important;
    background-color: Menu !important;
}
.autocomplete-richlistitem[selected="true"] .ac-url-text {
    color: HighlightText !important;
    background-color: Highlight !important;
}
.autocomplete-richlistitem {
    border-bottom: 1px solid ThreeDShadow !important;
}

Revision history for this message
Derek (bugs-m8y) wrote :

Attached is an example of how bad it can get.
This is before the above userChrome.css override.
Pretty clear that someone set color without setting background-color.
A basic mistake.

Revision history for this message
In , Dao (dao) wrote :

Created attachment 329283
use -moz-nativehyperlinktext

Note that -moz-nativehyperlinktext falls back to #144fae on OS X.

Revision history for this message
In , Fittysix (fittysix) wrote :

Note that on Vista it was decided in Bug 432757 to use a darker than normal color for .ac-url-text. We might want to leave some of the windows-default-theme fu in there for that. Beltzner?

Revision history for this message
In , Dao (dao) wrote :

Umm, yeah, I expected such things but forgot about that particular bug.

FWIW: We now have the native color that we were trying to hardcode and we should use it unless the native color is broken somehow. Making a native color slightly darker doesn't seem like a proper use case for windows-default-theme. See bug 426660 comment 25. See also bug 431666 comment 5.

Changed in firefox:
status: Confirmed → In Progress
Revision history for this message
In , Dao (dao) wrote :

Created attachment 331900
use -moz-nativehyperlinktext in most cases

Talked to beltzner, on XP we're going to stick with green for now.

Revision history for this message
In , Dao (dao) wrote :
Changed in firefox:
status: In Progress → Fix Released
Revision history for this message
Mackenzie Morgan (maco.m) wrote :

Text is still only barely visible in Intrepid.

Revision history for this message
Lukasz Wisniewski (vishna) wrote :

I can confirm above, this happens with default theme! Please release fix for this before 30 Oct, we don't want one of the most important applications under Ubuntu to get unreadable.

Revision history for this message
Sylvain Pasche (sylvain-pasche) wrote :

This is now fixed in Firefox 3.1. Maybe the change could be backported to Ubuntu's version.

Revision history for this message
Sylvain Pasche (sylvain-pasche) wrote :

Unfortunately, backporting the change from Firefox 3.1 is not easy. The link uses a new -moz-nativehyperlinktext color alias (https://bugzilla.mozilla.org/show_bug.cgi?id=437358) which require a platform change (https://bugzilla.mozilla.org/show_bug.cgi?id=426732).

Revision history for this message
In , Stephen-donner (stephen-donner) wrote :

Verified FIXED using:

Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1b2pre) Gecko/20081020 Minefield/3.1b2pre

on:

mozilla@mozilla-qa:~$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 8.04.1
Release: 8.04
Codename: hardy

with Human, Mist, Clearlooks, Crux, etc. (in all cases, the URL, as well as the other elements in the location bar, was easy to read, even with the High Contrast themes).

Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1b2pre) Gecko/20081020 Minefield/3.1b2pre

Default Windows XP theme has URLs in green; "Windows Classic" returns the URLs' colors to blue.

Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1b2pre) Gecko/20081020 Minefield/3.1b2pre

Vista's default URL color is blue, and again, "Windows Classic" returns the URLs' colors to blue.

And, finally, on both XP and Vista, I spot-checked high-contrast color schemes, and we respected (and reflected) the color schemes there.

Revision history for this message
In , Stephen-donner (stephen-donner) wrote :

Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.1b2pre) Gecko/20081020 Minefield/3.1b2pre should be the last build ID, sorry.

Revision history for this message
Martin Mai (mrkanister-deactivatedaccount-deactivatedaccount) wrote :

Marking as "fix committed" since this is fixed upstream.

Changed in firefox-3.0:
status: Confirmed → Fix Committed
Revision history for this message
Micah Gersten (micahg) wrote :

This was fixed before Firefox 3.5 was released.

Changed in firefox-3.5 (Ubuntu):
importance: Undecided → Low
status: New → Fix Released
Revision history for this message
Micah Gersten (micahg) wrote :

Firefox 3.0 is only receiving Security Updates and major bug fixes at this point.

Changed in firefox-3.0 (Ubuntu):
status: Fix Committed → Won't Fix
Changed in firefox:
importance: Unknown → Wishlist
To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Duplicates of this bug

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.