Skip to content

Instantly share code, notes, and snippets.

@dsnoeck
dsnoeck / bootstrap-tooltip-border.less
Last active December 1, 2021 16:17 — forked from jhesyong/bootstrap-tooltip-border.scss
Add border to bootstrap tooltip, customise border color, background color and text color.
@tooltip-border-width: .063em;
@tooltip-border-color: #ccc;
@tooltip-background-color: #fff;
@tooltip-inner-color: #555;
@tooltip-arrow-border-width: @tooltip-arrow-width + @tooltip-border-width;
.tooltip .tooltip-inner {
background-color: @tooltip-background-color;
border: @tooltip-border-width solid @tooltip-border-color;
color: @tooltip-inner-color;