Dropdown/Lookup Selected Text

I saw another topic that had help in the CSS to change the size of the items in a drop down, but the selected text is not taking the Font Size setting. How do I get this to use 12px like the options:

17%20PM

Hello @sphilson,

You can change the font size of the selected option using this CSS code:

span.k-input {
    font-size: 12px !important;
}

This worked for regular Dropdowns (ones based on Choice fields) but Lookup fields are still not applying this.

Hello @sphilson,

Yes, I'm sorry. Lookup field value has a different CSS class. Please try out this CSS code:

span.k-widget.k-combobox {
     font-size: 12px !important;
}