umbraco / Umbraco-CMS

Umbraco is a free and open source .NET content management system helping you deliver delightful digital experiences.
https://umbraco.com
Other
4.49k stars 2.69k forks source link

v8: Dropup is behind grid hover overlay #4979

Closed bjarnef closed 5 years ago

bjarnef commented 5 years ago

In grid it seems the grid overlay overlap the dropup button in footer.

I seems to be because this overlay has z-index: 5; while .umb-editor-footer only has z-index: 1;

When changing .umb-editor-footer to e.g. z-index: 10; it seems to fix it in this scenario.

2019-03-13_15-36-19

image

bjarnef commented 5 years ago

When using ModelsBuilder and having the "Save and generate models" action, it can also be reproduced on document types.

image

In this case .umb-group-builder__property-tags has z-index: 20; so the z-index of the footer need to be increased further, e.g. z-index: 30;.

nul800sebastiaan commented 5 years ago

Fixed in https://github.com/umbraco/Umbraco-CMS/pull/4980