@concretecms/bedrock 1.4.0 → 1.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -427,6 +427,13 @@ div.ccm-form-block-design {
|
|
|
427
427
|
}
|
|
428
428
|
}
|
|
429
429
|
|
|
430
|
+
// If the popover is inline in the page it adds unintentional height after the title notches and area tabs
|
|
431
|
+
// Let's fix this by making them absolutely positioned.
|
|
432
|
+
div.ccm-edit-mode-title-notch-wrapper > .popover,
|
|
433
|
+
div.ccm-area-footer > .popover {
|
|
434
|
+
position: absolute;
|
|
435
|
+
}
|
|
436
|
+
|
|
430
437
|
/**
|
|
431
438
|
* Edit mode in-page controls for dragging, moving blocks around
|
|
432
439
|
*/
|
package/package.json
CHANGED