customer chat: fix FF bug that empty multiline contenteditable has height 0
This commit is contained in:
parent
1cc85105dd
commit
1f64705762
1 changed files with 5 additions and 0 deletions
|
@ -1374,6 +1374,10 @@ textarea,
|
|||
padding: 5px 8px 4px;
|
||||
height: 31px;
|
||||
line-height: 20px;
|
||||
|
||||
&.form-control--multiline {
|
||||
min-height: 31px;
|
||||
}
|
||||
}
|
||||
|
||||
&.form-control--inline {
|
||||
|
@ -1383,6 +1387,7 @@ textarea,
|
|||
|
||||
&.form-control--multiline {
|
||||
height: auto;
|
||||
min-height: 41px;
|
||||
}
|
||||
|
||||
&:focus,
|
||||
|
|
Loading…
Reference in a new issue