We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It is possible to mix striped and non-striped progress bars by using an inline element around the progress-bar element, like this:
progress-bar
<div class="progress active"> <div class="progress-bar progress-bar-success" style="width: 35%">...</div> <span class="progress-striped"> <div class="progress-bar" style="width: 45%">...</div> </span> </div>
The result:
This is not really smart, wouldn't it be easier when I could add the *-striped and active class directly to the progress-bar element?
*-striped
active
<div class="progress active"> <div class="progress-bar progress-bar-success" style="width: 35%">...</div> <div class="progress-bar progress-bar-striped" style="width: 25%">...</div> <div class="progress-bar progress-bar-striped active" style="width: 15%">...</div> </div>
The text was updated successfully, but these errors were encountered:
fixes #13347: make striped progress bars its own class
2a380f6
(less) fixes twbs#13347: make striped progress bars its own class
ca5bd74
Successfully merging a pull request may close this issue.
It is possible to mix striped and non-striped progress bars by using an inline element around the
progress-bar
element, like this:The result:
This is not really smart, wouldn't it be easier when I could add the
*-striped
andactive
class directly to theprogress-bar
element?The text was updated successfully, but these errors were encountered: