I installed bootstrap v4 beta and with it popper.js library (tooltip.js). I am trying to use this tooltip feature. So I managed to create it, but I canβt change its appearance / style for me. I have looked through their documentation several times, but I cannot figure it out. (I just hate the so-called "documentation", which has no examples). So here is my html:
<span data-toggle="tooltip" data-placement="right" title="Tooltip on right">Simple Task Management</span>
I activated it when switching data in js:
$(function() {
$('[data-toggle="tooltip"]').tooltip()
})
I noticed that when a tooltip appears, a new div is created using the "tooltip ..." class, so I thought I could target that class and create it in my scss, so
.tooltip {
background-color: #DB2828;
color: $green;
}
, , , ... :

... - ? .