Disabled field styling
by Town
HTML
Disabled: <input type="text" class="details-dialog" value="Value" disabled>
CSS
body {
font-family: Arial;
}
input[type="text"][disabled] {
color: black;
font-weight: bold;
border: 0;
background: none;
}