I am trying to customize the appearance of a bootstrap tooltip. I have successfully styled the body of the tooltip, but I am struggling to figure out how to style the arrow as shown in the image below.
Click here to see the Image for reference
Visit this Bootply link for more information
Here is what I have managed to achieve so far:
.tooltip>.tooltip-inner {
background-color: $tool-tip;
color: $text-color;
border: 2px solid $tool-tip-border;
font-weight: 300;
font-size: 14px;
border-radius: 10px;
padding: 15px 25px;
max-width: 240px;
}
.tooltip.bottom >.tooltip-arrow {
top: 0;
left: 50%;
margin-left: -5px;
border-bottom-color: #000000;
border-width: 0 5px 5px;
}