Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <mark.otto@twitter.com>2011-09-02 23:46:47 +0400
committerMark Otto <mark.otto@twitter.com>2011-09-02 23:46:47 +0400
commit298e1b59bbf389ba8ec45de6428f1128ac71114c (patch)
tree4029d75eac4573ea93c2a1d1ba688d2d5315dfd7 /bootstrap-1.2.0.css
parent2f4c84bba976344b8fe198a7613184e32231b66a (diff)
fix broken checkbox in ie7
Diffstat (limited to 'bootstrap-1.2.0.css')
-rw-r--r--bootstrap-1.2.0.css17
1 files changed, 10 insertions, 7 deletions
diff --git a/bootstrap-1.2.0.css b/bootstrap-1.2.0.css
index ffa9bd5104..3d8855b427 100644
--- a/bootstrap-1.2.0.css
+++ b/bootstrap-1.2.0.css
@@ -6,7 +6,7 @@
* http://www.apache.org/licenses/LICENSE-2.0
*
* Designed and built with all the love in the world @twitter by @mdo and @fat.
- * Date: Fri Sep 2 12:35:18 PDT 2011
+ * Date: Fri Sep 2 12:46:27 PDT 2011
*/
/* Reset.less
* Props to Eric Meyer (meyerweb.com) for his CSS reset file. We're using an adapted version here that cuts out some of the reset HTML elements we will never need here (i.e., dfn, samp, etc).
@@ -677,6 +677,9 @@ input[type=checkbox], input[type=radio] {
height: auto;
padding: 0;
margin: 3px 0;
+ *margin-top: 0;
+ /* IE6-7 */
+
line-height: normal;
border: none;
}
@@ -1532,12 +1535,12 @@ footer {
display: inline-block;
background-color: #e6e6e6;
background-repeat: no-repeat;
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(0.25, #ffffff), to(#e6e6e6));
- background-image: -webkit-linear-gradient(#ffffff, #ffffff 0.25, #e6e6e6);
- background-image: -moz-linear-gradient(#ffffff, #ffffff 0.25, #e6e6e6);
- background-image: -ms-linear-gradient(#ffffff, #ffffff 0.25, #e6e6e6);
- background-image: -o-linear-gradient(#ffffff, #ffffff 0.25, #e6e6e6);
- background-image: linear-gradient(#ffffff, #ffffff 0.25, #e6e6e6);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
+ background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
+ background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
+ background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
+ background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
+ background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
padding: 5px 14px 6px;
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);