Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+2 votes
503 views
in Q2A Core by

The color of the bar changes when hovering, see image:

 

Same happens when one uses other colors (.qa-form-tall-table{background:#ccc;}), each <tr> blinks when hovering over it.

Any clue ? Happened so in chrome...

Q2A version: 1.6
by
I confirmed it in V1.6 and Snow theme, too.

1 Answer

0 votes
by
selected by
 
Best answer

Look to your CSS. This is not a bug that is a css parameter.

Change :hover styles by adding:

td#cke_top_content:hover{background:none!important}

I have this implemented for a while, check out: http://www.gute-mathe-fragen.de/ask

td#cke_top_content:hover{background:none!important}
td#cke_top_content:hover{background:none!important}
by
Great, so what do we need to do ?
The same issue we do have here on q2a when asking a question.
Thanks so far...
by
you have to use:

td#cke_top_content:hover{background:none!important}
by
Thank You Kai, I will give it a try right now !
...