US_User
US_User

Reputation: 57

how to customize the dojo tooltip label

enter image description here

I need to add the tooltip foe dojo widget like this. But dojo tooltip shows the their own style. I need to customize the my given style.Refer the picture. How do that using css or any other else.

Upvotes: 0

Views: 1831

Answers (1)

djna
djna

Reputation: 55897

Use CSS, provide your own styling over-riding the styles in dijit/themes/dijit.css

for example the default container styling is

.dijitTooltipContainer {
    border: solid black 2px;
    background: #b8b5b5;
    color: black;
    font-size: small;
 }

Upvotes: 3

Related Questions