I have a simple jQuery Mobile form where I have text fields that you can turn off or on depending on some conditions. The normal text box looks like this:

and disabled looks like this:

I would like to make the text in the disabled field a little more readable. How can i do this?
HTML
<asp:Label ID="lblCityPostal" AssociatedControlID="txtCityPostal" runat="server" Text="City"></asp:Label> <div class="clear"> </div> <asp:TextBox ID="txtCityPostal" runat="server">
Decision
As shown below, I use the following CSS:
input.regTxt:disabled { font-weight:bold; }
I added CssClass="regTxt" to all the text fields.
source share