Skip to content

Instantly share code, notes, and snippets.

@rianrietveld
Created October 23, 2020 09:06
Show Gist options
  • Save rianrietveld/28b2843d1919f45a59dab49cb91b6486 to your computer and use it in GitHub Desktop.
Save rianrietveld/28b2843d1919f45a59dab49cb91b6486 to your computer and use it in GitHub Desktop.
Number of filters
<!-- old -->
<button class="ol-button ol-button--primary ol-button--js-filter" aria-expanded="false">
<span class="ol-button--amount" aria-hidden="true" style="display: inline;">
4
</span>
<span class="ol-button__text">
Meer filters
</span>
<span class="ol-button__icon">
<i class="ol-icon ol-icon-plus" aria-hidden="true"></i>
</span>
</button>
<!-- new -->
<button class="ol-button ol-button--primary ol-button--js-filter" aria-expanded="false" aria-label="Meer filters, er zijn 4 filters actief">
<span class="ol-button--amount" style="display: inline;">
4
</span>
<span class="ol-button__text">
Meer filters
</span>
<span class="ol-button__icon">
<i class="ol-icon ol-icon-plus" aria-hidden="true"></i>
</span>
</button>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment