-
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
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
.progress.active not animating #616
Comments
Having this same issue. Seems to be fixed by adding:
But not in Firefox - the progress bars don't even seem to be striped there. |
+1 |
Just added that code at the bottom of my css to override what bootsass was trying to do and it worked. |
So that doesn't seem to work in Firefox, as the stripes in progress-striped don't even show. The reason for this seems to be that something in rails/sass/bootstrap-sass is stripping the "-gradient" part of "linear-gradient" without browser prefixes. So for example, I was able to fix using the bourbon gem and adding this code:
But I'm not sure how to fix this in the bootstrap-sass gem overall. |
Just to reiterate, the final, complete fix using the Bourbon gem is to add:
Frustratingly just adding the resultant CSS doesn't work as "-gradient" is stripped from the non-vendor-prefixed "linear-gradient". I'm not sure what's causing that to get stripped though, if anyone has ideas they'd be much appreciated. |
I think this issue occurred when Bootstrap started to manage vendor prefixes with autoprefixer. |
Since bootstrap is going to deprecate vendor prefix mixins from less, I think bootstrap-sass gem will eventually need vendor prefixer... |
+1 having this also.. downgrading to 3.1.1.0 doesn't work for me |
+1 Running into this as well. Using the 3.1.1 package from bower. |
Fixed in v3.2.0 |
it's fixed in v3.2.0, but the latest support for Rails 3.2 is v3.1.1.0, I am wondering what's the fix for the projects still using Rails 3.2 |
add this to your css ... it worked for me |
Active progress bars are not animating in my Rails 4 app with bootstrap-sass 3.1.1.1. Downgrading to 3.1.1.0 fixes the issue.
My code:
The text was updated successfully, but these errors were encountered: