Make WordPress Core

Ticket #20796: 20796.4.diff

File 20796.4.diff, 5.5 KB (added by helenyhou, 13 years ago)
  • wp-admin/css/wp-admin-rtl.dev.css

     
    14031403        margin-right: 3em;
    14041404}
    14051405
     1406.about-wrap .three-col-images .last-feature {
     1407        float: left;
     1408}
     1409
     1410.about-wrap .three-col-images .first-feature {
     1411        float: right;
     1412}
     1413
    14061414.about-wrap .feature-section.three-col div {
    14071415        margin-right: 0;
    14081416        margin-left: 4.999999999%;
  • wp-admin/css/wp-admin.dev.css

     
    50765076
    50775077.about-wrap .feature-section img {
    50785078        border: none;
    5079         margin: 0 0.7% 10px 0;
     5079        margin: 0 1.94% 10px 0;
    50805080        -webkit-border-radius: 3px;
    50815081        border-radius: 3px;
    50825082}
     
    50865086}
    50875087
    50885088.about-wrap .feature-section img.image-30 {
    5089         max-width: 32%;
     5089        max-width: 31.2381%;
    50905090}
    50915091
    50925092.ie8 .about-wrap .feature-section img {
     
    51235123        margin-right: 0;
    51245124}
    51255125
     5126.about-wrap .three-col-images {
     5127        text-align: center;
     5128}
     5129
     5130.about-wrap .three-col-images img {
     5131        margin: 0 0 10px;
     5132}
     5133
     5134.about-wrap .three-col-images .last-feature {
     5135        float: right;
     5136}
     5137
     5138.about-wrap .three-col-images .first-feature {
     5139        float: left;
     5140}
     5141
    51265142.about-wrap .feature-section.images-stagger-right img {
    51275143        float: right;
    51285144        margin: 0 5px 12px 12px;
     
    51305146
    51315147.about-wrap .feature-section.images-stagger-left img {
    51325148        float: left;
    5133         margin: 0 12px 12px 5px;
     5149        margin: 0 22px 12px 3px;
    51345150}
    51355151
    51365152@media only screen and (max-width: 900px) {
  • wp-admin/css/colors-classic.dev.css

     
    23622362        background: #fff;
    23632363        border-color: #dfdfdf;
    23642364
    2365         -moz-box-shadow: 0 0 6px rgba( 0, 0, 0, 0.3 );
    2366         -webkit-box-shadow: 0 0 6px rgba( 0, 0, 0, 0.3 );
    2367         box-shadow: 0 0 6px rgba( 0, 0, 0, 0.3 );
     2365        -moz-box-shadow:    0 1px 3px rgba( 0, 0, 0, 0.3 );
     2366        -webkit-box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.3 );
     2367        box-shadow:         0 1px 3px rgba( 0, 0, 0, 0.3 );
    23682368}
    23692369
    23702370.about-wrap .point-releases {
  • wp-admin/css/ie.dev.css

     
    439439        margin: 0;
    440440}
    441441
     442.about-wrap .three-col-images img {
     443        margin: 0 0.6% 10px;
     444}
     445
     446.about-wrap .three-col-images .last-feature,
     447.about-wrap .three-col-images .first-feature {
     448        float: none;
     449}
     450
    442451/* IE6 leftovers */
    443452* html .row-actions {
    444453        visibility: visible;
  • wp-admin/css/colors-fresh.dev.css

     
    19481948.about-wrap .feature-section img {
    19491949        background: #fff;
    19501950        border-color: #dfdfdf;
     1951        border: 1px #ccc solid;
    19511952
    1952         -moz-box-shadow: 0 0 6px rgba( 0, 0, 0, 0.3 );
    1953         -webkit-box-shadow: 0 0 6px rgba( 0, 0, 0, 0.3 );
    1954         box-shadow: 0 0 6px rgba( 0, 0, 0, 0.3 );
     1953        -moz-box-shadow:    0 1px 3px rgba( 0, 0, 0, 0.3 );
     1954        -webkit-box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.3 );
     1955        box-shadow:         0 1px 3px rgba( 0, 0, 0, 0.3 );
    19551956}
    19561957
    19571958.about-wrap h4.wp-people-group {
  • wp-admin/about.php

     
    5252        <div class="feature-section">
    5353                <h4><?php _e( 'Flexible Sizes' ); ?></h4>
    5454                <p><?php _e( 'You can decide for yourself how tall or wide your custom header image should be. From now on, themes will provide a recommended image size for custom headers rather than a fixed requirement. Note: this feature requires <a href="http://codex.wordpress.org/Custom_Headers">theme support</a>.' ); ?></p>
    55                 <img src="<?php echo esc_url( admin_url( 'images/screenshots/flex-header-1.png' ) ); ?>" class="image-30" />
    56                 <img src="<?php echo esc_url( admin_url( 'images/screenshots/flex-header-2.png' ) ); ?>" class="image-30" />
    57                 <img src="<?php echo esc_url( admin_url( 'images/screenshots/flex-header-3.png' ) ); ?>" class="image-30" />
     55                <div class="three-col-images">
     56                        <img src="<?php echo esc_url( admin_url( 'images/screenshots/flex-header-1.png' ) ); ?>" class="image-30 first-feature" />
     57                        <img src="<?php echo esc_url( admin_url( 'images/screenshots/flex-header-2.png' ) ); ?>" class="image-30" />
     58                        <img src="<?php echo esc_url( admin_url( 'images/screenshots/flex-header-3.png' ) ); ?>" class="image-30 last-feature" />
     59                </div>
    5860        </div>
    5961
    6062        <div class="feature-section images-stagger-right">
     
    6567</div>
    6668
    6769<div class="changelog">
     70        <h3><?php _e( 'Twitter Embeds' ); ?></h3>
     71
     72        <div class="feature-section images-stagger-left">
     73                <img src="<?php echo esc_url( admin_url( 'images/screenshots/twitter-embed.png' ) ); ?>" class="image-50" />
     74                <h4><?php _e( 'Embedding a tweet is as easy as pasting a Tweet URL on its own line' ); ?></h4>
     75                <p><?php _e( "Twitter embeds allow you to display any individual tweet in a blog post or post comment, complete with the tweet's text, inline links, and linked hashtags and usernames, along with action links allowing readers to follow and reply to, retweet, and favorite the tweet without leaving your site." ); ?></p>
     76        </div>
     77
     78</div>
     79
     80
     81<div class="changelog">
    6882        <h3><?php _e( 'Better Captions' ); ?></h3>
    6983
    7084        <div class="feature-section images-stagger-right">