Normal behaviour when hovering a DNN module should be that opacity is set to 1. When editing an HTML module in IE(11) however, when the mouse hovers over the text to be edited, the opacity falls back to 0.5.
The following CSS adjustments don't work. Has anyone stumbled upon the same?:
.dnnEditState.dnnModule html:hover {
opacity:1;
-webkit-transition: none;
-moz-transition: none;
-ms-transition: none;
-o-transition: none;
transition: none;
}