This is probably only a theoretical problem for these CSS rules, but in overriding this CSS in our custom theme, someone was inspired to write the rule
.que.wordselect span {
margin-left: -3px
}
which applies much too broadly, and so broke other parts of the question layout.
As far as I can see (but correctly me if I am wrong), these CSS rules only need to apply within the .qtext div, so it is much safer to include that in the selector. What do you think?
This is probably only a theoretical problem for these CSS rules, but in overriding this CSS in our custom theme, someone was inspired to write the rule
.que.wordselect span { margin-left: -3px }
which applies much too broadly, and so broke other parts of the question layout.
As far as I can see (but correctly me if I am wrong), these CSS rules only need to apply within the .qtext div, so it is much safer to include that in the selector. What do you think?