Ticket #21598: 21598.5b.diff
File 21598.5b.diff, 30.2 KB (added by , 12 years ago) |
---|
-
wp-admin/includes/class-wp-posts-list-table.php
218 218 wp_dropdown_categories( $dropdown_options ); 219 219 } 220 220 do_action( 'restrict_manage_posts' ); 221 submit_button( __( 'Filter' ), ' secondary', false, false, array( 'id' => 'post-query-submit' ) );221 submit_button( __( 'Filter' ), 'button button-secondary secondary short', false, false, array( 'id' => 'post-query-submit' ) ); 222 222 } 223 223 224 224 if ( $this->is_trash && current_user_can( $post_type_object->cap->edit_others_posts ) ) { 225 submit_button( __( 'Empty Trash' ), 'button -secondary apply', 'delete_all', false );225 submit_button( __( 'Empty Trash' ), 'button button-secondary apply short', 'delete_all', false ); 226 226 } 227 227 ?> 228 228 </div> -
wp-admin/includes/plugin-install.php
130 130 <?php endif; ?> 131 131 <input type="search" name="s" value="<?php echo esc_attr($term) ?>" autofocus="autofocus" /> 132 132 <label class="screen-reader-text" for="plugin-search-input"><?php _e('Search Plugins'); ?></label> 133 <?php submit_button( __( 'Search Plugins' ), 'button ', 'plugin-search-input', false ); ?>133 <?php submit_button( __( 'Search Plugins' ), 'button short', 'plugin-search-input', false ); ?> 134 134 </form><?php 135 135 } 136 136 -
wp-admin/includes/class-wp-media-list-table.php
91 91 $this->months_dropdown( 'attachment' ); 92 92 93 93 do_action( 'restrict_manage_posts' ); 94 submit_button( __( 'Filter' ), ' secondary', false, false, array( 'id' => 'post-query-submit' ) );94 submit_button( __( 'Filter' ), 'button button-secondary secondary short', false, false, array( 'id' => 'post-query-submit' ) ); 95 95 } 96 96 97 97 if ( $this->detached ) { 98 98 submit_button( __( 'Scan for lost attachments' ), 'secondary', 'find_detached', false ); 99 99 } elseif ( $this->is_trash && current_user_can( 'edit_others_posts' ) ) { 100 submit_button( __( 'Empty Trash' ), 'button -secondary apply', 'delete_all', false );100 submit_button( __( 'Empty Trash' ), 'button button-secondary apply short', 'delete_all', false ); 101 101 } ?> 102 102 </div> 103 103 <?php -
wp-admin/includes/class-wp-links-list-table.php
68 68 'orderby' => 'name', 69 69 ); 70 70 wp_dropdown_categories( $dropdown_options ); 71 submit_button( __( 'Filter' ), ' secondary', false, false, array( 'id' => 'post-query-submit' ) );71 submit_button( __( 'Filter' ), 'button button-secondary secondary short', false, false, array( 'id' => 'post-query-submit' ) ); 72 72 ?> 73 73 </div> 74 74 <?php -
wp-admin/includes/post.php
1076 1076 if ( false === strpos($permalink, '%postname%') && false === strpos($permalink, '%pagename%') ) { 1077 1077 $return = '<strong>' . __('Permalink:') . "</strong>\n" . '<span id="sample-permalink" tabindex="-1">' . $permalink . "</span>\n"; 1078 1078 if ( '' == get_option( 'permalink_structure' ) && current_user_can( 'manage_options' ) && !( 'page' == get_option('show_on_front') && $id == get_option('page_on_front') ) ) 1079 $return .= '<span id="change-permalinks"><a href="options-permalink.php" class="button " target="_blank">' . __('Change Permalinks') . "</a></span>\n";1079 $return .= '<span id="change-permalinks"><a href="options-permalink.php" class="button small" target="_blank">' . __('Change Permalinks') . "</a></span>\n"; 1080 1080 if ( isset($view_post) ) 1081 $return .= "<span id='view-post-btn'><a href='$permalink' class='button '>$view_post</a></span>\n";1081 $return .= "<span id='view-post-btn'><a href='$permalink' class='button small'>$view_post</a></span>\n"; 1082 1082 1083 1083 $return = apply_filters('get_sample_permalink_html', $return, $id, $new_title, $new_slug); 1084 1084 … … 1105 1105 $return = '<strong>' . __('Permalink:') . "</strong>\n"; 1106 1106 $return .= '<span id="sample-permalink" tabindex="-1">' . $display_link . "</span>\n"; 1107 1107 $return .= '‎'; // Fix bi-directional text display defect in RTL languages. 1108 $return .= '<span id="edit-slug-buttons"><a href="#post_name" class="edit-slug button hide-if-no-js" onclick="editPermalink(' . $id . '); return false;">' . __('Edit') . "</a></span>\n";1108 $return .= '<span id="edit-slug-buttons"><a href="#post_name" class="edit-slug button small button-highlighted hide-if-no-js" onclick="editPermalink(' . $id . '); return false;">' . __('Edit') . "</a></span>\n"; 1109 1109 $return .= '<span id="editable-post-name-full">' . $post_name . "</span>\n"; 1110 1110 if ( isset($view_post) ) 1111 $return .= "<span id='view-post-btn'><a href='$view_link' class='button '>$view_post</a></span>\n";1111 $return .= "<span id='view-post-btn'><a href='$view_link' class='button small'>$view_post</a></span>\n"; 1112 1112 1113 1113 $return = apply_filters('get_sample_permalink_html', $return, $id, $new_title, $new_slug); 1114 1114 -
wp-admin/includes/class-wp-users-list-table.php
145 145 <option value=''><?php _e( 'Change role to…' ) ?></option> 146 146 <?php wp_dropdown_roles(); ?> 147 147 </select> 148 <?php submit_button( __( 'Change' ), ' secondary', 'changeit', false ); ?>148 <?php submit_button( __( 'Change' ), 'button button-secondary secondary short', 'changeit', false ); ?> 149 149 </div> 150 150 <?php 151 151 } -
wp-admin/includes/class-wp-list-table.php
213 213 <p class="search-box"> 214 214 <label class="screen-reader-text" for="<?php echo $input_id ?>"><?php echo $text; ?>:</label> 215 215 <input type="search" id="<?php echo $input_id ?>" name="s" value="<?php _admin_search_query(); ?>" /> 216 <?php submit_button( $text, 'button ', false, false, array('id' => 'search-submit') ); ?>216 <?php submit_button( $text, 'button short', false, false, array('id' => 'search-submit') ); ?> 217 217 </p> 218 218 <?php 219 219 } … … 300 300 301 301 echo "</select>\n"; 302 302 303 submit_button( __( 'Apply' ), 'button -secondary action', false, false, array( 'id' => "doaction$two" ) );303 submit_button( __( 'Apply' ), 'button button-secondary action short', false, false, array( 'id' => "doaction$two" ) ); 304 304 echo "\n"; 305 305 } 306 306 -
wp-admin/includes/dashboard.php
439 439 <form action="<?php echo network_admin_url('users.php'); ?>" method="get"> 440 440 <p> 441 441 <input type="search" name="s" value="" size="30" autocomplete="off" /> 442 <?php submit_button( __( 'Search Users' ), 'button ', 'submit', false, array( 'id' => 'submit_users' ) ); ?>442 <?php submit_button( __( 'Search Users' ), 'button short', 'submit', false, array( 'id' => 'submit_users' ) ); ?> 443 443 </p> 444 444 </form> 445 445 446 446 <form action="<?php echo network_admin_url('sites.php'); ?>" method="get"> 447 447 <p> 448 448 <input type="search" name="s" value="" size="30" autocomplete="off" /> 449 <?php submit_button( __( 'Search Sites' ), 'button ', 'submit', false, array( 'id' => 'submit_sites' ) ); ?>449 <?php submit_button( __( 'Search Sites' ), 'button short', 'submit', false, array( 'id' => 'submit_sites' ) ); ?> 450 450 </p> 451 451 </form> 452 452 <?php -
wp-admin/includes/meta-boxes.php
286 286 <label class="screen-reader-text" for="new-tag-<?php echo $tax_name; ?>"><?php echo $box['title']; ?></label> 287 287 <div class="taghint"><?php echo $taxonomy->labels->add_new_item; ?></div> 288 288 <p><input type="text" id="new-tag-<?php echo $tax_name; ?>" name="newtag[<?php echo $tax_name; ?>]" class="newtag form-input-tip" size="16" autocomplete="off" value="" /> 289 <input type="button" class="button tagadd " value="<?php esc_attr_e('Add'); ?>" /></p>289 <input type="button" class="button tagadd small" value="<?php esc_attr_e('Add'); ?>" /></p> 290 290 </div> 291 291 <p class="howto"><?php echo esc_attr( $taxonomy->labels->separate_items_with_commas ); ?></p> 292 292 <?php endif; ?> -
wp-admin/includes/class-wp-plugins-list-table.php
272 272 $screen = get_current_screen(); 273 273 274 274 if ( ! $screen->is_network && 'recently_activated' == $status ) 275 submit_button( __( 'Clear List' ), ' secondary', 'clear-recent-list', false );275 submit_button( __( 'Clear List' ), 'button button-secondary secondary short', 'clear-recent-list', false ); 276 276 elseif ( 'top' == $which && 'mustuse' == $status ) 277 277 echo '<p>' . sprintf( __( 'Files in the <code>%s</code> directory are executed automatically.' ), str_replace( ABSPATH, '/', WPMU_PLUGIN_DIR ) ) . '</p>'; 278 278 elseif ( 'top' == $which && 'dropins' == $status ) -
wp-admin/includes/class-wp-comments-list-table.php
224 224 ?> 225 225 </select> 226 226 <?php 227 submit_button( __( 'Filter' ), ' secondary', false, false, array( 'id' => 'post-query-submit' ) );227 submit_button( __( 'Filter' ), 'button button-secondary short', false, false, array( 'id' => 'post-query-submit' ) ); 228 228 } 229 229 230 230 if ( ( 'spam' == $comment_status || 'trash' == $comment_status ) && current_user_can( 'moderate_comments' ) ) { 231 231 wp_nonce_field( 'bulk-destroy', '_destroy_nonce' ); 232 232 $title = ( 'spam' == $comment_status ) ? esc_attr__( 'Empty Spam' ) : esc_attr__( 'Empty Trash' ); 233 submit_button( $title, 'button -secondary apply', 'delete_all', false );233 submit_button( $title, 'button button-secondary apply short', 'delete_all', false ); 234 234 } 235 235 do_action( 'manage_comments_nav', $comment_status ); 236 236 echo '</div>'; -
wp-admin/includes/template.php
555 555 </tr> 556 556 557 557 <tr><td colspan="2" class="submit"> 558 <?php submit_button( __( 'Add Custom Field' ), 'add:the-list:newmeta ', 'addmeta', false, array( 'id' => 'addmetasub' ) ); ?>558 <?php submit_button( __( 'Add Custom Field' ), 'add:the-list:newmeta button', 'addmeta', false, array( 'id' => 'addmetasub' ) ); ?> 559 559 <?php wp_nonce_field( 'add-meta', '_ajax_nonce-add-meta', false ); ?> 560 560 </td></tr> 561 561 </tbody> -
wp-admin/js/post.js
558 558 var i, c = 0, e = $('#editable-post-name'), revert_e = e.html(), real_slug = $('#post_name'), revert_slug = real_slug.val(), b = $('#edit-slug-buttons'), revert_b = b.html(), full = $('#editable-post-name-full').html(); 559 559 560 560 $('#view-post-btn').hide(); 561 b.html('<a href="#" class="save button ">'+postL10n.ok+'</a> <a class="cancel" href="#">'+postL10n.cancel+'</a>');561 b.html('<a href="#" class="save button small major">'+postL10n.ok+'</a> <a class="cancel" href="#">'+postL10n.cancel+'</a>'); 562 562 b.children('.save').click(function() { 563 563 var new_slug = e.children('input').val(); 564 564 if ( new_slug == $('#editable-post-name-full').text() ) { -
wp-admin/edit-form-advanced.php
294 294 $sample_permalink_html = $post_type_object->public ? get_sample_permalink_html($post->ID) : ''; 295 295 $shortlink = wp_get_shortlink($post->ID, 'post'); 296 296 if ( !empty($shortlink) ) 297 $sample_permalink_html .= '<input id="shortlink" type="hidden" value="' . esc_attr($shortlink) . '" /><a href="#" class="button " onclick="prompt('URL:', jQuery(\'#shortlink\').val()); return false;">' . __('Get Shortlink') . '</a>';297 $sample_permalink_html .= '<input id="shortlink" type="hidden" value="' . esc_attr($shortlink) . '" /><a href="#" class="button small" onclick="prompt('URL:', jQuery(\'#shortlink\').val()); return false;">' . __('Get Shortlink') . '</a>'; 298 298 299 299 if ( $post_type_object->public && ! ( 'pending' == $post->post_status && !current_user_can( $post_type_object->cap->publish_posts ) ) ) { ?> 300 300 <div id="edit-slug-box"> -
wp-admin/css/colors-fresh.css
368 368 color: #666; 369 369 } 370 370 371 a.button:active { 372 outline: none; 373 } 374 371 375 .button, 372 376 .button-secondary, 373 377 .submit input, 374 378 input[type=button], 375 379 input[type=submit] { 376 border-color: #bbb; 377 color: #464646; 380 background: #ececec; 381 background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#eee)); 382 background-image: -webkit-linear-gradient(top, #fff, #eee); 383 background-image: -moz-linear-gradient(top, #fff, #eee); 384 background-image: -o-linear-gradient(top, #fff, #eee); 385 background-image: linear-gradient(to bottom, #fff, #eee); 386 border-color: #ccc; 387 -webkit-box-shadow: inset 0 0 1px 1px rgba(255,255,255, 0.9); 388 box-shadow: inset 0 0 1px 1px rgba(255,255,255, 0.9); 389 color: #464646; 390 text-shadow: 1px 1px 0 #fff; 378 391 } 379 392 380 393 .button:hover, 381 394 .button-secondary:hover, 382 395 .submit input:hover, 383 396 input[type=button]:hover, 384 input[type=submit]:hover { 397 input[type=submit]:hover, 398 .button:focus, 399 .button-secondary:focus, 400 .submit input:focus, 401 input[type=button]:focus, 402 input[type=submit]:focus { 403 background: #ececec; 404 background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#eee)); 405 background-image: -webkit-linear-gradient(top, #fff, #eee); 406 background-image: -moz-linear-gradient(top, #fff, #eee); 407 background-image: -o-linear-gradient(top, #fff, #eee); 408 background-image: linear-gradient(to bottom, #fff, #eee); 409 border-color: #bbb; 410 -webkit-box-shadow: 0px 1px 2px rgba(0,0,0,.2); 411 box-shadow: 0px 1px 2px rgba(0,0,0,.2); 385 412 color: #000; 386 border-color: #666;387 413 } 388 414 389 .button,390 .submit input,391 .button-secondary {392 text-shadow: 0 1px 0 #fff;393 background: #f2f2f2;394 background-image: -webkit-gradient(linear, left bottom, left top, from(#ededed), to(#fff));395 background-image: -webkit-linear-gradient(bottom, #ededed, #fff);396 background-image: -moz-linear-gradient(bottom, #ededed, #fff);397 background-image: -o-linear-gradient(bottom, #ededed, #fff);398 background-image: linear-gradient(to top, #ededed, #fff);399 }400 401 415 .button:active, 416 .button-secondary:active, 402 417 .submit input:active, 403 .button-secondary:active { 418 input[type=button]:active, 419 input[type=submit]:active { 404 420 background: #eee; 405 background-image: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#fff)); 406 background-image: -webkit-linear-gradient(top, #ededed, #fff); 407 background-image: -moz-linear-gradient(top, #ededed, #fff); 408 background-image: -o-linear-gradient(top, #ededed, #fff); 409 background-image: linear-gradient(to bottom, #ededed, #fff); 421 background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#f9f9f9)); 422 background-image: -webkit-linear-gradient(top, #eee, #f9f9f9); 423 background-image: -moz-linear-gradient(top, #eee, #f9f9f9); 424 background-image: -o-linear-gradient(top, #eee, #f9f9f9); 425 background-image: linear-gradient(to bottom, #eee, #f9f9f9); 426 border-color: #999 #ddd #ddd #999; 427 color: #555; 428 -webkit-box-shadow: inset 1px 1px 0 rgba(50,50,50,0.1); 429 box-shadow: inset 1px 1px 0 rgba(50,50,50,0.1); 410 430 } 411 431 432 .button:focus, 433 .button-secondary:focus, 434 .submit input:focus, 435 input[type=button]:focus, 436 input[type=submit]:focus { 437 border-color: #aaa; 438 } 439 412 440 input.button-primary, 413 441 button.button-primary, 414 442 a.button-primary { 415 border-color: #298cba; 416 font-weight: bold; 443 background-color: #21759b; 444 background-image: -webkit-gradient(linear, left top, left bottom, from(#2a95c5), to(#21759b)); 445 background-image: -webkit-linear-gradient(top, #2a95c5, #21759b); 446 background-image: -moz-linear-gradient(top, #2a95c5, #21759b); 447 background-image: -o-linear-gradient(top, #2a95c5, #21759b); 448 background-image: linear-gradient(to bottom, #2a95c5, #21759b); 449 border-color: #21759b; 450 border-bottom-color: #1e6a8d; 451 -webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,0.5); 452 box-shadow: inset 0 1px 0 rgba(120,200,230,0.5); 453 color: #fff; 454 text-decoration: none; 455 text-shadow: -1px -1px 0 rgba(0,0,0,0.1); 456 } 457 458 input.button-primary:hover, 459 button.button-primary:hover, 460 a.button-primary:hover, 461 input.button-primary:focus, 462 button.button-primary:focus, 463 a.button-primary:focus { 464 background-color: #278ab7; 465 background-image: -webkit-gradient(linear, left top, left bottom, from(#2e9fd2), to(#21759b)); 466 background-image: -webkit-linear-gradient(top, #2e9fd2, #21759b); 467 background-image: -moz-linear-gradient(top, #2e9fd2, #21759b); 468 background-image: -o-linear-gradient(top, #2e9fd2, #21759b); 469 background-image: linear-gradient(to bottom, #2e9fd2, #21759b); 470 border-color: #1b607f; 471 -webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,0.6), 0px 1px 2px rgba(0,0,0,.4); 472 box-shadow: inset 0 1px 0 rgba(120,200,230,0.6), 0px 1px 2px rgba(0,0,0,.4); 417 473 color: #fff; 418 text-shadow: 0 -1px 0 rgba(0,0,0,0.3); 419 background: #21759b; 420 background-image: -webkit-gradient(linear, left bottom, left top, from(#227199), to(#298cba)); 421 background-image: -webkit-linear-gradient(bottom, #227199, #298cba); 422 background-image: -moz-linear-gradient(bottom, #227199, #298cba); 423 background-image: -o-linear-gradient(bottom, #227199, #298cba); 424 background-image: linear-gradient(to top, #227199, #298cba); 474 text-shadow: -1px -1px 0 rgba(0,0,0,0.3); 425 475 } 426 476 427 477 input.button-primary:active, 428 478 button.button-primary:active, 429 479 a.button-primary:active { 430 color: #eaf2fa; 431 background: #298cba; 432 background-image: -webkit-gradient(linear, left top, left bottom, from(#227199), to(#298cba)); 433 background-image: -webkit-linear-gradient(top, #227199, #298cba); 434 background-image: -moz-linear-gradient(top, #227199, #298cba); 435 background-image: -o-linear-gradient(top, #227199, #298cba); 436 background-image: linear-gradient(to bottom, #227199, #298cba); 480 background: #1b607f; 481 background-image: -webkit-gradient(linear, left top, left bottom, from(#21759b), to(#278ab7)); 482 background-image: -webkit-linear-gradient(top, #21759b, #278ab7); 483 background-image: -moz-linear-gradient(top, #21759b, #278ab7); 484 background-image: -o-linear-gradient(top, #21759b, #278ab7); 485 background-image: linear-gradient(to bottom, #21759b, #278ab7); 486 border-color: #124560 #2382ae #2382ae #124560; 487 color: rgba(255,255,255,0.95); 488 -webkit-box-shadow: inset 1px 1px 0 rgba(0,0,0,0.1); 489 box-shadow: inset 1px 1px 0 rgba(0,0,0,0.1); 437 490 } 438 491 439 input.button-primary:hover, 440 button.button-primary:hover, 441 a.button-primary:hover, 442 a.button-primary:focus, 443 a.button-primary:active { 444 border-color: #13455b; 445 color: #eaf2fa; 492 input.button-primary:focus, 493 button.button-primary:focus, 494 a.button-primary:focus { 495 border-color: #124560; 446 496 } 447 497 448 498 .button-disabled, … … 458 508 .button-primary-disabled, 459 509 .button-primary[disabled], 460 510 .button-primary:disabled { 461 color: #9 fd0d5!important;511 color: #94cde7 !important; 462 512 background: #298cba !important; 463 513 } 464 514 -
wp-admin/css/wp-admin.css
780 780 .button-secondary, 781 781 input.button-secondary, 782 782 .button-highlighted, 783 input.button-highlighted ,784 #postcustomstuff .submit input { 783 input.button-highlighted { 784 display: inline-block; 785 785 text-decoration: none; 786 font-size: 12px !important; 787 line-height: 13px; 788 padding: 3px 8px; 786 font-size: 12px; 787 line-height: 15px; 788 margin: 0; 789 padding: 0.5em .8em; 789 790 cursor: pointer; 790 791 border-width: 1px; 791 792 border-style: solid; 792 -webkit-border-radius: 11px; 793 border-radius: 11px; 793 -webkit-border-radius: 3px; 794 border-radius: 3px; 795 -webkit-box-sizing: content-box; 794 796 -moz-box-sizing: content-box; 795 -webkit-box-sizing: content-box;796 797 box-sizing: content-box; 798 white-space: nowrap; 797 799 } 798 800 801 input.button-primary, 802 button.button-primary, 803 a.button-primary, 804 .button-highlighted, 805 input.button-highlighted, 806 button.button-highlighted { 807 font-weight: bold; 808 letter-spacing: .01em; 809 } 810 811 .button.short { 812 padding: 3px .8em; 813 } 814 815 .button.big { 816 font-size: 14px; 817 } 818 819 .button.small { 820 padding: .2em .8em; 821 font-size: 11px; 822 } 823 799 824 #minor-publishing-actions input, 800 825 #major-publishing-actions input, 801 826 #minor-publishing-actions .preview { 802 min-width: 80px;803 827 text-align: center; 804 828 } 805 829 … … 1014 1038 list-style: square; 1015 1039 } 1016 1040 1017 a.button,1018 a.button-primary,1019 a.button-secondary {1020 line-height: 15px;1021 padding: 3px 10px;1022 white-space: nowrap;1023 -webkit-border-radius: 10px;1024 }1025 1026 1041 .approve, 1027 1042 .unapproved .unapprove { 1028 1043 display: none; … … 2803 2818 2804 2819 #titlediv { 2805 2820 position: relative; 2806 margin-bottom: 20px;2821 margin-bottom: 10px; 2807 2822 } 2808 2823 #titlediv label { cursor: text; } 2809 2824 … … 2856 2871 } 2857 2872 2858 2873 #edit-slug-box { 2859 height: 1em;2860 2874 margin-top: 8px; 2861 2875 padding: 0 10px; 2862 2876 } 2863 2877 2878 #edit-slug-box .cancel { 2879 margin-right: 10px; 2880 font-size: 11px; 2881 } 2882 2864 2883 #editable-post-name-full { 2865 2884 display: none; 2866 2885 } … … 3158 3177 #postcustom #postcustomstuff .submit { 3159 3178 border: 0 none; 3160 3179 float: none; 3161 padding: 5px 8px;3180 padding: 0; 3162 3181 } 3163 3182 3164 3183 #side-sortables #postcustom #postcustomstuff .submit { … … 3194 3213 width: 38%; 3195 3214 } 3196 3215 3197 #postcustomstuff #newmeta .submit {3198 padding: 0 8px;3199 }3200 3201 3216 #postcustomstuff .submit input, 3202 3217 #postcustomstuff table #addmetasub { 3203 3218 width: auto; … … 4214 4229 4215 4230 #replysubmit { 4216 4231 margin: 0; 4217 padding: 0 7px 3px;4232 padding: 0 5px 3px; 4218 4233 text-align: center; 4219 4234 } 4220 4235 … … 4643 4658 .plugins .name, 4644 4659 #pass-strength-result.strong, 4645 4660 #pass-strength-result.short, 4646 .button-highlighted,4647 input.button-highlighted,4648 4661 #ed_reply_toolbar #ed_reply_strong, 4649 4662 .item-controls .item-order a, 4650 4663 .feature-filter .feature-name { … … 5602 5615 padding: 0; 5603 5616 } 5604 5617 5605 #titlediv,5606 5618 #poststuff .postarea { 5607 5619 margin-bottom: 20px; 5608 5620 } … … 6055 6067 } 6056 6068 6057 6069 #dashboard-widgets #dashboard_quick_press form p.submit #save-post { 6058 margin: 0 1em 0 10px;6070 margin: 0 1em 0 5px; 6059 6071 } 6060 6072 6061 6073 #dashboard-widgets #dashboard_quick_press form p.submit #publish { … … 6249 6261 6250 6262 .login .button-primary { 6251 6263 font-size: 13px !important; 6252 line-height: 16px; 6253 padding: 3px 10px; 6264 padding: .4em .8em; 6254 6265 float: right; 6255 6266 } 6256 6267 -
wp-admin/css/colors-classic.css
377 377 color: #666; 378 378 } 379 379 380 a.button:active { 381 outline: none; 382 } 383 380 384 .button, 381 385 .button-secondary, 382 386 .submit input, 383 387 input[type=button], 384 388 input[type=submit] { 385 border-color: #bbb; 386 color: #464646; 389 background: #ececec; 390 background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#eee)); 391 background-image: -webkit-linear-gradient(top, #fff, #eee); 392 background-image: -moz-linear-gradient(top, #fff, #eee); 393 background-image: -o-linear-gradient(top, #fff, #eee); 394 background-image: linear-gradient(to bottom, #fff, #eee); 395 border-color: #ccc; 396 -webkit-box-shadow: inset 0 0 1px 1px rgba(255,255,255, 0.9); 397 box-shadow: inset 0 0 1px 1px rgba(255,255,255, 0.9); 398 color: #464646; 399 text-shadow: 1px 1px 0 #fff; 387 400 } 388 401 389 402 .button:hover, 390 403 .button-secondary:hover, 391 404 .submit input:hover, 392 405 input[type=button]:hover, 393 input[type=submit]:hover { 406 input[type=submit]:hover, 407 .button:focus, 408 .button-secondary:focus, 409 .submit input:focus, 410 input[type=button]:focus, 411 input[type=submit]:focus { 412 background: #ececec; 413 background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#eee)); 414 background-image: -webkit-linear-gradient(top, #fff, #eee); 415 background-image: -moz-linear-gradient(top, #fff, #eee); 416 background-image: -o-linear-gradient(top, #fff, #eee); 417 background-image: linear-gradient(to bottom, #fff, #eee); 418 border-color: #bbb; 419 -webkit-box-shadow: 0px 1px 2px rgba(0,0,0,.2); 420 box-shadow: 0px 1px 2px rgba(0,0,0,.2); 394 421 color: #000; 395 border-color: #666;396 422 } 397 423 398 .button,399 .submit input,400 .button-secondary {401 text-shadow: 0 1px 0 #fff;402 background: #f2f2f2;403 background-image: -webkit-gradient(linear, left bottom, left top, from(#ededed), to(#fff));404 background-image: -webkit-linear-gradient(bottom, #ededed, #fff);405 background-image: -moz-linear-gradient(bottom, #ededed, #fff);406 background-image: -o-linear-gradient(bottom, #ededed, #fff);407 background-image: linear-gradient(to top, #ededed, #fff);408 }409 410 424 .button:active, 425 .button-secondary:active, 411 426 .submit input:active, 412 .button-secondary:active { 427 input[type=button]:active, 428 input[type=submit]:active { 413 429 background: #eee; 414 background-image: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#fff)); 415 background-image: -webkit-linear-gradient(top, #ededed, #fff); 416 background-image: -moz-linear-gradient(top, #ededed, #fff); 417 background-image: -o-linear-gradient(top, #ededed, #fff); 418 background-image: linear-gradient(to bottom, #ededed, #fff); 430 background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#f9f9f9)); 431 background-image: -webkit-linear-gradient(top, #eee, #f9f9f9); 432 background-image: -moz-linear-gradient(top, #eee, #f9f9f9); 433 background-image: -o-linear-gradient(top, #eee, #f9f9f9); 434 background-image: linear-gradient(to bottom, #eee, #f9f9f9); 435 border-color: #999 #ddd #ddd #999; 436 color: #555; 437 -webkit-box-shadow: inset 1px 1px 0 rgba(50,50,50,0.1); 438 box-shadow: inset 1px 1px 0 rgba(50,50,50,0.1); 419 439 } 420 440 441 .button:focus, 442 .button-secondary:focus, 443 .submit input:focus, 444 input[type=button]:focus, 445 input[type=submit]:focus { 446 border-color: #aaa; 447 } 448 421 449 input.button-primary, 422 450 button.button-primary, 423 451 a.button-primary { 424 border-color: #298cba; 425 font-weight: bold; 452 background-color: #21759b; 453 background-image: -webkit-gradient(linear, left top, left bottom, from(#2a95c5), to(#21759b)); 454 background-image: -webkit-linear-gradient(top, #2a95c5, #21759b); 455 background-image: -moz-linear-gradient(top, #2a95c5, #21759b); 456 background-image: -o-linear-gradient(top, #2a95c5, #21759b); 457 background-image: linear-gradient(to bottom, #2a95c5, #21759b); 458 border-color: #21759b; 459 border-bottom-color: #1e6a8d; 460 -webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,0.5); 461 box-shadow: inset 0 1px 0 rgba(120,200,230,0.5); 462 color: #fff; 463 text-decoration: none; 464 text-shadow: -1px -1px 0 rgba(0,0,0,0.1); 465 } 466 467 input.button-primary:hover, 468 button.button-primary:hover, 469 a.button-primary:hover, 470 input.button-primary:focus, 471 button.button-primary:focus, 472 a.button-primary:focus { 473 background-color: #278ab7; 474 background-image: -webkit-gradient(linear, left top, left bottom, from(#2e9fd2), to(#21759b)); 475 background-image: -webkit-linear-gradient(top, #2e9fd2, #21759b); 476 background-image: -moz-linear-gradient(top, #2e9fd2, #21759b); 477 background-image: -o-linear-gradient(top, #2e9fd2, #21759b); 478 background-image: linear-gradient(to bottom, #2e9fd2, #21759b); 479 border-color: #1b607f; 480 -webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,0.6), 0px 1px 2px rgba(0,0,0,.4); 481 box-shadow: inset 0 1px 0 rgba(120,200,230,0.6), 0px 1px 2px rgba(0,0,0,.4); 426 482 color: #fff; 427 text-shadow: 0 -1px 0 rgba(0,0,0,0.3); 428 background: #21759b; 429 background-image: -webkit-gradient(linear, left bottom, left top, from(#227199), to(#298cba)); 430 background-image: -webkit-linear-gradient(bottom, #227199, #298cba); 431 background-image: -moz-linear-gradient(bottom, #227199, #298cba); 432 background-image: -o-linear-gradient(bottom, #227199, #298cba); 433 background-image: linear-gradient(to top, #227199, #298cba); 483 text-shadow: -1px -1px 0 rgba(0,0,0,0.3); 434 484 } 435 485 436 486 input.button-primary:active, 437 487 button.button-primary:active, 438 488 a.button-primary:active { 439 color: #eaf2fa; 440 background: #298cba; 441 background-image: -webkit-gradient(linear, left top, left bottom, from(#227199), to(#298cba)); 442 background-image: -webkit-linear-gradient(top, #227199, #298cba); 443 background-image: -moz-linear-gradient(top, #227199, #298cba); 444 background-image: -o-linear-gradient(top, #227199, #298cba); 445 background-image: linear-gradient(to bottom, #227199, #298cba); 489 background: #1b607f; 490 background-image: -webkit-gradient(linear, left top, left bottom, from(#21759b), to(#278ab7)); 491 background-image: -webkit-linear-gradient(top, #21759b, #278ab7); 492 background-image: -moz-linear-gradient(top, #21759b, #278ab7); 493 background-image: -o-linear-gradient(top, #21759b, #278ab7); 494 background-image: linear-gradient(to bottom, #21759b, #278ab7); 495 border-color: #124560 #2382ae #2382ae #124560; 496 color: rgba(255,255,255,0.95); 497 -webkit-box-shadow: inset 1px 1px 0 rgba(0,0,0,0.1); 498 box-shadow: inset 1px 1px 0 rgba(0,0,0,0.1); 446 499 } 447 500 448 input.button-primary:hover, 449 button.button-primary:hover, 450 a.button-primary:hover, 451 a.button-primary:focus, 452 a.button-primary:active { 453 border-color: #13455b; 454 color: #eaf2fa; 501 input.button-primary:focus, 502 button.button-primary:focus, 503 a.button-primary:focus { 504 border-color: #124560; 455 505 } 456 506 457 507 .button-disabled, … … 467 517 .button-primary-disabled, 468 518 .button-primary[disabled], 469 519 .button-primary:disabled { 470 color: #9 fd0d5!important;520 color: #94cde7 !important; 471 521 background: #298cba !important; 472 522 } 473 523