I want to change the opacity of a div when the mouse is hovered over the area so I can reveal some text in djangocms.
When I add .team-img:hover .overlay { opacity: .8; }
djangocms clears it when I save the changes because it confuses :hover for the definition of the property value
Djangocms gives an attribute field for the type of rule and a another field for the value. In the attribute field i wrote style and in the value field i wrote
.team-img:hover .overlay { opacity: .8; }