Render disabled mxField textareas as disabled
Fixes https://github.com/vector-im/riot-web/issues/8440
This commit is contained in:
parent
90768ee3b7
commit
e5934c12b4
1 changed files with 3 additions and 1 deletions
|
@ -112,7 +112,9 @@ limitations under the License.
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_Field select:disabled,
|
.mx_Field select:disabled,
|
||||||
.mx_Field input:disabled {
|
.mx_Field input:disabled,
|
||||||
|
.mx_Field textarea:disabled,
|
||||||
|
.mx_Field textarea:disabled + label {
|
||||||
background-color: $field-focused-label-bg-color;
|
background-color: $field-focused-label-bg-color;
|
||||||
color: $greyed-fg-color;
|
color: $greyed-fg-color;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue