- Issue created by @joville
- Merge request !20Update file webformnavigation.progress.tracker.css β (Open) created by Unnamed author
- πΊπΈUnited States nixar San Antonio, TX
thank you, for the patch, fixed it for us here
The current version of chrome browser as of the time of writing is breaking the progress tracker in multistep form.
1. Install and enable this module.
2. Set and add a multistep webform.
3. Open the Webform Page in the current chrome browser as of the time of writing.
4. You won't see the multistep points in the multistep timeline anymore because the progress tracker template has no data-text-attribute for the index, which is used in the wrapped content.
Adding patch to webformnavigation.progress.tracker.css to add a supports @-rule for the new css attr() notation for adding a fallback if the data-text attribute is not available.
@supports (x: attr(x type(*))) {
.progress-marker::before {
content: attr(data-text string, "");
}
}
Active
2.0
User interface
thank you, for the patch, fixed it for us here