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
path: root/less
diff options
context:
space:
mode:
authorMark Otto <markotto@twitter.com>2012-02-17 10:34:30 +0400
committerMark Otto <markotto@twitter.com>2012-02-17 10:34:30 +0400
commit091622644a0c619e1afbb21041c141da30df76b7 (patch)
tree85ee07a734b2c16223be6072a0d401031a0e9cc7 /less
parent6f6adfb52fc2f6043f84ac4fab876592c00b2894 (diff)
bring back checkbox borders to iOS by conditionalizing the border: 0; on it to IE7-9; fix word break on pre in IE
Diffstat (limited to 'less')
-rw-r--r--less/code.less1
-rw-r--r--less/forms.less5
2 files changed, 5 insertions, 1 deletions
diff --git a/less/code.less b/less/code.less
index 35a8ae6b82..e2157d8ab1 100644
--- a/less/code.less
+++ b/less/code.less
@@ -34,6 +34,7 @@ pre {
white-space: pre;
white-space: pre-wrap;
word-break: break-all;
+ word-wrap: break-word;
// Make prettyprint styles more spaced out for readability
&.prettyprint {
diff --git a/less/forms.less b/less/forms.less
index be9dbfaa9c..0a5fa2b867 100644
--- a/less/forms.less
+++ b/less/forms.less
@@ -96,9 +96,12 @@ input[type="radio"] {
margin: 3px 0;
*margin-top: 0; /* IE7 */
line-height: normal;
- border: 0;
cursor: pointer;
.border-radius(0);
+ border: 0 \9; /* IE9 and down */
+}
+input[type="image"] {
+ border: 0;
}
// Reset the file input to browser defaults