Home > Enterprise >  Tooltip text color bootstrap Vue
Tooltip text color bootstrap Vue

Time:11-23

Trying to change the color of the tooltip text from default to red

enter image description here

Payment initiated during night time (00:00 – 06:00) needs to be red

CodePudding user response:

Please add new class if you want or you can use the current same class. Below is the example where I have used class name as redtexttooltip:

Example code:

.redtexttooltip   .tooltip > .tooltip-inner {color: #f00;}

Please check and let me know if you find any issues

  • Related