aboutsummaryrefslogtreecommitdiff
path: root/less/tooltip.less
diff options
context:
space:
mode:
Diffstat (limited to 'less/tooltip.less')
-rw-r--r--less/tooltip.less24
1 files changed, 24 insertions, 0 deletions
diff --git a/less/tooltip.less b/less/tooltip.less
index 9dba6f04f..790eb1cd3 100644
--- a/less/tooltip.less
+++ b/less/tooltip.less
@@ -47,6 +47,18 @@
border-width: @tooltip-arrow-width @tooltip-arrow-width 0;
border-top-color: @tooltip-arrow-color;
}
+ &.top-left .tooltip-arrow {
+ bottom: 0;
+ left: 5px;
+ border-width: @tooltip-arrow-width @tooltip-arrow-width 0;
+ border-top-color: @tooltip-arrow-color;
+ }
+ &.top-right .tooltip-arrow {
+ bottom: 0;
+ right: 5px;
+ border-width: @tooltip-arrow-width @tooltip-arrow-width 0;
+ border-top-color: @tooltip-arrow-color;
+ }
&.right .tooltip-arrow {
top: 50%;
left: 0;
@@ -68,4 +80,16 @@
border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;
border-bottom-color: @tooltip-arrow-color;
}
+ &.bottom-left .tooltip-arrow {
+ top: 0;
+ left: 5px;
+ border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;
+ border-bottom-color: @tooltip-arrow-color;
+ }
+ &.bottom-right .tooltip-arrow {
+ top: 0;
+ right: 5px;
+ border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;
+ border-bottom-color: @tooltip-arrow-color;
+ }
}