nav
Here are 104 public repositories matching this topic...
-
Updated
Feb 26, 2019 - Java
I noticed drop downs are not accessible. They should open when you navigate with keyboard. You should avoid using display: none and use heights and visibility settings instead. I could maybe help to implement this as well when I have some free time.
-
Updated
Feb 22, 2020 - PHP
-
Updated
May 28, 2020 - TypeScript
-
Updated
Jan 31, 2018 - JavaScript
The dynamic tabs demo at https://jsfiddle.net/b44cc4dq/245/ removes the first tab in the array instead of the correct one due to the missing 'index' in line 4 of the demo code.
<v-tab v-for="tab in tabs" :key="tab">
should read...
<v-tab v-for="(tab,index) in tabs" :key="tab">
Picnic CSS uses a neat trick to avoid having to specify explicit colours for elements that change on hover (see also the docs). Basically, you use an inset box shadow with a partial transparency value.
This way, I could include natuive css as-is and just specify my ow
-
Updated
Apr 5, 2020 - JavaScript
-
Updated
May 27, 2020 - JavaScript
-
Updated
May 8, 2020 - HTML
-
Updated
Dec 8, 2019 - JavaScript
-
Updated
May 7, 2020 - JavaScript
-
Updated
Oct 26, 2019 - CSS
-
Updated
Aug 9, 2017 - PowerShell
-
Updated
Oct 24, 2018 - CSS
-
Updated
Jan 21, 2020 - JavaScript
-
Updated
Jan 21, 2018 - PowerShell
Improve this page
Add a description, image, and links to the nav topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the nav topic, visit your repo's landing page and select "manage topics."
Suggestion
WordPress core recently added this to the navwalker:
https://core.trac.wordpress.org/ticket/43290
Without adding these attributes google audit flags as a security risk, suggested change for class-wp-bootsrap-navwalker.php:
`//$atts['rel'] = ! empty( $item->xfn ) ? $item->xfn : '';