Hello people
I am wondering why FF does not support link styles in editor area.
I mean I added styles link style into fck_editorarea.css but only link style doesnt change. other elements are seemed fine, like font color, bg color, etc... only link doesnt chnge...
and i tried fckeditor 2.2 demo with FF, link color is not even showing default color(#0000ff).
its shows gray with underline.
is this a bug?
sorry my english hope you can get what I mean.
I am wondering why FF does not support link styles in editor area.
I mean I added styles link style into fck_editorarea.css but only link style doesnt change. other elements are seemed fine, like font color, bg color, etc... only link doesnt chnge...
and i tried fckeditor 2.2 demo with FF, link color is not even showing default color(#0000ff).
its shows gray with underline.
is this a bug?
sorry my english hope you can get what I mean.
RE: editor area styles in FF(Link)
That is a bug in Firefox: https://bugzilla.mozilla.org/show_bug.cgi?id=300358
RE: editor area styles in FF(Link)
Ive checked bug report.
But this bug occurs when text-decoration:none is specified right?
even text-decoration is set underline, the problem i mentioned is occurs. I tested ff 1.5.0.1
My problem is editor ignores link styles and some link doesnt even show as default color.
is this problem also related to this bug?
RE: editor area styles in FF(Link)
Yes, it is the same problem although that bug doesn't mention colors, but you could read the other linked bugs or the source code to find that both color and text-decoration are set with in the default stylesheet and you need to set !important in your css to override that:
a:link {
color:green !important;
text-decoration:none !important;
}
RE: editor area styles in FF(Link)
It worked with !importan.
cool!
Thank you again for your help!
Hanzo