Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/jsxc.nextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/scss
diff options
context:
space:
mode:
authorsualko <klaus@jsxc.org>2017-03-08 16:02:05 +0300
committersualko <klaus@jsxc.org>2017-03-08 16:02:05 +0300
commit528cb7c86f90f10a3dac2f2fd6d964c11ff8e20d (patch)
treec56aa14965eba5c7b9d930e6574126977967b7d0 /scss
parent206d092a999b563dd3f36e48e5dcd88a3493d587 (diff)
use css classes to make room for the roster
Diffstat (limited to 'scss')
-rw-r--r--scss/_oc.scss22
1 files changed, 22 insertions, 0 deletions
diff --git a/scss/_oc.scss b/scss/_oc.scss
index 9dc6688..d6a2b11 100644
--- a/scss/_oc.scss
+++ b/scss/_oc.scss
@@ -182,3 +182,25 @@
opacity: 1;
}
}
+
+@media (min-width: 768px) {
+ #content-wrapper, #filestable > thead {
+ padding-right: 0;
+ transition: padding-right 0.5s;
+ }
+
+ #mainContainer, #odf-toolbar, #app-sidebar {
+ right: 0;
+ transition: right 0.5s;
+ }
+
+ .jsxc-roster-shown {
+ #content-wrapper, #filestable > thead {
+ padding-right: 210px;
+ }
+
+ #mainContainer, #odf-toolbar, #app-sidebar {
+ right: 210px;
+ }
+ }
+}