summaryrefslogtreecommitdiffstatshomepage
path: root/wp-admin/setup-config.php
diff options
context:
space:
mode:
authorRyan Boren <ryan@git.wordpress.org>2012-11-30 13:40:59 +0000
committerRyan Boren <ryan@git.wordpress.org>2012-11-30 13:40:59 +0000
commitc53137f535698a8303870600936057ae6ac0aa29 (patch)
tree88da1f4bd9abd0d610158f5386427bc929498e8d /wp-admin/setup-config.php
parent5178ac86cbe91083816e0f7d6415d0ceea3cc94d (diff)
downloadwordpress-c53137f535698a8303870600936057ae6ac0aa29.tar.gz
wordpress-c53137f535698a8303870600936057ae6ac0aa29.zip
Scope button classes so they can be used on the frontend without interfering with theme styles.
Props helenyhou, koopersmith fixes #22644 git-svn-id: https://develop.svn.wordpress.org/trunk@22948 602fd350-edb4-49c9-b593-d223f7449a82
Diffstat (limited to 'wp-admin/setup-config.php')
-rw-r--r--wp-admin/setup-config.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/wp-admin/setup-config.php b/wp-admin/setup-config.php
index 2cc2c08ce8..7409d010ff 100644
--- a/wp-admin/setup-config.php
+++ b/wp-admin/setup-config.php
@@ -99,7 +99,7 @@ function setup_config_display_header() {
<link rel="stylesheet" href="../wp-includes/css/buttons.css?ver=<?php echo preg_replace( '/[^0-9a-z\.-]/i', '', $wp_version ); ?>" type="text/css" />
</head>
-<body<?php if ( is_rtl() ) echo ' class="rtl"'; ?>>
+<body class="wp-core-ui<?php if ( is_rtl() ) echo ' rtl'; ?>">
<h1 id="logo"><a href="<?php esc_attr_e( 'http://wordpress.org/' ); ?>"><?php _e( 'WordPress' ); ?></a></h1>
<?php
} // end function setup_config_display_header();