diff options
| author | Mark Otto <[email protected]> | 2011-09-02 12:46:47 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2011-09-02 12:46:47 -0700 |
| commit | 298e1b59bbf389ba8ec45de6428f1128ac71114c (patch) | |
| tree | 4029d75eac4573ea93c2a1d1ba688d2d5315dfd7 /lib | |
| parent | 2f4c84bba976344b8fe198a7613184e32231b66a (diff) | |
| download | bootstrap-298e1b59bbf389ba8ec45de6428f1128ac71114c.tar.xz bootstrap-298e1b59bbf389ba8ec45de6428f1128ac71114c.zip | |
fix broken checkbox in ie7
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/forms.less | 1 | ||||
| -rw-r--r-- | lib/patterns.less | 2 | ||||
| -rw-r--r-- | lib/preboot.less | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/lib/forms.less b/lib/forms.less index 3fc62f93d..a16844ab1 100644 --- a/lib/forms.less +++ b/lib/forms.less @@ -83,6 +83,7 @@ input[type=radio] { height: auto; padding: 0; margin: 3px 0; + *margin-top: 0; /* IE6-7 */ line-height: normal; border: none; } diff --git a/lib/patterns.less b/lib/patterns.less index 2948c1e2d..413f82178 100644 --- a/lib/patterns.less +++ b/lib/patterns.less @@ -429,7 +429,7 @@ footer { // Button Base cursor: pointer; display: inline-block; - #gradient > .vertical-three-colors(#ffffff, #ffffff, 0.25, darken(#ffffff, 10%)); // Don't use .gradientbar() here since it does a three-color gradient + #gradient > .vertical-three-colors(#ffffff, #ffffff, 25%, darken(#ffffff, 10%)); // Don't use .gradientbar() here since it does a three-color gradient padding: 5px 14px 6px; text-shadow: 0 1px 1px rgba(255,255,255,.75); color: #333; diff --git a/lib/preboot.less b/lib/preboot.less index d270cab05..a922f569c 100644 --- a/lib/preboot.less +++ b/lib/preboot.less @@ -257,7 +257,7 @@ background-repeat: no-repeat; background-image: -webkit-gradient(linear, 0 0, 0 100%, from(@startColor), color-stop(@colorStop, @midColor), to(@endColor)); background-image: -webkit-linear-gradient(@startColor, @midColor @colorStop, @endColor); - background-image: -moz-linear-gradient(@startColor, @midColor @colorStop, @endColor); + background-image: -moz-linear-gradient(top, @startColor, @midColor @colorStop, @endColor); background-image: -ms-linear-gradient(@startColor, @midColor @colorStop, @endColor); background-image: -o-linear-gradient(@startColor, @midColor @colorStop, @endColor); background-image: linear-gradient(@startColor, @midColor @colorStop, @endColor); |
