Make WordPress Core

Ticket #24176: 24176.4.diff

File 24176.4.diff, 2.4 KB (added by lancewillett, 11 years ago)
  • wp-content/themes/twentythirteen/style.css

     
    16591659}
    16601660
    16611661.format-quote .entry-content {
    1662         color: #f7f5e7;
     1662        position: relative;
    16631663        font-size: 28px;
    16641664        font-style: italic;
    16651665        font-weight: 300;
    16661666        margin: 0 auto;
    16671667}
    16681668
     1669.format-quote .entry-content,
     1670.format-quote .entry-meta {
     1671        color: #f7f5e7;
     1672}
     1673
    16691674.format-quote .entry-content blockquote {
    16701675        margin: 0;
    16711676}
    16721677
    1673 .format-quote .entry-content p {
    1674         line-height: 1.3;
    1675 }
    1676 
    16771678.format-quote .entry-content a,
    1678 .format-quote .entry-meta a {
     1679.format-quote .entry-meta a,
     1680.format-quote .linked {
    16791681        color: #e63f2a;
    16801682}
     1683
    16811684.format-quote .entry-content cite a {
    16821685        border-bottom: 1px dotted #fff;
    16831686        color: #fff;
     
    16941697        font-size: 16px;
    16951698}
    16961699
     1700.format-quote .quote {
     1701        padding-left: 75px;
     1702}
     1703
     1704.format-quote .quote:before {
     1705        content: '\201C';
     1706        font-size: 140px;
     1707        font-weight: 400;
     1708        line-height: .8;
     1709        padding-right: 25px;
     1710        position: absolute;
     1711        top: -3px;
     1712        left: -15px;
     1713}
     1714
    16971715.format-quote .entry-meta .author {
    16981716        display: none;
    16991717}
  • wp-content/themes/twentythirteen/js/functions.js

     
    88        var html               = $( 'html' ),
    99            body               = $( 'body' ),
    1010            _window            = $( window ),
     11            captions           = $( '.quote-caption' ),
    1112            adjustFooter,
    1213
    1314        /**
     
    7071                }
    7172        } );
    7273
     74        /** Better styles for Quote post formats with a linked source.
     75         *
     76         */
     77        if ( captions )
     78                captions.has( 'a' ).addClass( 'linked' );
     79
    7380        /**
    7481         * Arranges footer widgets vertically.
    7582         */
  • wp-content/themes/twentythirteen/rtl.css

     
    435435        content: "\f105";
    436436}
    437437
     438.format-quote .quote {
     439        padding-left: 0;
     440        padding-right: 75px;
     441}
    438442
     443.format-quote .quote:before {
     444        content: '\201D';
     445        padding-right: 0;
     446        padding-left: 25px;
     447        left: auto;
     448        right: -15px;
     449}
     450
     451
    439452/**
    440453 * 5.6 Attachments
    441454 * ----------------------------------------------------------------------------