Fix not all content in reply panel visible due to panel overflowing on small Androids with keyboard up
This commit is contained in:
parent
292d436eaa
commit
59e55a1fa7
|
@ -86,6 +86,7 @@ display: none;
|
||||||
}
|
}
|
||||||
// The various states
|
// The various states
|
||||||
&.open {
|
&.open {
|
||||||
|
max-height: 100%; // ensure no overflow e.g. on small Android
|
||||||
height: 270px;
|
height: 270px;
|
||||||
}
|
}
|
||||||
&.closed {
|
&.closed {
|
||||||
|
@ -155,6 +156,7 @@ display: none;
|
||||||
// a small screen mobile device
|
// a small screen mobile device
|
||||||
&.edit-title {
|
&.edit-title {
|
||||||
&.open {
|
&.open {
|
||||||
|
max-height: 100%; // ensure no overflow e.g. on small Android
|
||||||
height: 250px;
|
height: 250px;
|
||||||
}
|
}
|
||||||
.contents {
|
.contents {
|
||||||
|
|
Loading…
Reference in New Issue