Skip to content

Commit

Permalink
Fix postmeta radio regression.
Browse files Browse the repository at this point in the history
This PR fixes #18181.

The regression was caused due to a margin added to the pseudo element which was not necessary for the radio buttons.
  • Loading branch information
jasmussen committed Oct 30, 2019
1 parent d56979d commit 29515e7
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,7 @@
// checkboxes used in metaboxes have to be slightly unstyled here.
// @todo: remove this entire rule once checkboxes are the same everywhere.
// See: https://github.com/WordPress/gutenberg/issues/18053
.postbox-container .postbox input[type="checkbox"],
.postbox-container .postbox input[type="radio"] {
.postbox-container .postbox input[type="checkbox"] {
border: $border-width solid $dark-gray-300;

&:checked {
Expand Down

0 comments on commit 29515e7

Please sign in to comment.