]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-includes/functions.php
Wordpress 3.3.1-scripts
[autoinstalls/wordpress.git] / wp-includes / functions.php
index 6b5aa505ca7570ff2c327e9aec7b96e4b6bdb403..521b0dd01c0137dcd36128914c2591a56fe41155 100644 (file)
@@ -2896,6 +2896,13 @@ function _default_wp_die_handler( $message, $title = '', $args = array() ) {
                        -moz-box-sizing: content-box;
                        -webkit-box-sizing: content-box;
                        box-sizing: content-box;
+                       background-color: #f5f5f5;
+                       background-image: -ms-linear-gradient(top, #ffffff, #f2f2f2);
+                       background-image: -moz-linear-gradient(top, #ffffff, #f2f2f2);
+                       background-image: -o-linear-gradient(top, #ffffff, #f2f2f2);
+                       background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f2f2f2));
+                       background-image: -webkit-linear-gradient(top, #ffffff, #f2f2f2);
+                       background-image: linear-gradient(top, #ffffff, #f2f2f2);
                }
 
                .button:hover {
@@ -2903,13 +2910,15 @@ function _default_wp_die_handler( $message, $title = '', $args = array() ) {
                        border-color: #666;
                }
 
-               .button {
-                       background: #f2f2f2 url(<?php echo wp_guess_url(); ?>/wp-admin/images/white-grad.png) repeat-x scroll left top;
-               }
-
                .button:active {
-                       background: #eee url(<?php echo wp_guess_url(); ?>/wp-admin/images/white-grad-active.png) repeat-x scroll left top;
+                       background-image: -ms-linear-gradient(top, #f2f2f2, #ffffff);
+                       background-image: -moz-linear-gradient(top, #f2f2f2, #ffffff);
+                       background-image: -o-linear-gradient(top, #f2f2f2, #ffffff);
+                       background-image: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#ffffff));
+                       background-image: -webkit-linear-gradient(top, #f2f2f2, #ffffff);
+                       background-image: linear-gradient(top, #f2f2f2, #ffffff);
                }
+
                <?php if ( 'rtl' == $text_direction ) : ?>
                body { font-family: Tahoma, Arial; }
                <?php endif; ?>