summaryrefslogtreecommitdiffstats
path: root/webapp/sass/responsive
diff options
context:
space:
mode:
authorAsaad Mahmood <asaadmahmoodspin@users.noreply.github.com>2016-04-13 20:11:50 +0500
committerChristopher Speller <crspeller@gmail.com>2016-04-13 11:11:50 -0400
commiteff252062a2fb782616473cd785c0d3084efc7d7 (patch)
treebab8fe45764464b043a62f920ac518c0b0de9687 /webapp/sass/responsive
parent51549cc0b261bb113f73976adcadd50048f54233 (diff)
downloadchat-eff252062a2fb782616473cd785c0d3084efc7d7.tar.gz
chat-eff252062a2fb782616473cd785c0d3084efc7d7.tar.bz2
chat-eff252062a2fb782616473cd785c0d3084efc7d7.zip
Multiple UI changes (#2699)
* Adding the sidebar fix * Fixing inner-wrap before outside the app * PLT-2560 - Fixing userlist in system console * Removing sidebar stuff
Diffstat (limited to 'webapp/sass/responsive')
-rw-r--r--webapp/sass/responsive/_mobile.scss24
1 files changed, 13 insertions, 11 deletions
diff --git a/webapp/sass/responsive/_mobile.scss b/webapp/sass/responsive/_mobile.scss
index 21c3135c2..3d30f6d96 100644
--- a/webapp/sass/responsive/_mobile.scss
+++ b/webapp/sass/responsive/_mobile.scss
@@ -739,17 +739,19 @@
.inner-wrap {
@include single-transition(all, .5s, ease);
- &:before {
- //Some trickery in order for the z-index transition to happen immediately on move-in and delayed on move-out.
- background-color: transparent;
- content: '';
- height: 100%;
- left: -15px;
- position: absolute;
- top: 0;
- transition: background-color 0.5s ease, z-index 0s ease 0.5s;
- width: calc(100% + 30px);
- z-index: 0;
+ .app__body & {
+ &:before {
+ //Some trickery in order for the z-index transition to happen immediately on move-in and delayed on move-out.
+ background-color: transparent;
+ content: '';
+ height: 100%;
+ left: -15px;
+ position: absolute;
+ top: 0;
+ transition: background-color 0.5s ease, z-index 0s ease 0.5s;
+ width: calc(100% + 30px);
+ z-index: 0;
+ }
}
&.move--right {