Make WordPress Core

Ticket #18866: 18866.include_stylesheet.patch

File 18866.include_stylesheet.patch, 1.1 KB (added by olleicua, 12 years ago)

Added a line to include the admin stylesheet here

  • wp-includes/functions.php

     
    28402840<head>
    28412841        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    28422842        <title><?php echo $title ?></title>
     2843        <link rel="stylesheet" href="wp-admin/css/install.css" type="text/css" />
    28432844        <style type="text/css">
    2844                 html {
    2845                         background: #f9f9f9;
    2846                 }
    28472845                body {
    2848                         background: #fff;
    2849                         color: #333;
    28502846                        font-family: "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
    2851                         margin: 2em auto;
    2852                         width: 700px;
    2853                         padding: 1em 2em;
    2854                         -moz-border-radius: 11px;
    2855                         -khtml-border-radius: 11px;
    2856                         -webkit-border-radius: 11px;
    2857                         border-radius: 11px;
    2858                         border: 1px solid #dfdfdf;
    28592847                }
    2860                 #error-page {
    2861                         margin-top: 50px;
    2862                 }
    2863                 #error-page p {
    2864                         font-size: 12px;
    2865                         line-height: 18px;
    2866                         margin: 25px 0 20px;
    2867                 }
    2868                 #error-page code {
    2869                         font-family: Consolas, Monaco, monospace;
    2870                 }
    28712848                <?php if ( 'rtl' == $text_direction ) : ?>
    28722849                body { font-family: Tahoma, arial; }
    28732850                <?php endif; ?>