TTW Highlighting Text

Znak

Hall of Fame
Since the last update to the forum whenever you try to highlight text (within a new post), the highlighter colour is invisible — could we change that please so you can see what you highlight? Thanks!
 

Icsa

Semi-Pro
Bumping this thread - @TW Staff
It would be great if this can be fixed. The white highlighting is especially painful when one is trying to edit text for fixes/changes, because you have no idea what text is selected. Happy to work with you to explain what is happening.
 

Icsa

Semi-Pro
The issue is coming from the ::selection element:
selection.png

The background color need to be anything but white. And preferable, the text color needs to be also updated to contrast the new background.

Best approach is to remove this rule and let the browser pickup the colors:

.fr-wrapper ::selection {
background: #fff;
color: #141414;
}
 
Last edited:

esgee48

G.O.A.T.
Just an FYI. When using FF ver 110, when text is highlighted, the text turns white with a blue background.
 
Last edited:
Top