summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAsaad Mahmood <asaadmahmood@users.noreply.github.com>2017-05-19 18:34:27 +0500
committerHarrison Healey <harrisonmhealey@gmail.com>2017-05-19 09:34:27 -0400
commitc998fd4f52ba1d03e8fc0d7b39ced5202ce35dfc (patch)
tree3032c061dca694eabb178f90151cfcbd9c6d1b81
parent2a146766f0fda210d82c48e3aef578a332c21cbb (diff)
downloadchat-c998fd4f52ba1d03e8fc0d7b39ced5202ce35dfc.tar.gz
chat-c998fd4f52ba1d03e8fc0d7b39ced5202ce35dfc.tar.bz2
chat-c998fd4f52ba1d03e8fc0d7b39ced5202ce35dfc.zip
Bug fixes (#6439)
* PLT-5863 - Fixing overflow in modals * PLT-6545 - Fix for Code block tag on mobile * PLT-6549 - Fixing integrations UI * PLT-6506 - Large embedded images producting scroll
-rw-r--r--webapp/sass/components/_modal.scss9
-rw-r--r--webapp/sass/responsive/_desktop.scss4
-rw-r--r--webapp/sass/responsive/_mobile.scss7
3 files changed, 16 insertions, 4 deletions
diff --git a/webapp/sass/components/_modal.scss b/webapp/sass/components/_modal.scss
index 6e54d60ff..fc1584ea9 100644
--- a/webapp/sass/components/_modal.scss
+++ b/webapp/sass/components/_modal.scss
@@ -12,6 +12,7 @@
.modal-body {
max-height: calc(90vh - 62px);
+ overflow: auto;
padding: 20px 15px;
}
@@ -28,16 +29,16 @@
}
.edit-post-footer {
+ display: inline-block;
font-size: 13px;
position: relative;
- display: inline-block;
.post-error {
- position: relative;
+ @include opacity(.55);
+ font-size: .85em;
font-weight: normal;
margin-bottom: 0;
- font-size: .85em;
- @include opacity(.55);
+ position: relative;
top: 3px;
}
}
diff --git a/webapp/sass/responsive/_desktop.scss b/webapp/sass/responsive/_desktop.scss
index 891431f20..a96685c87 100644
--- a/webapp/sass/responsive/_desktop.scss
+++ b/webapp/sass/responsive/_desktop.scss
@@ -97,6 +97,10 @@
}
}
}
+
+ .integration-option {
+ width: 280px;
+ }
}
@media (min-width: 992px) {
diff --git a/webapp/sass/responsive/_mobile.scss b/webapp/sass/responsive/_mobile.scss
index 5a0494dac..9c442543e 100644
--- a/webapp/sass/responsive/_mobile.scss
+++ b/webapp/sass/responsive/_mobile.scss
@@ -1,6 +1,12 @@
@charset 'UTF-8';
@media screen and (max-width: 768px) {
+ #post-list {
+ .markdown-inline-img {
+ max-width: 100%;
+ }
+ }
+
.member-role .member-menu,
.member-drop .member-menu {
right: 0;
@@ -181,6 +187,7 @@
@include opacity(.6);
@include transition(none);
display: block;
+ position: relative;
}
.post-code {