Twenty Thirteen: improve Quote post format styles to look more like quotes. Fixes #24176.
git-svn-id: http://core.svn.wordpress.org/trunk@24172 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
8aafcd9881
commit
cb9bf04530
|
@ -279,3 +279,7 @@ img.alignleft {
|
|||
max-width: none;
|
||||
left: auto;
|
||||
}
|
||||
|
||||
.ie7 .format-quote .quote {
|
||||
padding: 0;
|
||||
}
|
|
@ -8,6 +8,7 @@
|
|||
var html = $( 'html' ),
|
||||
body = $( 'body' ),
|
||||
_window = $( window ),
|
||||
captions = $( '.quote-caption' ),
|
||||
adjustFooter,
|
||||
|
||||
/**
|
||||
|
@ -70,6 +71,12 @@
|
|||
}
|
||||
} );
|
||||
|
||||
/** Better styles for Quote post formats with a linked source.
|
||||
*
|
||||
*/
|
||||
if ( captions )
|
||||
captions.has( 'a' ).addClass( 'linked' );
|
||||
|
||||
/**
|
||||
* Arranges footer widgets vertically.
|
||||
*/
|
||||
|
|
|
@ -435,6 +435,19 @@ div.nav-menu > ul {
|
|||
content: "\f105";
|
||||
}
|
||||
|
||||
.format-quote .quote {
|
||||
padding-left: 0;
|
||||
padding-right: 75px;
|
||||
}
|
||||
|
||||
.format-quote .quote:before {
|
||||
content: '\201D';
|
||||
padding-right: 0;
|
||||
padding-left: 25px;
|
||||
left: auto;
|
||||
right: -15px;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 5.6 Attachments
|
||||
|
|
|
@ -1659,25 +1659,28 @@ footer.entry-meta {
|
|||
}
|
||||
|
||||
.format-quote .entry-content {
|
||||
color: #f7f5e7;
|
||||
position: relative;
|
||||
font-size: 28px;
|
||||
font-style: italic;
|
||||
font-weight: 300;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.format-quote .entry-content,
|
||||
.format-quote .entry-meta {
|
||||
color: #f7f5e7;
|
||||
}
|
||||
|
||||
.format-quote .entry-content blockquote {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.format-quote .entry-content p {
|
||||
line-height: 1.3;
|
||||
}
|
||||
|
||||
.format-quote .entry-content a,
|
||||
.format-quote .entry-meta a {
|
||||
.format-quote .entry-meta a,
|
||||
.format-quote .linked {
|
||||
color: #e63f2a;
|
||||
}
|
||||
|
||||
.format-quote .entry-content cite a {
|
||||
border-bottom: 1px dotted #fff;
|
||||
color: #fff;
|
||||
|
@ -1694,6 +1697,21 @@ footer.entry-meta {
|
|||
font-size: 16px;
|
||||
}
|
||||
|
||||
.format-quote .quote {
|
||||
padding-left: 75px;
|
||||
}
|
||||
|
||||
.format-quote .quote:before {
|
||||
content: '\201C';
|
||||
font-size: 140px;
|
||||
font-weight: 400;
|
||||
line-height: .8;
|
||||
padding-right: 25px;
|
||||
position: absolute;
|
||||
top: -3px;
|
||||
left: -15px;
|
||||
}
|
||||
|
||||
.format-quote .entry-meta .author {
|
||||
display: none;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue