Display profiles?

RabidBob

First Post
Hi,

I can't seem to find the display change option. White on black is damn difficult to read! Is it not set up yet or am I just blind?

Cheers!
 

log in or register to remove this ad

No matter, installed stylish (FF mod) and whipped up a quick CSS change.

If anyone's interested:

@-moz-document domain("enworld.org") {
* { background-color: white !important; color: black !important; }
a:link { color: blue !important }
a:visited { color: red !important }
}
 

This is an improvement... Maybe we should make it a news item?

But the white is almost painfully bright... So I changed your script slightly

@-moz-document domain("enworld.org") {
* { background-color: lightgray !important; color: black !important; }
a:link { color: blue !important }
a:visited { color: red !important }
}

I still get lots of black lines and so forth... any ideas?
 


This is an improvement... Maybe we should make it a news item?

But the white is almost painfully bright... So I changed your script slightly

@-moz-document domain("enworld.org") {
* { background-color: lightgray !important; color: black !important; }
a:link { color: blue !important }
a:visited { color: red !important }
}

I still get lots of black lines and so forth... any ideas?

If I messed around with it I'm sure I could make the black lines go away, but to be honest they don't bother me at all! The light gray is nice I'll try it for a bit.

Nice to see another "Master of Go" fan around btw. :) Love that book!
 


This is an improvement... Maybe we should make it a news item?

But the white is almost painfully bright... So I changed your script slightly

@-moz-document domain("enworld.org") {
* { background-color: lightgray !important; color: black !important; }
a:link { color: blue !important }
a:visited { color: red !important }
}

I still get lots of black lines and so forth... any ideas?

I've done another refinement to eliminate some of the heavy black lines and ensure that some buttons (e.g. fork to new thread) are properly visible

Code:
@-moz-document domain("enworld.org") {
* { background-color: #ffffdd !important; color: black !important; }
a:link { color: blue !important }
a:visited { color: red !important }
.button {background: #ffffff !important;}
.thead {background: #fff!important;}
.vbmenu_control {background: #fff !important;}
.tcat {background:#fff !important;}
}
 


Thanks for those locations, Mike,

If I can make the time I might look into helping you out with addition stylesheets (when/if the styleswitcher comes back). Rest assured I won't touch the live ones though!

Cheers
 

I've done another refinement to eliminate some of the heavy black lines and ensure that some buttons (e.g. fork to new thread) are properly visible

Code:
@-moz-document domain("enworld.org") {
* { background-color: #ffffdd !important; color: black !important; }
a:link { color: blue !important }
a:visited { color: red !important }
.button {background: #ffffff !important;}
.thead {background: #fff!important;}
.vbmenu_control {background: #fff !important;}
.tcat {background:#fff !important;}
}
Using it now. Like it a lot. I still see a few "black artifacts" but it's now completely useable for me.

Thanks! :D
 

Remove ads

Top