From 61219dc0099357eedcee560424472dc87eec47e5 Mon Sep 17 00:00:00 2001 From: westi Date: Wed, 23 Nov 2011 17:29:49 +0000 Subject: [PATCH] Add button styles to the inline styles in _default_wp_die_handler so that the Create a Config button is styled again. Fixes #17975. git-svn-id: http://svn.automattic.com/wordpress/trunk@19417 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/functions.php | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 51f93ee80..6b5aa505c 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -2881,6 +2881,35 @@ function _default_wp_die_handler( $message, $title = '', $args = array() ) { a:hover { color: #D54E21; } + + .button { + font-family: sans-serif; + text-decoration: none; + font-size: 14px !important; + line-height: 16px; + padding: 6px 12px; + cursor: pointer; + border: 1px solid #bbb; + color: #464646; + -webkit-border-radius: 15px; + border-radius: 15px; + -moz-box-sizing: content-box; + -webkit-box-sizing: content-box; + box-sizing: content-box; + } + + .button:hover { + color: #000; + border-color: #666; + } + + .button { + background: #f2f2f2 url(/wp-admin/images/white-grad.png) repeat-x scroll left top; + } + + .button:active { + background: #eee url(/wp-admin/images/white-grad-active.png) repeat-x scroll left top; + } body { font-family: Tahoma, Arial; }