summaryrefslogtreecommitdiffstats
path: root/webapp/sass
diff options
context:
space:
mode:
authorHarrison Healey <harrisonmhealey@gmail.com>2016-11-04 19:11:40 -0400
committerGitHub <noreply@github.com>2016-11-04 19:11:40 -0400
commit428444d1852f3949ece0a9f6b73843f46c4a0fb7 (patch)
tree0bfa55e9e74bbf32849954ced5b263f1035d2799 /webapp/sass
parent18745b2d5c1899bc279696548cb3ebecf7c6b90f (diff)
downloadchat-428444d1852f3949ece0a9f6b73843f46c4a0fb7.tar.gz
chat-428444d1852f3949ece0a9f6b73843f46c4a0fb7.tar.bz2
chat-428444d1852f3949ece0a9f6b73843f46c4a0fb7.zip
PLT-4459 Fixed not being able to scroll on mobile after autocomplete is shown (#4464)
* Fixed not being able to scroll on mobile after autocomplete is shown * Fixed SuggestionLists not being scrollable on iOS
Diffstat (limited to 'webapp/sass')
-rw-r--r--webapp/sass/components/_popover.scss1
-rw-r--r--webapp/sass/components/_suggestion-list.scss1
-rw-r--r--webapp/sass/responsive/_mobile.scss8
3 files changed, 2 insertions, 8 deletions
diff --git a/webapp/sass/components/_popover.scss b/webapp/sass/components/_popover.scss
index 4ff72da55..408f0ffd0 100644
--- a/webapp/sass/components/_popover.scss
+++ b/webapp/sass/components/_popover.scss
@@ -79,6 +79,7 @@
.popover-content {
padding: 10px;
position: relative;
+ -webkit-overflow-scrolling: touch;
}
}
diff --git a/webapp/sass/components/_suggestion-list.scss b/webapp/sass/components/_suggestion-list.scss
index 51f4d2b02..d4cd9ef05 100644
--- a/webapp/sass/components/_suggestion-list.scss
+++ b/webapp/sass/components/_suggestion-list.scss
@@ -19,6 +19,7 @@
overflow-y: scroll;
padding-bottom: 5px;
width: 100%;
+ -webkit-overflow-scrolling: touch;
.command {
border-bottom: 1px solid $light-gray;
diff --git a/webapp/sass/responsive/_mobile.scss b/webapp/sass/responsive/_mobile.scss
index 7c13de1ba..d18295dc4 100644
--- a/webapp/sass/responsive/_mobile.scss
+++ b/webapp/sass/responsive/_mobile.scss
@@ -107,14 +107,6 @@
margin-right: 0 !important;
}
- #post-list {
- .post-list-holder-by-time {
- .modal-open & {
- @include clearfix;
- }
- }
- }
-
.post-code__language {
@include opacity(.6);
@include transition(none);