Bug fix request
Description
A negative margin below Tabs causes ACF fields below to be shifted to the right in firefox
if the ACF fields below are not full width. (e.g. set to 50% width)
Firefox interprets the negative margin as reaching into the plane below.
Looks like this:
https://i.imgur.com/D1Rv6Yi.jpg
but it should look like this:
https://i.imgur.com/vAeW9Pw.jpg
—————————————————-
Area
Admin, Backend
—————————————————-
File
“acf-input.css” – Row 1402
.acf-fields > .acf-tab-wrap .acf-tab-group {
margin-bottom: -1px;
}
—————————————————-
Quick Workaround
Set Margin to 0 in admin style
“admin-style.css”
.acf-fields > .acf-tab-wrap .acf-tab-group {
margin-bottom: 0px !important;
}