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:
Sergey Biryukov 2020-10-17 01:13:06 +00:00
parent 6dba11fb82
commit c5f1d21020
11 changed files with 41 additions and 9 deletions

View File

@ -1797,6 +1797,10 @@ table.links-table {
padding: 10px 0;
}
.edit-term-notes {
display: none;
}
.privacy-text-box {
width: auto;
}

File diff suppressed because one or more lines are too long

View File

@ -1796,6 +1796,10 @@ table.links-table {
padding: 10px 0;
}
.edit-term-notes {
display: none;
}
.privacy-text-box {
width: auto;
}

File diff suppressed because one or more lines are too long

View File

@ -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%;

File diff suppressed because one or more lines are too long

View File

@ -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%;

File diff suppressed because one or more lines are too long

View File

@ -477,7 +477,7 @@ if ( $wp_list_table->has_items() ) {
?>
<div id="ajax-response"></div>
<br class="clear" />
<div class="clear" /></div>
</div>
<?php

View File

@ -590,7 +590,7 @@ if ( strlen( $usersearch ) ) {
<?php $wp_list_table->display(); ?>
</form>
<br class="clear" />
<div class="clear" /></div>
</div>
<?php
break;

View File

@ -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.