From a04ae19534b3365528c9d7b585c80f69d4be40e9 Mon Sep 17 00:00:00 2001 From: Peter Wilson Date: Sat, 7 Jul 2018 13:27:27 +1000 Subject: [PATCH] Remove wildcard selector from meta-box box-sizing. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The child elements now inherit the container’s box-sizing rules. --- edit-post/components/meta-boxes/meta-boxes-area/style.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/edit-post/components/meta-boxes/meta-boxes-area/style.scss b/edit-post/components/meta-boxes/meta-boxes-area/style.scss index b25f0c693f2903..1b92ba35657127 100644 --- a/edit-post/components/meta-boxes/meta-boxes-area/style.scss +++ b/edit-post/components/meta-boxes/meta-boxes-area/style.scss @@ -9,7 +9,8 @@ * other elements (such as .button) are unaffected by Gutenberg's style * because of their higher specificity. */ - * { + &__container, + .inside { box-sizing: content-box; }