diff --git wp-admin/css/wp-admin.dev.css wp-admin/css/wp-admin.dev.css
index 0a70bd5..c07d355 100644
|
|
|
ul.add-menu-item-tabs li { |
| 2651 | 2651 | width: 95%; |
| 2652 | 2652 | } |
| 2653 | 2653 | |
| | 2654 | .form-field .site-address { |
| | 2655 | width:auto; |
| | 2656 | } |
| | 2657 | |
| 2654 | 2658 | p.description, |
| 2655 | 2659 | .form-wrap p { |
| 2656 | 2660 | margin: 2px 0 5px; |
diff --git wp-admin/network/site-info.php wp-admin/network/site-info.php
index d825284..beee271 100644
|
|
|
if ( ! empty( $messages ) ) { |
| 119 | 119 | if ( $is_main_site ) { ?> |
| 120 | 120 | <td><code><?php echo $protocol; echo esc_attr( $details->domain ) ?></code></td> |
| 121 | 121 | <?php } else { ?> |
| 122 | | <td><?php echo $protocol; ?><input name="blog[domain]" type="text" id="domain" value="<?php echo esc_attr( $details->domain ) ?>" size="33" /></td> |
| | 122 | <td><?php echo $protocol; ?><input class="site-address" name="blog[domain]" type="text" id="domain" value="<?php echo esc_attr( $details->domain ) ?>" size="33" /></td> |
| 123 | 123 | <?php } ?> |
| 124 | 124 | </tr> |
| 125 | 125 | <tr class="form-field form-required"> |
diff --git wp-admin/network/site-new.php wp-admin/network/site-new.php
index a94aaf3..d808908 100644
|
|
|
if ( ! empty( $messages ) ) { |
| 117 | 117 | <th scope="row"><?php _e( 'Site Address' ) ?></th> |
| 118 | 118 | <td> |
| 119 | 119 | <?php if ( is_subdomain_install() ) { ?> |
| 120 | | <input name="blog[domain]" type="text" class="regular-text" title="<?php _e( 'Domain' ) ?>"/>.<?php echo preg_replace( '|^www\.|', '', $current_site->domain );?> |
| | 120 | <input name="blog[domain]" type="text" class="site-address regular-text" title="<?php _e( 'Domain' ) ?>"/>.<?php echo preg_replace( '|^www\.|', '', $current_site->domain );?> |
| 121 | 121 | <?php } else { |
| 122 | | echo $current_site->domain . $current_site->path ?><input name="blog[domain]" class="regular-text" type="text" title="<?php _e( 'Domain' ) ?>"/> |
| | 122 | echo $current_site->domain . $current_site->path ?><input name="blog[domain]" class="site-address regular-text" type="text" title="<?php _e( 'Domain' ) ?>"/> |
| 123 | 123 | <?php } |
| 124 | 124 | echo '<p>' . __( 'Only the characters a-z and 0-9 recommended.' ) . '</p>'; |
| 125 | 125 | ?> |