public inbox for gentoo-user@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-user] Howto use user CSS with Firefox?
@ 2008-09-27 17:09 Robin Atwood
  2008-09-27 17:25 ` Ward Poelmans
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Robin Atwood @ 2008-09-27 17:09 UTC (permalink / raw
  To: gentoo-user

Many web sites are badly designed in that that they hard-code text input 
fields with a black font but inherit the background colour from your desktop, 
so if you have a suitably Gothic light-on-dark colour scheme you cannot read 
your input. I have solved this with KDE Konqueror by supplying a user css 
page but, for those occasions when you have to use it, I want to do the same 
thing with Firefox. A quick google reveals the presence of userContent.css in 
your profile, so I added my rules, eg,

html->body {
  background-color: white;
  color: black;
}

input {
  background-color: #E1E7FD;
  color: black;
}

but it makes absolutely no difference. Anybody had any luck with this?

TIA
-Robin
-- 














^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [gentoo-user] Howto use user CSS with Firefox?
  2008-09-27 17:09 [gentoo-user] Howto use user CSS with Firefox? Robin Atwood
@ 2008-09-27 17:25 ` Ward Poelmans
  2008-09-27 20:07 ` Hilco Wijbenga
  2008-09-27 21:16 ` [gentoo-user] " »Q«
  2 siblings, 0 replies; 7+ messages in thread
