Replies: 0
In the admin area in Plugins menu in the Chrome browser do not display checked checkboxes. I’ve looked at the thing and found that it is associated with the \wp-admin\css\forms.css file in which the style property is specified which blocks the display of checked checkboxes.
input [type = "checkbox"], input [type = "radio"] { ... -webkit-appearance : none; }
If I disable this property (or set it as -webkit-appearance: checkbox;) – everything is displayed normally.
I did not notice this before. Could you help me with this issue?