aboutsummaryrefslogtreecommitdiff
path: root/docs/assets/css
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2012-04-23 03:05:10 -0700
committerMark Otto <[email protected]>2012-04-23 03:05:10 -0700
commit99a916d5ebfdf5199be0232ac8bf6d569f54f07c (patch)
tree882947ef826d1cf597f28791313b1ee3da32d5e6 /docs/assets/css
parent192cb575da73ed2c056319b27613407729796a4f (diff)
downloadbootstrap-99a916d5ebfdf5199be0232ac8bf6d569f54f07c.tar.xz
bootstrap-99a916d5ebfdf5199be0232ac8bf6d569f54f07c.zip
remove background color from radios and checkboxes for IEs
Diffstat (limited to 'docs/assets/css')
-rw-r--r--docs/assets/css/bootstrap.css8
-rw-r--r--docs/assets/css/docs.css2
2 files changed, 9 insertions, 1 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css
index e0a7640d7..cb7aa3516 100644
--- a/docs/assets/css/bootstrap.css
+++ b/docs/assets/css/bootstrap.css
@@ -800,6 +800,7 @@ input[type="radio"] {
line-height: normal;
cursor: pointer;
+ background-color: transparent;
border: 0 \9;
/* IE9 and down */
@@ -1061,6 +1062,13 @@ textarea[readonly] {
border-color: #ddd;
}
+input[type="radio"][disabled],
+input[type="checkbox"][disabled],
+input[type="radio"][readonly],
+input[type="checkbox"][readonly] {
+ background-color: transparent;
+}
+
.control-group.warning > label,
.control-group.warning .help-block,
.control-group.warning .help-inline {
diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css
index b7e0c8dbf..c9cb00d68 100644
--- a/docs/assets/css/docs.css
+++ b/docs/assets/css/docs.css
@@ -11,7 +11,7 @@
body {
position: relative;
padding-top: 90px;
- background-color: #fff;
+ background-color: red;
background-image: url(../img/grid-18px-masked.png);
background-repeat: repeat-x;
background-position: 0 40px;