Select to view content in your preferred language

Measurement tool css

731
3
08-19-2011 05:53 AM
AndreSmit
Emerging Contributor
I'm trying to set the font of the units in the measurement tool (see below) via css. Any suggestions.

0 Kudos
3 Replies
HemingZhu
Frequent Contributor
I'm trying to set the font of the units in the measurement tool (see below) via css. Any suggestions.



Measurement Widget has a unitDropDown css class used to define the font used by the unit drop down list. Overwrite it with the font choose.
0 Kudos
AndreSmit
Emerging Contributor
Thanks hzhu

The following changes the font of the dropdown's "header" but not the "elements" in the dropdown.

#measurementPane .unitDropDown{
    font-size: smaller;
}
0 Kudos
HemingZhu
Frequent Contributor
Thanks hzhu

The following changes the font of the dropdown's "header" but not the "elements" in the dropdown.

#measurementPane .unitDropDown{
    font-size: smaller;
}

Try this:
.unitDropDown
{
    font-size: smaller !important;
}
It worked on me.
0 Kudos