- Style for read only form items (after submit is pressed).

- Fixed firefox issue lower 35 with drop down elements.
This commit is contained in:
Martin Edenhofer 2015-06-03 13:58:43 +02:00
parent c6a051af43
commit baf7b1ab3b

View file

@ -818,6 +818,14 @@ textarea,
padding-right: 34px;
}
.form-control[disabled],
.form-control[readonly] {
cursor: not-allowed;
background-color: #fff;
color: #d5d5d5;
opacity: 1;
}
.form-control + .icon-arrow-down {
position: absolute;
right: 12px;
@ -844,7 +852,7 @@ textarea,
*/
html.ff-lt-35 .form-control + .arrow {
html.ff-lt-35 .form-control + .icon-arrow-down {
display: none;
}