I have an @font-face declaration in a CSS file:
@font-face {
src: local("Lucida Console");
fontFamily: plain;
advancedAntiAliasing: true;
}
.plain {
fontFamily: plain;
}
This font makes text appear too high when used in a ComboBox, TextInput, etc.
Perhaps adjusting the baseline or leading might fix that. I've tried several
ideas, nothing had any effect. It would be best to modify the @font-face
declaration or the .plain CSS type declaration.
Mike

