Ticket #5973: remove_niceblue_class.diff
| File remove_niceblue_class.diff, 15.1 kB (added by filosofo, 4 months ago) |
|---|
-
wp-admin/users.php
old new 401 401 ?> 402 402 <form action="#add-new-user" method="post" name="adduser" id="adduser" class="add:user-list:"> 403 403 <?php wp_nonce_field('add-user') ?> 404 <table class=" niceblue">404 <table class="options-area"> 405 405 <tr class="form-field form-required"> 406 406 <th scope="row"><?php _e('Username (required)') ?><input name="action" type="hidden" id="action" value="adduser" /></th> 407 407 <td ><input name="user_login" type="text" id="user_login" value="<?php echo $new_user_login; ?>" /></td> -
wp-admin/options-privacy.php
old new 11 11 <h2><?php _e('Privacy Settings') ?></h2> 12 12 <form method="post" action="options.php"> 13 13 <?php wp_nonce_field('update-options') ?> 14 <table class=" niceblue">14 <table class="options-area"> 15 15 <tr valign="top"> 16 16 <th scope="row"><?php _e('Blog Visibility') ?> </th> 17 17 <td> -
wp-admin/wp-admin.css
old new 916 916 917 917 /* Tables used on comment.php and option/setting pages */ 918 918 919 . niceblue{919 .options-area { 920 920 border-collapse: collapse; 921 921 margin-top: 1em; 922 922 width: 100%; 923 923 } 924 924 925 . nicebluetd {925 .options-area td { 926 926 margin-bottom: 9px; 927 927 padding: 10px; 928 928 border-bottom: 8px solid #fff; 929 929 line-height: 20px; 930 930 } 931 931 932 . niceblueth {932 .options-area th { 933 933 text-align: left; 934 934 padding: 10px; 935 935 border-bottom: 8px solid #fff; 936 936 } 937 937 938 . nicebluetr {938 .options-area tr { 939 939 background: #eaf3fa; 940 940 } 941 941 -
wp-admin/update.php
old new 31 31 <div class="wrap"> 32 32 <h2><?php _e('FTP Connection Information') ?></h2> 33 33 <p><?php _e('To perform the requested update, FTP connection information is required.') ?></p> 34 <table class=" niceblue">34 <table class="options-area"> 35 35 <tr valign="top"> 36 36 <th scope="row"><?php _e('Hostname:') ?></th> 37 37 <td><input name="hostname" type="text" id="hostname" value="<?php echo attribute_escape($hostname) ?>" size="40" /></td> -
wp-admin/comment.php
old new 93 93 <input type='hidden' name='noredir' value='1' /> 94 94 </form> 95 95 96 <table class=" niceblue" cellpadding="5">96 <table class="options-area" cellpadding="5"> 97 97 <tr class="alt"> 98 98 <th scope="row"><?php _e('Author'); ?></th> 99 99 <td><?php echo $comment->comment_author; ?></td> -
wp-admin/options-general.php
old new 11 11 <h2><?php _e('General Settings') ?></h2> 12 12 <form method="post" action="options.php"> 13 13 <?php wp_nonce_field('update-options') ?> 14 <table class=" niceblue">14 <table class="options-area"> 15 15 <tr valign="top"> 16 16 <th scope="row"><?php _e('Blog Title') ?></th> 17 17 <td><input name="blogname" type="text" id="blogname" value="<?php form_option('blogname'); ?>" size="40" /></td> -
wp-admin/import/dotclear.php
old new 640 640 641 641 function db_form() 642 642 { 643 echo '<table class=" niceblue">';643 echo '<table class="options-area">'; 644 644 printf('<tr><th><label for="dbuser">%s</label></th><td><input type="text" name="dbuser" id="dbuser" /></td></tr>', __('DotClear Database User:')); 645 645 printf('<tr><th><label for="dbpass">%s</label></th><td><input type="password" name="dbpass" id="dbpass" /></td></tr>', __('DotClear Database Password:')); 646 646 printf('<tr><th><label for="dbname">%s</label></th><td><input type="text" name="dbname" id="dbname" /></td></tr>', __('DotClear Database Name:')); -
wp-admin/import/textpattern.php
old new 575 575 576 576 function db_form() 577 577 { 578 echo '<table class=" niceblue">';578 echo '<table class="options-area">'; 579 579 printf('<tr><th scope="row"><label for="dbuser">%s</label></th><td><input type="text" name="dbuser" id="dbuser" /></td></tr>', __('Textpattern Database User:')); 580 580 printf('<tr><th scope="row"><label for="dbpass">%s</label></th><td><input type="password" name="dbpass" id="dbpass" /></td></tr>', __('Textpattern Database Password:')); 581 581 printf('<tr><th scope="row"><label for="dbname">%s</label></th><td><input type="text" id="dbname" name="dbname" /></td></tr>', __('Textpattern Database Name:')); -
wp-admin/import/greymatter.php
old new 36 36 <input type="hidden" name="step" value="1" /> 37 37 <?php wp_nonce_field('import-greymatter'); ?> 38 38 <h3><?php _e('Second step: GreyMatter details:') ?></h3> 39 <table class=" niceblue">39 <table class="options-area"> 40 40 <tr> 41 41 <td><?php _e('Path to GM files:') ?></td> 42 42 <td><input type="text" style="width:300px" name="gmpath" value="/home/my/site/cgi-bin/greymatter/" /></td> -
wp-admin/options-misc.php
old new 13 13 <form method="post" action="options.php"> 14 14 <?php wp_nonce_field('update-options') ?> 15 15 <h3><?php _e('Uploading'); ?></h3> 16 <table class=" niceblue">16 <table class="options-area"> 17 17 <tr valign="top"> 18 18 <th scope="row"><?php _e('Store uploads in this folder'); ?></th> 19 19 <td><input name="upload_path" type="text" id="upload_path" class="code" value="<?php echo attribute_escape(str_replace(ABSPATH, '', get_option('upload_path'))); ?>" size="40" /> … … 37 37 </th> 38 38 </tr> 39 39 </table> 40 <table class=" niceblue">40 <table class="options-area"> 41 41 <tr> 42 42 <th colspan="2"><input name="use_linksupdate" type="checkbox" id="use_linksupdate" value="1" <?php checked('1', get_option('use_linksupdate')); ?> /> 43 43 <label for="use_linksupdate"><?php _e('Track Links’ Update Times') ?></label> -
wp-admin/edit-link-category-form.php
old new 23 23 <input type="hidden" name="action" value="<?php echo $action ?>" /> 24 24 <input type="hidden" name="cat_ID" value="<?php echo $category->term_id ?>" /> 25 25 <?php wp_nonce_field($nonce_action); ?> 26 <table class=" niceblue">26 <table class="options-area"> 27 27 <tr class="form-field form-required"> 28 28 <th scope="row" valign="top"><label for="name"><?php _e('Category name') ?></label></th> 29 29 <td><input name="name" id="name" type="text" value="<?php echo $category->name; ?>" size="40" /></td> -
wp-admin/edit-tag-form.php
old new 23 23 <input type="hidden" name="action" value="<?php echo $action ?>" /> 24 24 <input type="hidden" name="tag_ID" value="<?php echo $tag->term_id ?>" /> 25 25 <?php wp_nonce_field($nonce_action); ?> 26 <table class=" niceblue">26 <table class="options-area"> 27 27 <tr class="form-field form-required"> 28 28 <th scope="row" valign="top"><label for="name"><?php _e('Tag name') ?></label></th> 29 29 <td><input name="name" id="name" type="text" value="<?php echo attribute_escape($tag->name); ?>" size="40" /></td> -
wp-admin/options-discussion.php
old new 11 11 <h2><?php _e('Discussion Settings') ?></h2> 12 12 <form method="post" action="options.php"> 13 13 <?php wp_nonce_field('update-options') ?> 14 <table class=" niceblue">14 <table class="options-area"> 15 15 <tr valign="top"> 16 16 <th scope="row"><?php _e('Default article settings') ?></th> 17 17 <td> -
wp-admin/options.php
old new 48 48 <form name="form" action="options.php" method="post" id="all-options"> 49 49 <?php wp_nonce_field('update-options') ?> 50 50 <input type="hidden" name="action" value="update" /> 51 <table class=" niceblue">51 <table class="options-area"> 52 52 <?php 53 53 $options = $wpdb->get_results("SELECT * FROM $wpdb->options ORDER BY option_name"); 54 54 -
wp-admin/edit-category-form.php
old new 23 23 <input type="hidden" name="action" value="<?php echo $action ?>" /> 24 24 <input type="hidden" name="cat_ID" value="<?php echo $category->term_id ?>" /> 25 25 <?php wp_nonce_field($nonce_action); ?> 26 <table class=" niceblue">26 <table class="options-area"> 27 27 <tr class="form-field form-required"> 28 28 <th scope="row" valign="top"><label for="cat_name"><?php _e('Category Name') ?></label></th> 29 29 <td><input name="cat_name" id="cat_name" type="text" value="<?php echo attribute_escape($category->name); ?>" size="40" /></td> -
wp-admin/options-reading.php
old new 11 11 <h2><?php _e('Reading Settings') ?></h2> 12 12 <form name="form1" method="post" action="options.php"> 13 13 <?php wp_nonce_field('update-options') ?> 14 <table class=" niceblue">14 <table class="options-area"> 15 15 <?php if ( get_pages() ): ?> 16 16 <tr valign="top"> 17 17 <th scope="row"><?php _e('Front page displays')?></th> -
wp-admin/css/install.css
old new 65 65 color: #d54e21; 66 66 } 67 67 68 . niceblue{68 .options-area { 69 69 border-collapse: collapse; 70 70 margin-top: 1em; 71 71 width: 100%; 72 72 } 73 73 74 . nicebluetd {74 .options-area td { 75 75 margin-bottom: 9px; 76 76 padding: 10px; 77 77 border-bottom: 8px solid #fff; 78 78 } 79 79 80 . niceblueth {80 .options-area th { 81 81 font-size: 12px; 82 82 text-align: left; 83 83 padding: 12px 10px 10px 10px; … … 86 86 vertical-align: top; 87 87 } 88 88 89 . nicebluetr {89 .options-area tr { 90 90 background: #eaf3fa; 91 91 } 92 92 93 . nicebluecode {93 .options-area code { 94 94 line-height: 18px; 95 95 font-size: 18px; 96 96 } 97 97 98 . nicebluep {98 .options-area p { 99 99 margin: 4px 0 0 0; 100 100 font-size: 11px; 101 101 } -
wp-admin/setup-config.php
old new 66 66 ?> 67 67 <form method="post" action="setup-config.php?step=2"> 68 68 <p>Below you should enter your database connection details. If you're not sure about these, contact your host. </p> 69 <table class=" niceblue">69 <table class="options-area"> 70 70 <tr> 71 71 <th scope="row">Database Name</th> 72 72 <td><input name="dbname" type="text" size="25" value="wordpress" /></td> -
wp-admin/install.php
old new 45 45 <p><?php _e("Please provide the following information. Don't worry, you can always change these settings later."); ?></p> 46 46 47 47 <form id="setup" method="post" action="install.php?step=2"> 48 <table class=" niceblue">48 <table class="options-area"> 49 49 <tr> 50 50 <th scope="row"><?php _e('Blog Title'); ?></th> 51 51 <td><input name="weblog_title" type="text" id="weblog_title" size="25" /></td> … … 91 91 92 92 <p><?php printf(__('WordPress has been installed. Were you expecting more steps? Sorry to disappoint.'), ''); ?></p> 93 93 94 <table class=" niceblue">94 <table class="options-area"> 95 95 <tr> 96 96 <th><?php _e('Username'); ?></th> 97 97 <td><code>admin</code></td> -
wp-admin/options-permalink.php
old new 127 127 ); 128 128 ?> 129 129 <h3><?php _e('Common settings'); ?></h3> 130 <table class=" niceblue">130 <table class="options-area"> 131 131 <tr> 132 132 <th><label><input name="selection" type="radio" value="" class="tog" <?php checked('', $permalink_structure); ?> /> <?php _e('Default'); ?></label></th> 133 133 <td><code><?php echo get_option('home'); ?>/?p=123</code></td> … … 163 163 <p><?php _e('If you like, you may enter custom bases for your category and tag <abbr title="Universal Resource Locator">URL</abbr>s here. For example, using <code>/topics/</code> as your category base would make your category links like <code>http://example.org/index.php/topics/uncategorized/</code>. If you leave these blank the defaults will be used.') ?></p> 164 164 <?php endif; ?> 165 165 166 <table class=" niceblue">166 <table class="options-area"> 167 167 <tr> 168 168 <th><?php _e('Category base'); ?></th> 169 169 <td><input name="category_base" id="category_base" type="text" class="code" value="<?php echo attribute_escape($category_base); ?>" size="30" /></td> -
wp-admin/options-writing.php
old new 12 12 <form method="post" action="options.php"> 13 13 <?php wp_nonce_field('update-options') ?> 14 14 15 <table class=" niceblue">15 <table class="options-area"> 16 16 <tr valign="top"> 17 17 <th scope="row"> <?php _e('Size of the post box') ?></th> 18 18 <td><input name="default_post_edit_rows" type="text" id="default_post_edit_rows" value="<?php form_option('default_post_edit_rows'); ?>" size="2" style="width: 1.5em; " /> … … 60 60 <h3><?php _e('Image sizes') ?></h3> 61 61 <p><?php _e('The sizes listed below determine the maximum dimensions to use when inserting an image into the body of a post.'); ?></p> 62 62 63 <table class=" niceblue">63 <table class="options-area"> 64 64 <tr valign="top"> 65 65 <th scope="row"><?php _e('Thumbnail size') ?></th> 66 66 <td> … … 84 84 <h3><?php _e('Post via e-mail') ?></h3> 85 85 <p><?php printf(__('To post to WordPress by e-mail you must set up a secret e-mail account with POP3 access. Any mail received at this address will be posted, so it’s a good idea to keep this address very secret. Here are three random strings you could use: <code>%s</code>, <code>%s</code>, <code>%s</code>.'), wp_generate_password(), wp_generate_password(), wp_generate_password()) ?></p> 86 86 87 <table class=" niceblue">87 <table class="options-area"> 88 88 <tr valign="top"> 89 89 <th scope="row"><?php _e('Mail Server') ?></th> 90 90 <td><input name="mailserver_url" type="text" id="mailserver_url" value="<?php form_option('mailserver_url'); ?>" size="40" />
