diff --git a/src/wp-admin/css/common.css b/src/wp-admin/css/common.css
index 75048d3..79417c6 100644
a
|
b
|
img { |
3780 | 3780 | overflow-x: hidden; |
3781 | 3781 | } |
3782 | 3782 | |
| 3783 | .metabox-prefs-container |
| 3784 | { |
| 3785 | display: grid; |
| 3786 | grid-template-columns: 1fr 1fr; |
| 3787 | } |
| 3788 | |
| 3789 | .metabox-prefs-container > * |
| 3790 | { |
| 3791 | display: inline-block; |
| 3792 | padding: 5px; |
| 3793 | } |
| 3794 | |
3783 | 3795 | body * { |
3784 | 3796 | -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important; |
3785 | 3797 | } |
diff --git a/src/wp-admin/includes/class-wp-screen.php b/src/wp-admin/includes/class-wp-screen.php
index d04d9a7..87ff0be 100644
a
|
b
|
final class WP_Screen { |
1120 | 1120 | </p> |
1121 | 1121 | <?php |
1122 | 1122 | |
| 1123 | echo ('<div class="metabox-prefs-container">'); |
| 1124 | |
1123 | 1125 | meta_box_prefs( $this ); |
1124 | 1126 | |
1125 | 1127 | if ( 'dashboard' === $this->id && has_action( 'welcome_panel' ) && current_user_can( 'edit_theme_options' ) ) { |
… |
… |
final class WP_Screen { |
1137 | 1139 | echo _x( 'Welcome', 'Welcome panel' ) . "</label>\n"; |
1138 | 1140 | } |
1139 | 1141 | ?> |
| 1142 | |
| 1143 | </div> |
| 1144 | |
1140 | 1145 | </fieldset> |
1141 | 1146 | <?php |
1142 | 1147 | } |