diff options
| author | Chris Rebert <[email protected]> | 2015-05-15 15:12:15 -0700 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2015-05-15 15:12:15 -0700 |
| commit | 3fe894ba3620c7e5d2e040f83948488d1911aedc (patch) | |
| tree | 77384286d213cc05e5b2b4db48470ceef676d5fd | |
| parent | 33a578070bc8d699ee91c8dcbec1f4af2e60a263 (diff) | |
| parent | 82c9038f2085692270c23f68216b3965f2578d4c (diff) | |
| download | bootstrap-3fe894ba3620c7e5d2e040f83948488d1911aedc.tar.xz bootstrap-3fe894ba3620c7e5d2e040f83948488d1911aedc.zip | |
Merge pull request #120 from twbs/really-fix-dist-css
Really fix dist-css
| -rw-r--r-- | package.json | 2 | ||||
| -rw-r--r-- | scss/_custom-forms.scss | 2 | ||||
| -rw-r--r-- | scss/_progress.scss | 6 | ||||
| -rw-r--r-- | scss/mixins/_progress.scss | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/package.json b/package.json index 5599e0fad..c19bd8d89 100644 --- a/package.json +++ b/package.json @@ -64,7 +64,7 @@ "grunt-stamp": "^0.1.0", "load-grunt-tasks": "~3.1.0", "markdown-it": "^4.0.1", - "mq4-hover-shim": "^0.1.0", + "mq4-hover-shim": "^0.2.0", "npm-shrinkwrap": "^200.1.0", "time-grunt": "^1.1.0" }, diff --git a/scss/_custom-forms.scss b/scss/_custom-forms.scss index ceda72979..64dd73683 100644 --- a/scss/_custom-forms.scss +++ b/scss/_custom-forms.scss @@ -213,7 +213,7 @@ } // IE9 hack to hide the arrow -@media screen and ("min-width:0\0") { +@media screen and (min-width:0\0) { .select select { z-index: 1; padding: .5rem 1.5rem .5rem 1rem; diff --git a/scss/_progress.scss b/scss/_progress.scss index c99b5af92..3c22e23ef 100644 --- a/scss/_progress.scss +++ b/scss/_progress.scss @@ -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); @@ -116,7 +116,7 @@ @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; @@ -134,7 +134,7 @@ .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; } diff --git a/scss/mixins/_progress.scss b/scss/mixins/_progress.scss index 9c3212ae8..802e179a4 100644 --- a/scss/mixins/_progress.scss +++ b/scss/mixins/_progress.scss @@ -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; } |
