diff --git a/src/wp-admin/css/common.css b/src/wp-admin/css/common.css
index 75048d3be5..3c14d2bcc1 100644
a
|
b
|
img { |
4074 | 4074 | } |
4075 | 4075 | } |
4076 | 4076 | |
| 4077 | /* Small mobile devices */ |
| 4078 | @media screen and (max-width: 480px) { |
| 4079 | .metabox-prefs-container { |
| 4080 | display: grid; |
| 4081 | } |
| 4082 | .metabox-prefs-container > * { |
| 4083 | display: inline-block; |
| 4084 | padding: 2px; |
| 4085 | } |
| 4086 | } |
| 4087 | |
4077 | 4088 | /* Smartphone */ |
4078 | 4089 | @media screen and (max-width: 600px) { |
4079 | 4090 | /* Disable horizontal scroll when responsive menu is open |
diff --git a/src/wp-admin/includes/class-wp-screen.php b/src/wp-admin/includes/class-wp-screen.php
index d04d9a75b2..1901bc8f25 100644
a
|
b
|
final class WP_Screen { |
1118 | 1118 | <?php _e( 'Some screen elements can be shown or hidden by using the checkboxes.' ); ?> |
1119 | 1119 | <?php _e( 'Expand or collapse the elements by clicking on their headings, and arrange them by dragging their headings or by clicking on the up and down arrows.' ); ?> |
1120 | 1120 | </p> |
| 1121 | <div class="metabox-prefs-container"> |
1121 | 1122 | <?php |
1122 | 1123 | |
1123 | 1124 | meta_box_prefs( $this ); |
… |
… |
final class WP_Screen { |
1137 | 1138 | echo _x( 'Welcome', 'Welcome panel' ) . "</label>\n"; |
1138 | 1139 | } |
1139 | 1140 | ?> |
| 1141 | </div> |
1140 | 1142 | </fieldset> |
1141 | 1143 | <?php |
1142 | 1144 | } |