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:
authorBen Vinegar <ben@benv.ca>2012-06-26 04:35:42 +0400
committerBen Vinegar <ben@benv.ca>2012-06-26 04:35:42 +0400
commit3761d50c5a4bfd2b518cd6ab68ef3474e191ee6d (patch)
treeb1993447374496d256ed8a985bd39e5ea01b05c8 /less
parent857b8fb8be81178d14f59c126c1381b09aff7c0f (diff)
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 c3b57ed142..9027fbcbf1 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;