Commit 3fe894ba authored by Chris Rebert's avatar Chris Rebert

Merge pull request #120 from twbs/really-fix-dist-css

Really fix dist-css
parents 33a57807 82c9038f
...@@ -213,7 +213,7 @@ ...@@ -213,7 +213,7 @@
} }
// IE9 hack to hide the arrow // IE9 hack to hide the arrow
@media screen and ("min-width:0\0") { @media screen and (min-width:0\0) {
.select select { .select select {
z-index: 1; z-index: 1;
padding: .5rem 1.5rem .5rem 1rem; padding: .5rem 1.5rem .5rem 1rem;
......
...@@ -77,7 +77,7 @@ ...@@ -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. // 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 { .progress {
background-color: #eee; background-color: #eee;
@include border-radius($border-radius-base); @include border-radius($border-radius-base);
...@@ -116,7 +116,7 @@ ...@@ -116,7 +116,7 @@
@include gradient-striped(); @include gradient-striped();
background-size: $spacer-y $spacer-y; background-size: $spacer-y $spacer-y;
} }
@media screen and ("min-width:0\0") { @media screen and (min-width:0\0) {
.progress-bar-striped { .progress-bar-striped {
@include gradient-striped(); @include gradient-striped();
background-size: $spacer-y $spacer-y; background-size: $spacer-y $spacer-y;
...@@ -134,7 +134,7 @@ ...@@ -134,7 +134,7 @@
.progress-animated[value]::-moz-progress-bar { .progress-animated[value]::-moz-progress-bar {
animation: progress-bar-stripes 2s linear infinite; 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 { .progress-animated .progress-bar-striped {
animation: progress-bar-stripes 2s linear infinite; animation: progress-bar-stripes 2s linear infinite;
} }
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
background-color: $color; background-color: $color;
} }
@media screen and ("min-width:0\0") { @media screen and (min-width:0\0) {
.progress-bar { .progress-bar {
background-color: $color; background-color: $color;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment