]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Unquote to avoid NUL chars in the output CSS
authorChris Rebert <code@rebertia.com>
Fri, 15 May 2015 19:17:09 +0000 (12:17 -0700)
committerChris Rebert <code@rebertia.com>
Fri, 15 May 2015 19:17:13 +0000 (12:17 -0700)
scss/_progress.scss
scss/mixins/_progress.scss

index c99b5af923da5941e24c58bf8c713ea25b927eb2..3c22e23eff98e34cd98a1d32aa529207f720b400 100644 (file)
@@ -77,7 +77,7 @@
 // }
 
 // IE9 hacks to accompany custom markup. We don't need to scope this via media queries, but I feel better doing it anyway.
-@media screen and ("min-width:0\0") {
+@media screen and (min-width:0\0) {
   .progress {
     background-color: #eee;
     @include border-radius($border-radius-base);
   @include gradient-striped();
   background-size: $spacer-y $spacer-y;
 }
-@media screen and ("min-width:0\0") {
+@media screen and (min-width:0\0) {
   .progress-bar-striped {
     @include gradient-striped();
     background-size: $spacer-y $spacer-y;
 .progress-animated[value]::-moz-progress-bar {
   animation: progress-bar-stripes 2s linear infinite;
 }
-@media screen and ("min-width:0\0") {
+@media screen and (min-width:0\0) {
   .progress-animated .progress-bar-striped {
     animation: progress-bar-stripes 2s linear infinite;
   }
index 9c3212ae800d74835002c05d3588bbc1e6f3570d..802e179a413e334d7a3a35fcb101bf320dc7ac1f 100644 (file)
@@ -9,7 +9,7 @@
     background-color: $color;
   }
 
-  @media screen and ("min-width:0\0") {
+  @media screen and (min-width:0\0) {
     .progress-bar {
       background-color: $color;
     }