Skip to content

Instantly share code, notes, and snippets.

@MukhtaarAziz
Last active June 19, 2022 08:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MukhtaarAziz/0b7427326a572c07a2de2eadbeb72ff0 to your computer and use it in GitHub Desktop.
Save MukhtaarAziz/0b7427326a572c07a2de2eadbeb72ff0 to your computer and use it in GitHub Desktop.
Bootstrap 4.6 Modifications

Bootstrap Style Modifications

Tooltips

https://www.codeply.com/go/BeGG18qglJ/bootstrap-4-tooltip-style

<div class="container">
    <br>
    <a href data-toggle="tooltip" data-placement="right" title="Tooltip on right">Tooltip</a>
</div>
.tooltip-inner {
    background-color: #00cc00;
}
.tooltip.bs-tooltip-right .arrow:before {
    border-right-color: #00cc00 !important;
}
.tooltip.bs-tooltip-left .arrow:before {
    border-right-color: #00cc00 !important;
}
.tooltip.bs-tooltip-bottom .arrow:before {
    border-right-color: #00cc00 !important;
}
.tooltip.bs-tooltip-top .arrow:before {
    border-right-color: #00cc00 !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment