mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-22 17:18:32 +01:00
Fix header/message alignment in Press This. for trunk. see #19725.
git-svn-id: http://svn.automattic.com/wordpress/trunk@19662 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
cf981b4f25
commit
b566f92218
@ -33,6 +33,14 @@ include( './admin-header.php' );
|
||||
</a>
|
||||
</h2>
|
||||
|
||||
<div class="changelog point-releases">
|
||||
<h3><?php echo _n( 'Maintenance and Security Release', 'Maintenance and Security Releases', 1 ); ?></h3>
|
||||
<p><?php printf( _n( '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bug.',
|
||||
'<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bugs.', 13 ), '3.3.1', number_format_i18n( 13 ) ); ?>
|
||||
<?php printf( __( 'For more information, see <a href="%s">the release notes</a>.' ), 'http://codex.wordpress.org/Version_3.3.1' ); ?>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="changelog">
|
||||
<h3><?php _e( 'Easier Uploading' ); ?></h3>
|
||||
|
||||
|
@ -314,6 +314,20 @@ var photostorage = false;
|
||||
do_action('admin_print_scripts');
|
||||
do_action('admin_head');
|
||||
?>
|
||||
<style type="text/css">
|
||||
#message {
|
||||
margin: 10px 0;
|
||||
}
|
||||
#title,
|
||||
.press-this #wphead {
|
||||
margin-left: 0;
|
||||
margin-right: 0;
|
||||
}
|
||||
.rtl.press-this #header-logo,
|
||||
.rtl.press-this #wphead h1 {
|
||||
float: right;
|
||||
}
|
||||
</style>
|
||||
<script type="text/javascript">
|
||||
var wpActiveEditor = 'content';
|
||||
|
||||
@ -444,7 +458,7 @@ var photostorage = false;
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body class="press-this wp-admin">
|
||||
<body class="press-this wp-admin<?php if ( is_rtl() ) echo ' rtl'; ?>">
|
||||
<form action="press-this.php?action=post" method="post">
|
||||
<div id="poststuff" class="metabox-holder">
|
||||
<div id="side-sortables" class="press-this-sidebar">
|
||||
|
Loading…
Reference in New Issue
Block a user