Forum Moderators: open
Also, where can I find some information on building my own Firebird extensions?
Thanks,
Matthew
With ANY web browser, CSS styles can always be overridden by setting your own CSS tags, and labeling them as 'Important'
For Firebird, in your \defaults\profile\chrome directory you should find a file labeled userChrome-example.css. Rename that file to userChrome.css, then open it with any text browser, or editor, you prefer.
Add this to the file...
BLINK {text-decoration: inherit !important;}
Save the file and that should do it.
The !important declaration forces the user style sheet to take precedence over the author's style sheet in CSS2 (this is a slight change from CSS1). By forcing the blink element to inherit the text-decoration, the element takes the same computed text-decoration its parent, which (one would hope) isn't blinking.
As far as the second part of the question -- does anyone know where to learn about creating Firebird extensions? The website just promises that this information is coming soon. But Mozilla and other websites already publish many custom extensions so this information is available somewhere.
Just type about:config in your address bar, and you'll get all those choices. Most of them I don't begin to understand, although some are pretty self-evident.
Look for "browser.blink_allowed," double-click on it, and type "false" (without the quotes). Then click OK and you'll never be blinked at again.
Edited to add: Doh! I didn't see that asquithea had already suggested this, until after I posted.