Merge pull request #112 from Thomas-A-Reinert/dev
ARIA roles update +1 @Thomas-A-Reinert Thx again!
This commit is contained in:
commit
f2df8768c8
|
@ -8,3 +8,4 @@ understrap.zip
|
|||
src
|
||||
|
||||
dist
|
||||
/gulpfile.js
|
||||
|
|
|
@ -31,7 +31,7 @@ if ( post_password_required() ) {
|
|||
</h2>
|
||||
|
||||
<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?>
|
||||
<nav class="comment-navigation" id="comment-nav-above" role="navigation">
|
||||
<nav class="comment-navigation" id="comment-nav-above">
|
||||
<h1 class="screen-reader-text"><?php _e( 'Comment navigation', 'understrap' ); ?></h1>
|
||||
<?php if ( get_previous_comments_link() ) { ?>
|
||||
<div class="nav-previous"><?php previous_comments_link( __( '← Older Comments', 'understrap' ) ); ?></div>
|
||||
|
@ -51,7 +51,7 @@ if ( post_password_required() ) {
|
|||
</ol><!-- .comment-list -->
|
||||
|
||||
<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?>
|
||||
<nav class="comment-navigation" id="comment-nav-below" role="navigation">
|
||||
<nav class="comment-navigation" id="comment-nav-below">
|
||||
<h1 class="screen-reader-text"><?php _e( 'Comment navigation', 'understrap' ); ?></h1>
|
||||
<?php if ( get_previous_comments_link() ) { ?>
|
||||
<div class="nav-previous"><?php previous_comments_link( __( '← Older Comments', 'understrap' ) );?></div>
|
||||
|
|
|
@ -5027,7 +5027,6 @@ a.skip-link {
|
|||
.dropdown-menu .dropdown-menu {
|
||||
position: relative;
|
||||
display: block;
|
||||
width: 140px;
|
||||
margin-left: 10px;
|
||||
border: none;
|
||||
box-shadow: none; }
|
||||
|
@ -5040,6 +5039,12 @@ a.skip-link {
|
|||
.dropdown-menu .menu-item a:hover {
|
||||
background-color: #895cd1; }
|
||||
|
||||
button,
|
||||
[type="button"],
|
||||
[type="reset"],
|
||||
[type="submit"] {
|
||||
cursor: pointer; }
|
||||
|
||||
/*!
|
||||
* Font Awesome 4.5.0 by @davegandy - http://fontawesome.io - @fontawesome
|
||||
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -15,7 +15,7 @@ var browserSyncWatchFiles = [
|
|||
// browser-sync options
|
||||
// see: https://www.browsersync.io/docs/options/
|
||||
var browserSyncOptions = {
|
||||
proxy: "localhost/theme_test/",
|
||||
proxy: "localhost/wordpress/",
|
||||
notify: false
|
||||
};
|
||||
|
||||
|
|
|
@ -42,6 +42,6 @@
|
|||
"gulp-watch": "^4.3.6",
|
||||
"merge2": "^1.0.2",
|
||||
"owl.carousel": "^2.2.0",
|
||||
"undescores-for-npm": "^1.0.0"
|
||||
"underscores-for-npm": "^1.0.0"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -134,7 +134,6 @@ a.skip-link {
|
|||
.dropdown-menu .dropdown-menu {
|
||||
position: relative;
|
||||
display: block;
|
||||
width: 140px;
|
||||
margin-left: 10px;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
|
@ -148,3 +147,10 @@ a.skip-link {
|
|||
width: 100%;
|
||||
a:hover { background-color: $brand-primary; }
|
||||
}
|
||||
|
||||
button,
|
||||
[type="button"],
|
||||
[type="reset"],
|
||||
[type="submit"] {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
|
Reference in New Issue