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 <markotto@twitter.com>2012-09-18 10:03:18 +0400
committerMark Otto <markotto@twitter.com>2012-09-18 10:03:32 +0400
commitcedb3c7c56887d4ca42296ee193f2ff08dfe9ac4 (patch)
treeef9e28545e2dfb529daa030fb2a30d9a4b1b4d02 /less/popovers.less
parent783f4885ab984acecfcb2a2986158aaa8933ea2d (diff)
fixes #5173: proper popover offsets; added docs examples to enable tests in the future
Diffstat (limited to 'less/popovers.less')
-rw-r--r--less/popovers.less4
1 files changed, 2 insertions, 2 deletions
diff --git a/less/popovers.less b/less/popovers.less
index 2b3f1b0599..a4c4bb0e07 100644
--- a/less/popovers.less
+++ b/less/popovers.less
@@ -21,10 +21,10 @@
.box-shadow(0 5px 10px rgba(0,0,0,.2));
// Offset the popover to account for the popover arrow
- &.top { margin-bottom: 10px; }
+ &.top { margin-top: -10px; }
&.right { margin-left: 10px; }
&.bottom { margin-top: 10px; }
- &.left { margin-right: 10px; }
+ &.left { margin-left: -10px; }
}