XF 2.2 How can i change the colors of the link in editor?

Dkf

Active member
I have a dark forum style.
And I have problem - I don't see links in editor :(
White color on a white background.

1679486415626.png

How can i change the colors of the link only in editor? But leave it white in other places.
 
Solution
Why didn't you say ...

Less:
.fr-box a
{
    color: black;
}

Seems odd having a light editor in a dark style though.
Why not make the editor dark to match the style?
Add this to the extra.less template:

Less:
[data-template*="thread_view"]
{
    .bbWrapper a
    {
        color: orange;
    }
}

Change the colour to suit.
 
Links are not parsed in the editor - they're just text until you submit the post.

Can you clarify how you are seeing URLs when composing a post?
 
Links are not parsed in the editor - they're just text until you submit the post.

Can you clarify how you are seeing URLs when composing a post?

I see it in white when I try to edit a post.
When I type a message in the editor, I see all the text as normal (black).

1679575622812.png
 
Top Bottom