Twenty Thirteen: better font-size rules all blockquotes, setting a smaller base rule and overriding the large only for entry content. Also fix too-wide comment iframes.
Props Viper007Bond for the nudge. Fixes #23651. git-svn-id: http://core.svn.wordpress.org/trunk@23548 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
7b27139b9c
commit
5e9abd57a1
|
@ -254,7 +254,7 @@ q:after {
|
|||
}
|
||||
|
||||
blockquote {
|
||||
font-size: 24px;
|
||||
font-size: 18px;
|
||||
font-style: italic;
|
||||
font-weight: 300;
|
||||
margin: 24px 40px;
|
||||
|
@ -266,7 +266,7 @@ blockquote blockquote {
|
|||
|
||||
blockquote cite,
|
||||
blockquote small {
|
||||
font-size: 16px;
|
||||
font-size: 14px;
|
||||
font-weight: normal;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
@ -1170,6 +1170,15 @@ ul.nav-menu li:hover > ul,
|
|||
color: #ea9629;
|
||||
}
|
||||
|
||||
.entry-content blockquote {
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
.entry-content blockquote cite,
|
||||
.entry-content blockquote small {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
footer.entry-meta {
|
||||
margin-top: 24px;
|
||||
}
|
||||
|
@ -2160,7 +2169,9 @@ footer.entry-meta {
|
|||
.comments-title,
|
||||
.comment-list,
|
||||
#reply-title,
|
||||
#respond #commentform {
|
||||
#respond #commentform,
|
||||
#respond iframe {
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
max-width: 604px;
|
||||
width: 100%;
|
||||
|
@ -2289,10 +2300,6 @@ footer.entry-meta {
|
|||
margin-right: 3px;
|
||||
}
|
||||
|
||||
.comment-content blockquote {
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
/* Comment form */
|
||||
#respond {
|
||||
background-color: #f7f5e7;
|
||||
|
|
Loading…
Reference in New Issue