mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-01 13:24:25 +01:00
Fix #14936: Use correct left/right and margin on tooltip arrows
This commit is contained in:
parent
4102a67f33
commit
87edaf295c
@ -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;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user