Twenty Thirteen: more specificity for `.reply` selectors, props johnjamesjacoby for starter patch. Fixes #24268.
git-svn-id: http://core.svn.wordpress.org/trunk@24193 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
57b1dd212b
commit
892822fd23
|
@ -89,31 +89,31 @@ img.alignleft {
|
|||
|
||||
.comment-meta,
|
||||
.comment-content,
|
||||
.reply {
|
||||
.comment-list .reply {
|
||||
width: 480px;
|
||||
}
|
||||
|
||||
.depth-2 .comment-meta,
|
||||
.depth-2 .comment-content,
|
||||
.depth-2 .reply {
|
||||
.comment-list .depth-2 .reply {
|
||||
width: 460px;
|
||||
}
|
||||
|
||||
.depth-3 .comment-meta,
|
||||
.depth-3 .comment-content,
|
||||
.depth-3 .reply {
|
||||
.comment-list .depth-3 .reply {
|
||||
width: 440px;
|
||||
}
|
||||
|
||||
.depth-4 .comment-meta,
|
||||
.depth-4 .comment-content,
|
||||
.depth-4 .reply {
|
||||
.comment-list .depth-4 .reply {
|
||||
width: 420px;
|
||||
}
|
||||
|
||||
.depth-5 .comment-meta,
|
||||
.depth-5 .comment-content,
|
||||
.depth-5 .reply {
|
||||
.comment-list .depth-5 .reply {
|
||||
width: 400px;
|
||||
}
|
||||
|
||||
|
|
|
@ -629,7 +629,7 @@ div.nav-menu > ul {
|
|||
|
||||
.comment-metadata,
|
||||
.comment-content,
|
||||
.reply {
|
||||
.comment-list .reply {
|
||||
float: left;
|
||||
}
|
||||
|
||||
|
|
|
@ -2299,7 +2299,7 @@ footer.entry-meta {
|
|||
|
||||
.no-avatars .comment-metadata,
|
||||
.no-avatars .comment-content,
|
||||
.no-avatars .reply {
|
||||
.no-avatars .comment-list .reply {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
|
@ -2314,7 +2314,7 @@ footer.entry-meta {
|
|||
|
||||
.comment-metadata,
|
||||
.comment-content,
|
||||
.reply {
|
||||
.comment-list .reply {
|
||||
float: right;
|
||||
width: 79%;
|
||||
width: -webkit-calc(100% - 124px);
|
||||
|
@ -3053,7 +3053,7 @@ footer.entry-meta {
|
|||
|
||||
.comment-metadata,
|
||||
.comment-content,
|
||||
.reply {
|
||||
.comment-list .reply {
|
||||
width: 70%;
|
||||
width: -webkit-calc(100% - 104px);
|
||||
width: calc(100% - 104px);
|
||||
|
@ -3149,7 +3149,7 @@ footer.entry-meta {
|
|||
|
||||
.comment-metadata,
|
||||
.comment-content,
|
||||
.reply {
|
||||
.comment-list .reply {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue