Ticket #21598: 21598.13b.diff
File 21598.13b.diff, 6.9 KB (added by , 12 years ago) |
---|
-
wp-admin/includes/plugin-install.php
148 148 <?php wp_nonce_field( 'plugin-upload') ?> 149 149 <label class="screen-reader-text" for="pluginzip"><?php _e('Plugin zip file'); ?></label> 150 150 <input type="file" id="pluginzip" name="pluginzip" /> 151 <input type="submit" class="button " value="<?php esc_attr_e('Install Now') ?>" />151 <input type="submit" class="button button-small" value="<?php esc_attr_e('Install Now') ?>" /> 152 152 </form> 153 153 <?php 154 154 } -
wp-admin/includes/theme-install.php
139 139 <form method="post" enctype="multipart/form-data" action="<?php echo self_admin_url('update.php?action=upload-theme') ?>"> 140 140 <?php wp_nonce_field( 'theme-upload') ?> 141 141 <input type="file" name="themezip" /> 142 <?php submit_button( __( 'Install Now' ), ' button', 'install-theme-submit', false ); ?>142 <?php submit_button( __( 'Install Now' ), 'small', 'install-theme-submit', false ); ?> 143 143 </form> 144 144 <?php 145 145 } -
wp-admin/css/ie.css
560 560 * html #adminmenu div.wp-menu-image { 561 561 height: 29px; 562 562 } 563 564 .submit input, 565 input.button, 566 input.button-primary, 567 input.button-secondary { 568 height: 24px; 569 line-height: 12px; 570 margin: 0 !important; 571 } 572 573 .button-primary, 574 .button, 575 .button-secondary, { 576 height: 18px; 577 line-height: 12px; 578 } 579 580 .search-box input[name="s"], 581 #search-plugins input[name="s"], 582 .tagsdiv .newtag, 583 #search-themes input[name="s"] { 584 height: 16px; 585 } 586 No newline at end of file -
wp-admin/css/colors-fresh.css
385 385 background-image: -o-linear-gradient(top, #fff, #eee); 386 386 background-image: linear-gradient(to bottom, #fff, #eee); 387 387 border-color: #ccc; 388 -webkit-box-shadow: inset 0 0 1px 2px rgba(255,255,255, 0.9);389 box-shadow: inset 0 0 1px 2px rgba(255,255,255, 0.9);388 -webkit-box-shadow: inset 0 0 1px 1px rgba(255,255,255, 0.9); 389 box-shadow: inset 0 0 1px 1px rgba(255,255,255, 0.9); 390 390 color: #464646; 391 391 text-shadow: 1px 1px 0 #fff; 392 392 } … … 414 414 background-image: -o-linear-gradient(top, #fff, #f3f3f3); 415 415 background-image: linear-gradient(to bottom, #fff, #f3f3f3); 416 416 border-color: #bbb; 417 -webkit-box-shadow: inset 0 0 1px 2px #fff, 0px 1px 1px rgba(0,0,0,.1);418 box-shadow: inset 0 0 1px 2px #fff, 0px 1px 1px rgba(0,0,0,.1);417 -webkit-box-shadow: inset 0 0 1px 1px #fff, 0px 1px 1px rgba(0,0,0,.1); 418 box-shadow: inset 0 0 1px 1px #fff, 0px 1px 1px rgba(0,0,0,.1); 419 419 color: #000; 420 420 } 421 421 … … 522 522 .button:disabled, 523 523 .button-secondary[disabled], 524 524 .button-secondary:disabled, 525 a.button.disabled { 525 a.button.disabled, 526 .button-disabled:hover, 527 .button[disabled]:hover, 528 .button-secondary[disabled]:hover, 529 .button-secondary:disabled:hover, 530 a.button.disabled:hover, 531 .button-disabled:active, 532 .button[disabled]:active, 533 .button-secondary[disabled]:active, 534 .button-secondary:disabled:active, 535 a.button.disabled:active { 526 536 color: #aaa !important; 527 border-color: #ddd !important; 537 background: #f3f3f3; 538 border-color: #ddd; 528 539 -webkit-box-shadow: none !important; 529 540 box-shadow: none !important; 541 cursor: default; 530 542 } 531 543 532 544 .button-primary-disabled, 533 545 .button-primary[disabled], 534 .button-primary:disabled { 546 .button-primary:disabled, 547 .button-primary-disabled:hover, 548 .button-primary[disabled]:hover, 549 .button-primary-disabled:active, 550 .button-primary[disabled]:active { 535 551 color: #94cde7 !important; 552 border: 1px solid #2581ab; 536 553 background: #298cba !important; 537 554 -webkit-box-shadow: none !important; 538 555 box-shadow: none !important; 539 } 540 541 .button-primary-disabled:hover, 542 .button-primary[disabled]:hover { 556 cursor: default; 543 557 text-shadow: none; 544 558 } 545 559 -
wp-admin/css/wp-admin.css
896 896 margin: 0; 897 897 } 898 898 899 .search-box input[name="s"], #search-plugins input[name="s"], .tagsdiv .newtag { 899 .search-box input[name="s"], 900 #search-plugins input[name="s"], 901 .tagsdiv .newtag, 902 #search-themes input[name="s"] { 900 903 float: left; 901 904 height: 2em; 902 905 margin: 0 4px 0 0; -
wp-admin/css/colors-classic.css
394 394 background-image: -o-linear-gradient(top, #fff, #eee); 395 395 background-image: linear-gradient(to bottom, #fff, #eee); 396 396 border-color: #ccc; 397 -webkit-box-shadow: inset 0 0 1px 2px rgba(255,255,255, 0.9);398 box-shadow: inset 0 0 1px 2px rgba(255,255,255, 0.9);397 -webkit-box-shadow: inset 0 0 1px 1px rgba(255,255,255, 0.9); 398 box-shadow: inset 0 0 1px 1px rgba(255,255,255, 0.9); 399 399 color: #464646; 400 400 text-shadow: 1px 1px 0 #fff; 401 401 } … … 423 423 background-image: -o-linear-gradient(top, #fff, #f3f3f3); 424 424 background-image: linear-gradient(to bottom, #fff, #f3f3f3); 425 425 border-color: #bbb; 426 -webkit-box-shadow: inset 0 0 1px 2px #fff, 0px 1px 1px rgba(0,0,0,.1);427 box-shadow: inset 0 0 1px 2px #fff, 0px 1px 1px rgba(0,0,0,.1);426 -webkit-box-shadow: inset 0 0 1px 1px #fff, 0px 1px 1px rgba(0,0,0,.1); 427 box-shadow: inset 0 0 1px 1px #fff, 0px 1px 1px rgba(0,0,0,.1); 428 428 color: #000; 429 429 } 430 430 … … 531 531 .button:disabled, 532 532 .button-secondary[disabled], 533 533 .button-secondary:disabled, 534 a.button.disabled { 534 a.button.disabled, 535 .button-disabled:hover, 536 .button[disabled]:hover, 537 .button-secondary[disabled]:hover, 538 .button-secondary:disabled:hover, 539 a.button.disabled:hover, 540 .button-disabled:active, 541 .button[disabled]:active, 542 .button-secondary[disabled]:active, 543 .button-secondary:disabled:active, 544 a.button.disabled:active { 535 545 color: #aaa !important; 536 border-color: #ddd !important; 546 background: #f3f3f3; 547 border-color: #ddd; 537 548 -webkit-box-shadow: none !important; 538 549 box-shadow: none !important; 550 cursor: default; 539 551 } 540 552 541 553 .button-primary-disabled, 542 554 .button-primary[disabled], 543 .button-primary:disabled { 555 .button-primary:disabled, 556 .button-primary-disabled:hover, 557 .button-primary[disabled]:hover, 558 .button-primary-disabled:active, 559 .button-primary[disabled]:active { 544 560 color: #94cde7 !important; 561 border: 1px solid #2581ab; 545 562 background: #298cba !important; 546 563 -webkit-box-shadow: none !important; 547 564 box-shadow: none !important; 548 } 549 550 .button-primary-disabled:hover, 551 .button-primary[disabled]:hover { 565 cursor: default; 552 566 text-shadow: none; 553 567 } 554 568