Twenty Nineteen: Fixes messy navigation with RTL language.
The first tag wasn't switching correctly. This resolves it for an adjacent RTL language link setting list items to inline-block. Props manooweb, audrasjb, SergeyBiryukov, davidbaumwald, marybaum, sabernhardt. Fixes #46658. Built from https://develop.svn.wordpress.org/trunk@58582 git-svn-id: http://core.svn.wordpress.org/trunk@58029 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
c15614f3cb
commit
43126fa789
|
@ -56,7 +56,7 @@
|
|||
> li {
|
||||
|
||||
color: $color__link;
|
||||
display: inline;
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
|
||||
> a {
|
||||
|
|
|
@ -2830,7 +2830,7 @@ body.page .main-navigation {
|
|||
|
||||
.main-navigation .main-menu > li {
|
||||
color: #0073aa;
|
||||
display: inline;
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
|
|
|
@ -2830,7 +2830,7 @@ body.page .main-navigation {
|
|||
|
||||
.main-navigation .main-menu > li {
|
||||
color: #0073aa;
|
||||
display: inline;
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.7-alpha-58581';
|
||||
$wp_version = '6.7-alpha-58582';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue