Reputation: 15
Why some fielsets title are blank? Please see images:
Upvotes: 0
Views: 94
Reputation: 704
This seems to be a regression with the latest Chrome version, as a workaround I came up with these two hacks:
.x-fieldset-header {
overflow: unset;
}
.x-fieldset-header-tool-default > .x-tool-toggle {
opacity: inherit;
}
the opacity hack fixes invisible arrows/checkboxes when the fieldset is set to collapsible.
Upvotes: 0