- Style for read only form items (after submit is pressed).
- Fixed firefox issue lower 35 with drop down elements.
This commit is contained in:
parent
c6a051af43
commit
baf7b1ab3b
1 changed files with 9 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue