Select to view content in your preferred language

cant see text in drawing toolbar tooltip!

1197
1
Jump to solution
11-12-2012 07:42 AM
evanpicard
Emerging Contributor
    tb = new esri.toolbars.Draw(map, {     showTooltips: true     });             dojo.connect(tb, "onDrawEnd", calcRepsPoly);


I'm using the above to create a tooltip for the drawing toolbar.  I can barely see the text in the tooltip.
Where can I set a font color?
[ATTACH=CONFIG]19229[/ATTACH]
0 Kudos
1 Solution

Accepted Solutions
derekswingley1
Deactivated User
It's probably a CSS issue. Are you defining text color as an almost white color somewhere?

The drawing toolbar tooltip element is a div with class="tooltip" so you could use:
div.tooltip {   color: #777; }


to specify some other color for the text.

View solution in original post

1 Reply
derekswingley1
Deactivated User
It's probably a CSS issue. Are you defining text color as an almost white color somewhere?

The drawing toolbar tooltip element is a div with class="tooltip" so you could use:
div.tooltip {   color: #777; }


to specify some other color for the text.