Twenty Seventeen: Fix post navigation font legibility issue
The combination of font-size and weight for post navigation made lower case "i"s illegible in some cases. Using `15px` seemed to be the best choice all around. Also adjusts the spacing around the arrows a bit, since they touch the text on small screen sizes. Props laurelfulford. Fixes #38670. Built from https://develop.svn.wordpress.org/trunk@39152 git-svn-id: http://core.svn.wordpress.org/trunk@39092 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
1363813c6b
commit
1d8d59a21a
|
@ -135,6 +135,16 @@ input[type="checkbox"] {
|
|||
float: left;
|
||||
}
|
||||
|
||||
.nav-links .nav-previous .nav-title .nav-title-icon-wrapper {
|
||||
margin-left: 0.5em;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.nav-links .nav-next .nav-title .nav-title-icon-wrapper {
|
||||
margin-left: 0;
|
||||
margin-right: 0.5em;
|
||||
}
|
||||
|
||||
/* Blog Entries */
|
||||
|
||||
.entry-footer .cat-links,
|
||||
|
|
|
@ -2166,14 +2166,22 @@ body:not(.twentyseventeen-front-page) .entry-header {
|
|||
|
||||
.nav-title {
|
||||
color: #333;
|
||||
font-size: 16px;
|
||||
font-size: 1rem;
|
||||
font-size: 15px;
|
||||
font-size: 0.9375rem;
|
||||
}
|
||||
|
||||
.post-navigation .nav-next {
|
||||
margin-top: 1.5em;
|
||||
}
|
||||
|
||||
.nav-links .nav-previous .nav-title .nav-title-icon-wrapper {
|
||||
margin-right: 0.5em;
|
||||
}
|
||||
|
||||
.nav-links .nav-next .nav-title .nav-title-icon-wrapper {
|
||||
margin-left: 0.5em;
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------------
|
||||
## Pages
|
||||
--------------------------------------------------------------*/
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.7-beta2-39151';
|
||||
$wp_version = '4.7-beta2-39152';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue