Progress
The progress module gives you full control over the presentation of progress and loading on your pages. Apart from progress bars and color variants for them, spinner elements are provided to help communicate that something is loading.
All examples showcased refer to the mini-default flavor, some class names and styles might differ based on the flavor you're using.
@@ -53,7 +53,7 @@Quick overview
@@ -68,7 +68,7 @@Basic progress bar
Progress bar variants
Donut spinner
Notes
- The
.spinner-donut
is an animated component, meaning that if a browsers does not support animation, this element might display incorrectly.
+ - In certain cases, it might be useful to add the
role="progressbar"
attribute to increase donut spinner accessibility.
Donut spinner variants
If you want to learn more about mini.css's modules, go back to the modules page and choose another module to see its documentation.
Tabs are responsive and will collapse into a stacked display on smaller screens, allowing the user to view the actual content more easily. The tab container's syntax is accessible, but parts of it might confuse screen readers, so we suggest adding the aria-hidden="true"
to all the <input>
and <label>
elements inside the .tabs
container.
Tabs are responsive and will collapse into a stacked display on smaller screens, allowing the user to view the actual content more easily. The tab container's syntax is accessible, but parts of it might confuse screen readers, so we suggest adding the aria-hidden="true"
attribute to all the <input>
and <label>
elements inside the .tabs
container.
Sample code
<div class="tabs"> <input type="radio" name="tab-group" id="tab1" checked aria-hidden="true"> diff --git a/docs/v2/DEVLOG.md b/docs/v2/DEVLOG.md index df73079..ecb6fb2 100644 --- a/docs/v2/DEVLOG.md +++ b/docs/v2/DEVLOG.md @@ -849,3 +849,4 @@ - Fed **hugging cat**, it's even happier now. - Updated `tab.html` with some minor accessibility guidelines and new layout. +- Updated `progress.html` with an accessibility guideline and new layout.