Re-Farbe Tooltips in Bootstrap 4

Ich versuche ein re-Haut/re-format ein tooltip in der Bootstrap-4, und die originelle Art und Weise zu tun, es scheint nicht mehr zu funktionieren. Momentan mache ich das:

.tooltip-inner {
    background: #7abcff; 
    background: -webkit-linear-gradient(top, #7abcff 0%,#60abf8 44%,#4096ee 100%); 
    background:    -moz-linear-gradient(top, #7abcff 0%,#60abf8 44%,#4096ee 100%); 
    background:   linear-gradient(to bottom, #7abcff 0%,#60abf8 44%,#4096ee 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7abcff', endColorstr='#4096ee',GradientType=0 ); 
    color: #fff;
    font-family: 'Roboto', Arial, sans-serif;
}
.tooltip.top .tooltip-arrow {
    border-top-color: #7abcff;
}

.tooltip-inner ist in Ordnung, aber .tooltip.top .tooltip-arrow nicht; es bleibt schwarz. Ich gehe davon aus, dass .tooltip.top ist der Pfeil auf der Unterseite ausgerichtet tooltip.

Jegliche Hilfe würde sehr geschätzt werden

InformationsquelleAutor Takuhii | 2016-03-21
Schreibe einen Kommentar