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 <markdotto@gmail.com>2012-07-01 09:05:03 +0400
committerMark Otto <markdotto@gmail.com>2012-07-01 09:05:03 +0400
commitfb29075926b08ed57d1fc6f3ff3c013c5f87d2b3 (patch)
tree2c2a114c7bd7f439ac5802e69d22266f4b12e924 /less
parentcd2d82150cc27c1f81d2394a22efbf2dbec0e7be (diff)
parent3761d50c5a4bfd2b518cd6ab68ef3474e191ee6d (diff)
Merge pull request #3976 from benvinegar/master
Fix Opera .clearfix bug when using contenteditable
Diffstat (limited to 'less')
-rw-r--r--less/mixins.less3
1 files changed, 3 insertions, 0 deletions
diff --git a/less/mixins.less b/less/mixins.less
index 733dfd08b4..6eaffa3e31 100644
--- a/less/mixins.less
+++ b/less/mixins.less
@@ -15,6 +15,9 @@
&:after {
display: table;
content: "";
+ // Fixes Opera/contenteditable bug:
+ // http://nicolasgallagher.com/micro-clearfix-hack/#comment-36952
+ line-height: 0;
}
&:after {
clear: both;