I've installed bootstrap v4 beta and with it the popper.js (tooltip.js) library. I'm trying to use it's tooltip function. So I managed to make it appear but I can't change it's appearance/style for the life of me. I've looked over their documentation several times but I can't figure it out. (I just hate a so called "documentation" that doesn't have examples).
So here is my html:
<span data-toggle="tooltip" data-placement="right" title="Tooltip on right">Simple Task Management</span>
I activated it on data-toggle in js:
$(function() {
$('[data-toggle="tooltip"]').tooltip()
})
I noticed that when the tooltip appears a new div is created with the class "tooltip ..." so I thought I could target that class and style it in my scss, so:
.tooltip {
background-color: #DB2828;
color: $green;
}
Not my intended styling options, just tested to see it work...well the result:
The same black background with my test background behind it...can someone help me figure this out? Many thanks.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…