Twenty Fifteen: Isolate :not selectors from CSS2 selectors.

props peterwilsoncc, iamtakashi.
fixes #30014.
Built from https://develop.svn.wordpress.org/trunk@29996


git-svn-id: http://core.svn.wordpress.org/trunk@29737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2014-10-23 11:44:19 +00:00
parent 1c1139996a
commit 85c824218f
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;