Make WordPress Core

Ticket #28883: 28883.diff

File 28883.diff, 2.1 KB (added by johnbillion, 11 years ago)
  • wp-admin/css/common.css

     
    21282128        right: 0;
    21292129        left: 0;
    21302130        height: 56px;
    2131         overflow: hidden;
    2132         text-overflow: ellipsis;
    2133         white-space: nowrap;
     2131        position: relative;
    21342132}
    21352133
    21362134#plugin-information-title.with-banner {
     
    21522150        font-size: 30px;
    21532151        line-height: 50px;
    21542152        font-weight: bold;
    2155         max-width: 760px;
     2153        max-width: 100%;
    21562154        position: absolute;
    2157         left: 20px;
    2158         top: 145px;
     2155        left: 0;
     2156        bottom: 56px;
    21592157        padding: 0 15px;
    2160         margin: 0;
     2158        margin: 0 20px;
    21612159        color: #fff;
    21622160        background: rgba( 30, 30, 30, 0.9 );
    21632161        text-shadow: 0 1px 3px rgba( 0, 0, 0, 0.4 );
     
    21652163        box-shadow: 0 0 30px rgba( 255, 255, 255, 0.1 );
    21662164        -webkit-border-radius: 8px;
    21672165        border-radius: 8px;
     2166        box-sizing: content-box;
    21682167}
    21692168
    21702169#plugin-information-title div.vignette {
     
    21752174        display: block;
    21762175        top: 0;
    21772176        height: 215px;
    2178         width: 830px;
    21792177        margin: 0 -20px;
    21802178        background: transparent;
    21812179        -webkit-box-shadow: inset 0 0 50px 4px rgba( 0, 0, 0, 0.2 ), inset 0 -1px 0 rgba( 0, 0, 0, 0.1 );
     
    24082406        }
    24092407
    24102408        #plugin-information-title.with-banner h2 {
    2411                 top: 12px;
     2409                bottom: 49px;
    24122410                font-size: 20px;
    24132411                line-height: 40px;
     2412                overflow: hidden;
     2413                text-overflow: ellipsis;
     2414                white-space: nowrap;
     2415                box-sizing: border-box;
    24142416        }
    24152417
    24162418        #plugin-information-title.with-banner div.vignette {
  • wp-admin/includes/plugin-install.php

     
    393393                <?php
    394394        }
    395395
    396         echo "<div id='{$_tab}-title' class='{$_with_banner}'><div class='vignette'></div><h2>{$api->name}</h2></div>";
     396        echo "<div id='{$_tab}-title' class='{$_with_banner}'><div class='vignette'></div><div class='{$_tab}-name'><h2>{$api->name}</h2></div></div>";
    397397        echo "<div id='{$_tab}-tabs' class='{$_with_banner}'>\n";
    398398
    399399        foreach ( (array) $api->sections as $section_name => $content ) {