From: Ward Poelmans @ 2008-09-27 17:25 UTC (permalink / raw
  To: gentoo-user

On Sat, Sep 27, 2008 at 19:09, Robin Atwood <robin.atwood@attglobal.net> wrote:
> but it makes absolutely no difference. Anybody had any luck with this?

try Greasemonkey?

Ward



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [gentoo-user] Howto use user CSS with Firefox?
  2008-09-27 17:09 [gentoo-user] Howto use user CSS with Firefox? Robin Atwood
  2008-09-27 17:25 ` Ward Poelmans
@ 2008-09-27 20:07 ` Hilco Wijbenga
  2008-09-28 11:59   ` Robin Atwood
  2008-09-27 21:16 ` [gentoo-user] " »Q«
  2 siblings, 1 reply; 7+ messages in thread
From: Hilco Wijbenga @ 2008-09-27 20:07 UTC (permalink / raw
  To: gentoo-user

On Sat, Sep 27, 2008 at 10:09, Robin Atwood <robin.atwood@attglobal.net> wrote:
> Many web sites are badly designed in that that they hard-code text input
> fields with a black font but inherit the background colour from your desktop,
> so if you have a suitably Gothic light-on-dark colour scheme you cannot read
> your input. I have solved this with KDE Konqueror by supplying a user css
> page but, for those occasions when you have to use it, I want to do the same
> thing with Firefox. A quick google reveals the presence of userContent.css in
> your profile, so I added my rules, eg,
>
> html->body {
>  background-color: white;
>  color: black;
> }
>
> input {
>  background-color: #E1E7FD;
>  color: black;
> }
>
> but it makes absolutely no difference. Anybody had any luck with this?

Have you looked at Preferences --> Content --> Fonts & Colors -->
Colors...? Uncheck the "Allows pages ..." and set your own
preferences. I've never used it but it looks like it might help.



^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-user]  Re: Howto use user CSS with Firefox?
  2008-09-27 17:09 [gentoo-user] Howto use user CSS with Firefox? Robin Atwood
  2008-09-27 17:25 ` Ward Poelmans
  2008-09-27 20:07 ` Hilco Wijbenga
@ 2008-09-27 21:16 ` »Q«
  2008-09-28 12:00   ` Robin Atwood
  2 siblings, 1 reply; 7+ messages in thread
From: »Q« @ 2008-09-27 21:16 UTC (permalink / raw
  To: gentoo-user

On Sun, 28 Sep 2008 00:09:00 +0700
Robin Atwood <robin.atwood@attglobal.net> wrote:

> I have solved this with KDE Konqueror by supplying a user css 
> page but, for those occasions when you have to use it, I want to do
> the same thing with Firefox.

You can use userContent.css for it after you google some documentation,
but it's easier to just use the Stylish extension to manage user css.

<http://userstyles.org/stylish/>.

-- 
»Q«
     Kleeneness is next to Gödelness.




^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [gentoo-user] Howto use user CSS with Firefox?
  2008-09-27 20:07 ` Hilco Wijbenga
@ 2008-09-28 11:59   ` Robin Atwood
  0 siblings, 0 replies; 7+ messages in thread
From: Robin Atwood @ 2008-09-28 11:59 UTC (permalink / raw
  To: gentoo-user

On Sunday 28 Sep 2008, Hilco Wijbenga wrote:
> On Sat, Sep 27, 2008 at 10:09, Robin Atwood <robin.atwood@attglobal.net> 
wrote:
> > Many web sites are badly designed in that that they hard-code text input
> > fields with a black font but inherit the background colour from your
> > desktop, so if you have a suitably Gothic light-on-dark colour scheme you
> > cannot read your input. I have solved this with KDE Konqueror by
> > supplying a user css page but, for those occasions when you have to use
> > it, I want to do the same thing with Firefox. A quick google reveals the
> > presence of userContent.css in your profile, so I added my rules, eg,
> >
> > html->body {
> >  background-color: white;
> >  color: black;
> > }
> >
> > input {
> >  background-color: #E1E7FD;
> >  color: black;
> > }
> >
> > but it makes absolutely no difference. Anybody had any luck with this?
>
> Have you looked at Preferences --> Content --> Fonts & Colors -->
> Colors...? Uncheck the "Allows pages ..." and set your own
> preferences. I've never used it but it looks like it might help.

I tried that but the rest of the page becomes very white!
Cheers..
-Robin
-- 
------------------------------------------------------
Robin Atwood, Bangkok, Thailand.
tel/fax: +66 2252 1438      
mobile: +66 851 322487
MSN:    robin@binro.org
Skype:  abend922
Yahoo:	abend922
------------------------------------------------------














^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [gentoo-user]  Re: Howto use user CSS with Firefox?
  2008-09-27 21:16 ` [gentoo-user] " »Q«
@ 2008-09-28 12:00   ` Robin Atwood
  0 siblings, 0 replies; 7+ messages in thread
From: Robin Atwood @ 2008-09-28 12:00 UTC (permalink / raw
  To: gentoo-user

On Sunday 28 Sep 2008, »Q« wrote:
> On Sun, 28 Sep 2008 00:09:00 +0700
>
> Robin Atwood <robin.atwood@attglobal.net> wrote:
> > I have solved this with KDE Konqueror by supplying a user css
> > page but, for those occasions when you have to use it, I want to do
> > the same thing with Firefox.
>
> You can use userContent.css for it after you google some documentation,
> but it's easier to just use the Stylish extension to manage user css.
>
> <http://userstyles.org/stylish/>.

Thanks, I will try it out.
-Robin
-- 















^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-user] Howto use user CSS with Firefox?
@ 2008-09-30 13:48 Robin Atwood
  0 siblings, 0 replies; 7+ messages in thread
From: Robin Atwood @ 2008-09-30 13:48 UTC (permalink / raw
  To: gentoo-user

A complete solution to this problem for Firefox 2&3  may be found at:

http://www.gomellow.com/?p=32.

HTH
-Robin
--














^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2008-09-30 13:48 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-27 17:09 [gentoo-user] Howto use user CSS with Firefox? Robin Atwood
2008-09-27 17:25 ` Ward Poelmans
2008-09-27 20:07 ` Hilco Wijbenga
2008-09-28 11:59   ` Robin Atwood
2008-09-27 21:16 ` [gentoo-user] " »Q«
2008-09-28 12:00   ` Robin Atwood
  -- strict thread matches above, loose matches on Subject: below --
2008-09-30 13:48 [gentoo-user] " Robin Atwood

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox