Colors ruthlessly overridden
![]() ![]() |
Links to articles that haven't been written yet should be red, not blue. Keywords in search results links should be blue, not black. |
![]() ![]() |
I'm breaking this out to be an option. |
![]() ![]() |
Grant, if you do, could you make it the default? (new articles links in red) |
![]() ![]() |
I'll work something out. Until then, you can always edit the script as installed. Sorry to keep saying that, I've been busy, and hope to get the source and build environment on github asap. Replace:
With (assuming your default link color is #fff red)
... using the colors you want to use for blue, black, and so on. |
![]() ![]() |
Grant, that's not what we mean... |
![]() ![]() |
Oh, written, not read. Yeah landing on a stub is frustrating, great suggestion. |
![]() ![]() |
Hmm... not just that, background colours in tables are also changed to the default grey... take http://en.wikipedia.org/wiki/Comparison_of_Inte... for example. |
![]() ![]() |
Ah, I found the class for "new" links, it's
// New link color!
if (GM_getValue('newColor') == undefined) {
GM_setValue('newColor', 'red');
}
// All that other stuff...
if (GM_getValue('newColor') !== null) {
try {
GM_addStyle("a.new{text-decoration: none;color: " + GM_getValue('newColor') + " !important;font-weight: normal;}");
}
catch(err) {}
}
|
![]() ![]() |
Thanks auscompgeek, that's great stuff. |
![]() ![]() |
Oh, also found the class for stub links: |
![]() ![]() |
I believe this is fixed in the latest version. |






