Ticket #24176: 24176.4.diff
File 24176.4.diff, 2.4 KB (added by , 11 years ago) |
---|
-
wp-content/themes/twentythirteen/style.css
1659 1659 } 1660 1660 1661 1661 .format-quote .entry-content { 1662 color: #f7f5e7;1662 position: relative; 1663 1663 font-size: 28px; 1664 1664 font-style: italic; 1665 1665 font-weight: 300; 1666 1666 margin: 0 auto; 1667 1667 } 1668 1668 1669 .format-quote .entry-content, 1670 .format-quote .entry-meta { 1671 color: #f7f5e7; 1672 } 1673 1669 1674 .format-quote .entry-content blockquote { 1670 1675 margin: 0; 1671 1676 } 1672 1677 1673 .format-quote .entry-content p {1674 line-height: 1.3;1675 }1676 1677 1678 .format-quote .entry-content a, 1678 .format-quote .entry-meta a { 1679 .format-quote .entry-meta a, 1680 .format-quote .linked { 1679 1681 color: #e63f2a; 1680 1682 } 1683 1681 1684 .format-quote .entry-content cite a { 1682 1685 border-bottom: 1px dotted #fff; 1683 1686 color: #fff; … … 1694 1697 font-size: 16px; 1695 1698 } 1696 1699 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 1697 1715 .format-quote .entry-meta .author { 1698 1716 display: none; 1699 1717 } -
wp-content/themes/twentythirteen/js/functions.js
8 8 var html = $( 'html' ), 9 9 body = $( 'body' ), 10 10 _window = $( window ), 11 captions = $( '.quote-caption' ), 11 12 adjustFooter, 12 13 13 14 /** … … 70 71 } 71 72 } ); 72 73 74 /** Better styles for Quote post formats with a linked source. 75 * 76 */ 77 if ( captions ) 78 captions.has( 'a' ).addClass( 'linked' ); 79 73 80 /** 74 81 * Arranges footer widgets vertically. 75 82 */ -
wp-content/themes/twentythirteen/rtl.css
435 435 content: "\f105"; 436 436 } 437 437 438 .format-quote .quote { 439 padding-left: 0; 440 padding-right: 75px; 441 } 438 442 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 439 452 /** 440 453 * 5.6 Attachments 441 454 * ----------------------------------------------------------------------------