Fieldset Title is blank.Bug?

116 Views Asked by At

Why some fielsets title are blank? Please see images:

Fieldset tittle is blank

Ok in this form

1

There are 1 best solutions below

2
On

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.