Update to publish box styles. More horizontal room, consistent button placement, better for i18n, better wording.

git-svn-id: http://svn.automattic.com/wordpress/trunk@9491 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
markjaquith
2008-11-03 07:06:36 +00:00
parent c31fcfdab3
commit ef37aa39aa
9 changed files with 184 additions and 178 deletions

View File

@@ -35,12 +35,12 @@ jQuery(document).ready( function($) {
$('#timestampdiv').slideUp("normal");
$('.edit-timestamp').show();
$('#timestamp').html(
commentL10n.submittedOn + '<br />' +
commentL10n.submittedOn + ' <b>' +
$( '#mm option[value=' + $('#mm').val() + ']' ).text() + ' ' +
$('#jj').val() + ', ' +
$('#aa').val() + ' @ ' +
$('#hh').val() + ':' +
$('#mn').val() + ' '
$('#mn').val() + '</b> '
);
return false;

View File

@@ -60,12 +60,12 @@ jQuery(document).ready( function($) {
$('#publish').val( postL10n.update );
}
$('#timestamp').html(
publishOn + '<br />' +
publishOn + ' <b>' +
$( '#mm option[value=' + $('#mm').val() + ']' ).text() + ' ' +
$('#jj').val() + ', ' +
$('#aa').val() + ' @ ' +
$('#hh').val() + ':' +
$('#mn').val() + ' '
$('#mn').val() + '</b> '
);
return false;

View File

@@ -204,12 +204,12 @@ jQuery(document).ready( function($) {
$('#publish').val( postL10n.update );
}
$('#timestamp').html(
publishOn + '<br />' +
publishOn + ' <b>' +
$( '#mm option[value=' + $('#mm').val() + ']' ).text() + ' ' +
$('#jj').val() + ', ' +
$('#aa').val() + ' @ ' +
$('#hh').val() + ':' +
$('#mn').val() + ' '
$('#mn').val() + '</b> '
);
return false;