mirror of
https://github.com/tenrok/bootstrap.git
synced 2026-06-11 18:02:28 +03:00
Fix #14936: Use correct left/right and margin on tooltip arrows
This commit is contained in:
+8
-4
@@ -49,13 +49,15 @@
|
|||||||
}
|
}
|
||||||
&.top-left .tooltip-arrow {
|
&.top-left .tooltip-arrow {
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
left: @tooltip-arrow-width;
|
right: @tooltip-arrow-width;
|
||||||
|
margin-bottom: -@tooltip-arrow-width;
|
||||||
border-width: @tooltip-arrow-width @tooltip-arrow-width 0;
|
border-width: @tooltip-arrow-width @tooltip-arrow-width 0;
|
||||||
border-top-color: @tooltip-arrow-color;
|
border-top-color: @tooltip-arrow-color;
|
||||||
}
|
}
|
||||||
&.top-right .tooltip-arrow {
|
&.top-right .tooltip-arrow {
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
right: @tooltip-arrow-width;
|
left: @tooltip-arrow-width;
|
||||||
|
margin-bottom: -@tooltip-arrow-width;
|
||||||
border-width: @tooltip-arrow-width @tooltip-arrow-width 0;
|
border-width: @tooltip-arrow-width @tooltip-arrow-width 0;
|
||||||
border-top-color: @tooltip-arrow-color;
|
border-top-color: @tooltip-arrow-color;
|
||||||
}
|
}
|
||||||
@@ -82,13 +84,15 @@
|
|||||||
}
|
}
|
||||||
&.bottom-left .tooltip-arrow {
|
&.bottom-left .tooltip-arrow {
|
||||||
top: 0;
|
top: 0;
|
||||||
left: @tooltip-arrow-width;
|
right: @tooltip-arrow-width;
|
||||||
|
margin-top: -@tooltip-arrow-width;
|
||||||
border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;
|
border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;
|
||||||
border-bottom-color: @tooltip-arrow-color;
|
border-bottom-color: @tooltip-arrow-color;
|
||||||
}
|
}
|
||||||
&.bottom-right .tooltip-arrow {
|
&.bottom-right .tooltip-arrow {
|
||||||
top: 0;
|
top: 0;
|
||||||
right: @tooltip-arrow-width;
|
left: @tooltip-arrow-width;
|
||||||
|
margin-top: -@tooltip-arrow-width;
|
||||||
border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;
|
border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;
|
||||||
border-bottom-color: @tooltip-arrow-color;
|
border-bottom-color: @tooltip-arrow-color;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user