Use CSS instead of nbsp, props demetris, fixes #10206 for 2.8
git-svn-id: http://svn.automattic.com/wordpress/branches/2.8@11648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
51b70185ba
commit
385af418f4
|
@ -437,6 +437,10 @@ a.button-secondary {
|
|||
padding: 2px;
|
||||
}
|
||||
|
||||
#timezone_string option {
|
||||
margin-left: 1em;
|
||||
}
|
||||
|
||||
.approve {
|
||||
display: none;
|
||||
}
|
||||
|
|
|
@ -3300,9 +3300,9 @@ function wp_timezone_choice( $selected_zone ) {
|
|||
$display = str_replace( 'GMT', '', $zone['city'] );
|
||||
$display = strtr( $display, '+-', '-+' ) . ':00';
|
||||
}
|
||||
$display = ' ' . sprintf( __( 'UTC %s' ), $display );
|
||||
$display = sprintf( __( 'UTC %s' ), $display );
|
||||
} else {
|
||||
$display = ' ' . $zone['t_city'];
|
||||
$display = $zone['t_city'];
|
||||
if ( !empty( $zone['subcity'] ) ) {
|
||||
// Add the subcity to the value
|
||||
$value[] = $zone['subcity'];
|
||||
|
|
Loading…
Reference in New Issue