mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-08 17:38:26 +01:00
Administration: Wrap the list table items count to a new line on small screens.
This avoids overlapping with action buttons and brings some consistency to bottom paddings across various screens. Props passoniate, afercia, anuj2, rolfsiebers, uxkai, ireneyoast, thijsvanloef, hellofromTonya, audrasjb, helen, SergeyBiryukov. Fixes #49246. Built from https://develop.svn.wordpress.org/trunk@49178 git-svn-id: http://core.svn.wordpress.org/trunk@48940 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
6dba11fb82
commit
c5f1d21020
@ -1797,6 +1797,10 @@ table.links-table {
|
||||
padding: 10px 0;
|
||||
}
|
||||
|
||||
.edit-term-notes {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.privacy-text-box {
|
||||
width: auto;
|
||||
}
|
||||
|
2
wp-admin/css/edit-rtl.min.css
vendored
2
wp-admin/css/edit-rtl.min.css
vendored
File diff suppressed because one or more lines are too long
@ -1796,6 +1796,10 @@ table.links-table {
|
||||
padding: 10px 0;
|
||||
}
|
||||
|
||||
.edit-term-notes {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.privacy-text-box {
|
||||
width: auto;
|
||||
}
|
||||
|
2
wp-admin/css/edit.min.css
vendored
2
wp-admin/css/edit.min.css
vendored
File diff suppressed because one or more lines are too long
@ -1697,7 +1697,7 @@ div.action-links,
|
||||
}
|
||||
|
||||
.tablenav.bottom .tablenav-pages.one-page {
|
||||
margin: 15px 0 0 0;
|
||||
margin-top: 15px;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
@ -2153,6 +2153,18 @@ div.action-links,
|
||||
grid-template-columns: auto auto;
|
||||
}
|
||||
|
||||
.tablenav.bottom .displaying-num {
|
||||
position: relative;
|
||||
top: 0;
|
||||
display: block;
|
||||
text-align: left;
|
||||
padding-bottom: 0.5em;
|
||||
}
|
||||
|
||||
.tablenav.bottom .tablenav-pages.one-page {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.tablenav-pages .tablenav-paging-text {
|
||||
float: right;
|
||||
width: 100%;
|
||||
|
2
wp-admin/css/list-tables-rtl.min.css
vendored
2
wp-admin/css/list-tables-rtl.min.css
vendored
File diff suppressed because one or more lines are too long
@ -1696,7 +1696,7 @@ div.action-links,
|
||||
}
|
||||
|
||||
.tablenav.bottom .tablenav-pages.one-page {
|
||||
margin: 15px 0 0 0;
|
||||
margin-top: 15px;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
@ -2152,6 +2152,18 @@ div.action-links,
|
||||
grid-template-columns: auto auto;
|
||||
}
|
||||
|
||||
.tablenav.bottom .displaying-num {
|
||||
position: relative;
|
||||
top: 0;
|
||||
display: block;
|
||||
text-align: right;
|
||||
padding-bottom: 0.5em;
|
||||
}
|
||||
|
||||
.tablenav.bottom .tablenav-pages.one-page {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.tablenav-pages .tablenav-paging-text {
|
||||
float: left;
|
||||
width: 100%;
|
||||
|
2
wp-admin/css/list-tables.min.css
vendored
2
wp-admin/css/list-tables.min.css
vendored
File diff suppressed because one or more lines are too long
@ -477,7 +477,7 @@ if ( $wp_list_table->has_items() ) {
|
||||
?>
|
||||
|
||||
<div id="ajax-response"></div>
|
||||
<br class="clear" />
|
||||
<div class="clear" /></div>
|
||||
</div>
|
||||
|
||||
<?php
|
||||
|
@ -590,7 +590,7 @@ if ( strlen( $usersearch ) ) {
|
||||
<?php $wp_list_table->display(); ?>
|
||||
</form>
|
||||
|
||||
<br class="clear" />
|
||||
<div class="clear" /></div>
|
||||
</div>
|
||||
<?php
|
||||
break;
|
||||
|
@ -13,7 +13,7 @@
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.6-alpha-49177';
|
||||
$wp_version = '5.6-alpha-49178';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
Loading…
Reference in New Issue
Block a user