Fix accessibility

Not a single word!
This commit is contained in:
Tetrakern 2023-06-11 19:15:02 +02:00
parent 2b6184ca75
commit 3627204f06
5 changed files with 11 additions and 4 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -8,7 +8,6 @@
* @package WordPress
* @subpackage Fictioneer
* @since 3.0
* @see wp_nav_menu()
* @see fictioneer_get_breadcrumbs()
* @see fictioneer_get_footer_copyright_note()
* @see partials/_tts-interface.php

View File

@ -50,7 +50,9 @@ if ( ! function_exists( 'fictioneer_footer_menu_row' ) ) {
);
$menu = str_replace( 'class="', 'class="footer__menu-list-item ', $menu );
echo preg_replace( '/<\/li>\s*<li/', '</li>&#8196;&bull;&#8196;<li', $menu );
$menu = preg_replace( '/<\/li>\s*<li/', '</li><li', $menu );
echo $menu;
?></div>
<div class="footer__copyright"><?php echo fictioneer_get_footer_copyright_note( $args ); ?></div>
</div>

View File

@ -35,6 +35,12 @@
&-list {
&-item {
display: inline-block;
&:not(:last-child) {
&::after {
content: "\2004\2022\2004";
}
}
}
}
}