diff --git a/assets/stylesheets/_z-index.scss b/assets/stylesheets/_z-index.scss
index 949a0101b1f527..b1c3341695204b 100644
--- a/assets/stylesheets/_z-index.scss
+++ b/assets/stylesheets/_z-index.scss
@@ -112,7 +112,10 @@ $z-layers: (
// Make sure corner handles are above side handles for ResizableBox component
".components-resizable-box__side-handle": 1,
- ".components-resizable-box__corner-handle": 2
+ ".components-resizable-box__corner-handle": 2,
+
+ // Make sure block manager sticky category titles appear above the options
+ ".edit-post-manage-blocks-modal__category-title": 1
);
@function z-index( $key ) {
diff --git a/packages/components/src/checkbox-control/index.js b/packages/components/src/checkbox-control/index.js
index 0cf12f0b9dcd90..77f75a33064985 100644
--- a/packages/components/src/checkbox-control/index.js
+++ b/packages/components/src/checkbox-control/index.js
@@ -15,18 +15,20 @@ function CheckboxControl( { label, className, heading, checked, help, instanceId
return (
-
-
diff --git a/packages/components/src/checkbox-control/style.scss b/packages/components/src/checkbox-control/style.scss
index 240b1ad7623b83..49c768c73c9aa5 100644
--- a/packages/components/src/checkbox-control/style.scss
+++ b/packages/components/src/checkbox-control/style.scss
@@ -1,3 +1,6 @@
+$checkbox-input-size: 16px;
+$checkbox-input-size-sm: 25px; // width + height for small viewports
+
.components-checkbox-control__input[type="checkbox"] {
border: 1px solid #b4b9be;
background: #fff;
@@ -6,14 +9,17 @@
cursor: pointer;
display: inline-block;
line-height: 0;
- height: 16px;
margin: 0 4px 0 0;
outline: 0;
padding: 0 !important;
text-align: center;
- vertical-align: middle;
- width: 16px;
- min-width: 16px;
+ vertical-align: top;
+ width: $checkbox-input-size-sm;
+ height: $checkbox-input-size-sm;
+ @include break-small() {
+ height: $checkbox-input-size;
+ width: $checkbox-input-size;
+ }
-webkit-appearance: none;
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
transition: 0.05s border-color ease-in-out;
@@ -39,34 +45,32 @@
}
}
-.components-checkbox-control__label {
+.components-checkbox-control__input-container {
position: relative;
+ display: inline-block;
+ margin-right: 12px;
vertical-align: middle;
- line-height: 1;
+ width: $checkbox-input-size-sm;
+ height: $checkbox-input-size-sm;
+ @include break-small() {
+ width: $checkbox-input-size;
+ height: $checkbox-input-size;
+ }
}
svg.dashicon.components-checkbox-control__checked {
- width: 21px;
- height: 21px;
fill: #fff;
cursor: pointer;
position: absolute;
- left: -31px;
- bottom: -3px;
+ left: -4px;
+ top: -2px;
+ width: 31px;
+ height: 31px;
+ @include break-small() {
+ width: 21px;
+ height: 21px;
+ left: -3px;
+ }
user-select: none;
pointer-events: none;
}
-
-@media screen and ( max-width: 728px ) {
- .components-checkbox-control__input[type="checkbox"] {
- width: 25px;
- height: 25px;
- }
-
- svg.dashicon.components-checkbox-control__checked {
- width: 31px;
- height: 31px;
- left: -41px;
- bottom: -9px;
- }
-}
diff --git a/packages/edit-post/src/components/manage-blocks-modal/style.scss b/packages/edit-post/src/components/manage-blocks-modal/style.scss
index 8fa6693672f755..46b877d631573b 100644
--- a/packages/edit-post/src/components/manage-blocks-modal/style.scss
+++ b/packages/edit-post/src/components/manage-blocks-modal/style.scss
@@ -54,6 +54,7 @@
top: 0;
padding: $panel-padding 0;
background-color: $white;
+ z-index: z-index(".edit-post-manage-blocks-modal__category-title");
.components-base-control__field {
margin-bottom: 0;
@@ -88,7 +89,7 @@
margin: 0;
}
- .components-modal__content & input[type="checkbox"] {
+ .components-modal__content &.components-checkbox-control__input-container {
margin: 0 $grid-size;
}
diff --git a/packages/edit-post/src/components/options-modal/options/test/__snapshots__/enable-custom-fields.js.snap b/packages/edit-post/src/components/options-modal/options/test/__snapshots__/enable-custom-fields.js.snap
index 71c2036684552d..68859d38900241 100644
--- a/packages/edit-post/src/components/options-modal/options/test/__snapshots__/enable-custom-fields.js.snap
+++ b/packages/edit-post/src/components/options-modal/options/test/__snapshots__/enable-custom-fields.js.snap
@@ -10,18 +10,17 @@ exports[`EnableCustomFieldsOption renders a checked checkbox and a confirmation
-
-
+
-
+
+
-
-
+
-
+
+
@@ -107,14 +113,18 @@ exports[`EnableCustomFieldsOption renders an unchecked checkbox and a confirmati
-
+
+
+
-
+
+
+