Changeset 62602
- Timestamp:
- 06/30/2026 08:14:22 PM (7 weeks ago)
- Location:
- branches/7.0
- Files:
-
- 11 edited
-
. (modified) (1 prop)
-
src/wp-admin/css/common.css (modified) (3 diffs)
-
src/wp-admin/css/forms.css (modified) (3 diffs)
-
src/wp-admin/css/list-tables.css (modified) (3 diffs)
-
src/wp-admin/includes/class-wp-comments-list-table.php (modified) (1 diff)
-
src/wp-admin/includes/class-wp-links-list-table.php (modified) (1 diff)
-
src/wp-admin/includes/class-wp-list-table.php (modified) (2 diffs)
-
src/wp-admin/includes/class-wp-media-list-table.php (modified) (1 diff)
-
src/wp-admin/includes/class-wp-posts-list-table.php (modified) (1 diff)
-
src/wp-admin/includes/class-wp-screen.php (modified) (2 diffs)
-
src/wp-admin/includes/media.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/7.0
-
branches/7.0/src/wp-admin/css/common.css
r62561 r62602 1875 1875 border-top: none; 1876 1876 height: auto; 1877 min-height: 32px; /* Compact size for header buttons */1878 1877 margin-bottom: 0; 1879 1878 padding: 0 6px 0 16px; … … 1881 1880 border-radius: 0 0 4px 4px; 1882 1881 color: #646970; 1883 line-height: 2.30769231; /* 30px - matches compact button */1884 1882 box-shadow: 0 0 0 transparent; 1885 1883 transition: box-shadow 0.1s linear; … … 4279 4277 } 4280 4278 4279 #screen-meta-links .show-settings:after { 4280 line-height: 1.9; 4281 } 4282 4281 4283 .wp-filter .search-form input[type="search"] { 4282 4284 font-size: 1rem; -
branches/7.0/src/wp-admin/css/forms.css
r62274 r62602 523 523 #post-query-submit { 524 524 margin: 0 8px 0 0; 525 min-height: 32px;526 line-height: 2.30769231; /* 30px for 32px height with 13px font */527 padding: 0 12px;528 525 } 529 526 … … 1758 1755 } 1759 1756 1757 .wp-core-ui .tablenav input[type="text"], 1758 .wp-core-ui .tablenav input[type="password"], 1759 .wp-core-ui .tablenav input[type="date"], 1760 .wp-core-ui .tablenav input[type="datetime"], 1761 .wp-core-ui .tablenav input[type="datetime-local"], 1762 .wp-core-ui .tablenav input[type="email"], 1763 .wp-core-ui .tablenav input[type="month"], 1764 .wp-core-ui .tablenav input[type="number"], 1765 .wp-core-ui .tablenav input[type="search"], 1766 .wp-core-ui .tablenav input[type="tel"], 1767 .wp-core-ui .tablenav input[type="time"], 1768 .wp-core-ui .tablenav input[type="url"], 1769 .wp-core-ui .tablenav input[type="week"], 1770 .wp-core-ui .tablenav select { 1771 min-height: 40px; 1772 } 1773 1774 .wp-core-ui .tablenav .button { 1775 min-height: 40px; 1776 line-height: 2.71428571; 1777 padding: 0 14px; 1778 } 1779 1760 1780 p.search-box { 1761 1781 float: none; … … 1774 1794 width: 100%; 1775 1795 margin-bottom: 0; 1796 } 1797 1798 p.search-box input[type="search"], 1799 p.search-box input[type="text"] { 1800 min-height: 40px; 1776 1801 } 1777 1802 -
branches/7.0/src/wp-admin/css/list-tables.css
r62338 r62602 1942 1942 .tablenav .tablenav-pages .button, 1943 1943 .tablenav .tablenav-pages .tablenav-pages-navspan { 1944 min-width: 44px; 1945 padding: 12px 8px; 1944 min-width: 40px; 1945 min-height: 40px; 1946 padding: 10px 8px; 1946 1947 font-size: 18px; 1947 1948 line-height: 1; … … 1949 1950 1950 1951 .tablenav-pages .pagination-links .current-page { 1951 min-width: 4 4px;1952 padding: 1 2px 6px;1952 min-width: 40px; 1953 padding: 10px 6px; 1953 1954 font-size: 16px; 1954 1955 line-height: 1.125; … … 2178 2179 } 2179 2180 2181 .inline-edit-row select, 2182 .inline-edit-row input:where(:not([type=checkbox],[type=radio],[type=submit],[type=button])) { 2183 min-height: 40px; 2184 } 2185 2180 2186 .inline-edit-row fieldset input[name=jj], 2181 2187 .inline-edit-row fieldset input[name=hh], -
branches/7.0/src/wp-admin/includes/class-wp-comments-list-table.php
r62331 r62602 443 443 if ( ! empty( $output ) && $this->has_items() ) { 444 444 echo $output; 445 submit_button( __( 'Filter' ), ' ', 'filter_action', false, array( 'id' => 'post-query-submit' ) );445 submit_button( __( 'Filter' ), 'button-compact', 'filter_action', false, array( 'id' => 'post-query-submit' ) ); 446 446 } 447 447 } -
branches/7.0/src/wp-admin/includes/class-wp-links-list-table.php
r61657 r62602 124 124 wp_dropdown_categories( $dropdown_options ); 125 125 126 submit_button( __( 'Filter' ), ' ', 'filter_action', false, array( 'id' => 'post-query-submit' ) );126 submit_button( __( 'Filter' ), 'button-compact', 'filter_action', false, array( 'id' => 'post-query-submit' ) ); 127 127 ?> 128 128 </div> -
branches/7.0/src/wp-admin/includes/class-wp-list-table.php
r61657 r62602 405 405 <label class="screen-reader-text" for="<?php echo esc_attr( $input_id ); ?>"><?php echo $text; ?>:</label> 406 406 <input type="search" id="<?php echo esc_attr( $input_id ); ?>" name="s" value="<?php _admin_search_query(); ?>" /> 407 <?php submit_button( $text, ' ', '', false, array( 'id' => 'search-submit' ) ); ?>407 <?php submit_button( $text, 'button-compact', '', false, array( 'id' => 'search-submit' ) ); ?> 408 408 </p> 409 409 <?php … … 621 621 echo "</select>\n"; 622 622 623 submit_button( __( 'Apply' ), 'action ', 'bulk_action', false, array( 'id' => "doaction$two" ) );623 submit_button( __( 'Apply' ), 'action button-compact', 'bulk_action', false, array( 'id' => "doaction$two" ) ); 624 624 echo "\n"; 625 625 } -
branches/7.0/src/wp-admin/includes/class-wp-media-list-table.php
r61790 r62602 243 243 do_action( 'restrict_manage_posts', $this->screen->post_type, $which ); 244 244 245 submit_button( __( 'Filter' ), ' ', 'filter_action', false, array( 'id' => 'post-query-submit' ) );245 submit_button( __( 'Filter' ), 'button-compact', 'filter_action', false, array( 'id' => 'post-query-submit' ) ); 246 246 247 247 if ( $this->is_trash && $this->has_items() -
branches/7.0/src/wp-admin/includes/class-wp-posts-list-table.php
r62355 r62602 597 597 if ( ! empty( $output ) ) { 598 598 echo $output; 599 submit_button( __( 'Filter' ), ' ', 'filter_action', false, array( 'id' => 'post-query-submit' ) );599 submit_button( __( 'Filter' ), 'button-compact', 'filter_action', false, array( 'id' => 'post-query-submit' ) ); 600 600 } 601 601 } -
branches/7.0/src/wp-admin/includes/class-wp-screen.php
r62269 r62602 970 970 <?php if ( $this->show_screen_options() ) : ?> 971 971 <div id="screen-options-link-wrap" class="hide-if-no-js screen-meta-toggle"> 972 <button type="button" id="show-settings-link" class="button show-settings" aria-controls="screen-options-wrap" aria-expanded="false"><?php _e( 'Screen Options' ); ?></button>972 <button type="button" id="show-settings-link" class="button button-compact show-settings" aria-controls="screen-options-wrap" aria-expanded="false"><?php _e( 'Screen Options' ); ?></button> 973 973 </div> 974 974 <?php … … 977 977 ?> 978 978 <div id="contextual-help-link-wrap" class="hide-if-no-js screen-meta-toggle"> 979 <button type="button" id="contextual-help-link" class="button show-settings" aria-controls="contextual-help-wrap" aria-expanded="false"><?php _e( 'Help' ); ?></button>979 <button type="button" id="contextual-help-link" class="button button-compact show-settings" aria-controls="contextual-help-wrap" aria-expanded="false"><?php _e( 'Help' ); ?></button> 980 980 </div> 981 981 <?php endif; ?> -
branches/7.0/src/wp-admin/includes/media.php
r61841 r62602 2905 2905 <?php } ?> 2906 2906 2907 <?php submit_button( __( 'Filter »' ), ' ', 'post-query-submit', false ); ?>2907 <?php submit_button( __( 'Filter »' ), 'button-compact', 'post-query-submit', false ); ?> 2908 2908 2909 2909 </div>
Note:
See TracChangeset
for help on using the changeset viewer.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)