Twenty Fifteen: Isolate :not selectors from CSS2 selectors.

props peterwilsoncc, iamtakashi.
fixes #30014.

git-svn-id: https://develop.svn.wordpress.org/trunk@29996 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2014-10-23 11:43:04 +00:00
parent 3816b779f0
commit 150f0cdfaf
3 changed files with 9 additions and 5 deletions

View File

@ -548,9 +548,7 @@ img.aligncenter {
top: 4px;
}
.updated,
.sticky .posted-on,
.sticky .posted-on + .byline:before {
.updated {
display: none;
}

View File

@ -438,7 +438,6 @@ function twentyfifteen_color_scheme_css() {
.main-navigation ul,
.main-navigation li,
.post-navigation,
.post-navigation .nav-previous:not(.has-post-thumbnail) + .nav-next:not(.has-post-thumbnail),
.pagination,
.comment-navigation,
.widget li,
@ -463,6 +462,10 @@ function twentyfifteen_color_scheme_css() {
border-color: %6$s;
}
.post-navigation .nav-previous:not(.has-post-thumbnail) + .nav-next:not(.has-post-thumbnail) {
border-color: %6$s;
}
/* Border Focus Color */
input:focus,
textarea:focus {

View File

@ -1839,7 +1839,10 @@ a.post-thumbnail:focus {
text-transform: uppercase;
}
.updated:not(.published),
.updated:not(.published) {
display: none;
}
.sticky .posted-on,
.sticky .posted-on + .byline:before {
display: none;