Resize font in lightbox fields.

Hello!

How can I reduce the font size of fields in the lightbox?
This picture is taken from Firefox.

With Safari no size problems…

Thank youuuu…

Hello.

In this case you could define css styles with necessary font style.
For example:

.dhx_cal_ltext textarea{
		font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
		font-style: normal;
		font-size: 12px;
		font-weight: normal;
}

Thank you!!!