Cell Editor Style

Hello, I was looking through the dhtmlxgrid_dhx_skyblue.css stylesheet to find out where the editor gets styled, and I can’t seem to find anything that sets the style for the cell when in edit mode. I looked at a previous post of mine(viewtopic.php?f=2&t=31558&p=98948&hilit=editor+style#p98948 ), and it works for combos, but I just want to set a text cell font to look like the font that’s in the cell. How would I do that in the stylesheet?

Thanks,
Scott

the following css works well for me with “ed” cells:

.dhx_combo_edit{ font-size: 16pt !important; }
the following on - for “txt”:

.dhx_textarea{ font-size: 16pt !important; }

Thanks!!! That worked.