summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2014-06-05 21:18:21 +0200
committerJan-Christoph Borchardt <hey@jancborchardt.net>2014-06-05 21:19:28 +0200
commit9063a25bb44d43b30cb10372b5b33901a4922e0e (patch)
treed1369b2b0bb0788debbf8b890bacba6c4039315b
parent9748597215813e4f501f6d16128af6104af79712 (diff)
downloadnextcloud-server-9063a25bb44d43b30cb10372b5b33901a4922e0e.tar.gz
nextcloud-server-9063a25bb44d43b30cb10372b5b33901a4922e0e.zip
slightly widen sidebar to 250px, works better with apps and on mobile
-rw-r--r--apps/files/css/files.css2
-rw-r--r--core/css/apps.css4
-rw-r--r--core/css/mobile.css2
-rw-r--r--core/js/js.js2
-rw-r--r--settings/css/settings.css2
5 files changed, 6 insertions, 6 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css
index acdeaf17fde..46f1966e08c 100644
--- a/apps/files/css/files.css
+++ b/apps/files/css/files.css
@@ -97,7 +97,7 @@
* to be more flexible / relative
*/
#body-user .app-files #controls {
- left: 230px; /* sidebar width */
+ left: 250px; /* sidebar width */
position: fixed;
padding-left: 0px;
}
diff --git a/core/css/apps.css b/core/css/apps.css
index f48750545f3..ebb0c269000 100644
--- a/core/css/apps.css
+++ b/core/css/apps.css
@@ -18,7 +18,7 @@
/* Navigation: folder like structure */
#app-navigation {
- width: 230px;
+ width: 250px;
height: 100%;
float: left;
-moz-box-sizing: border-box; box-sizing: border-box;
@@ -193,7 +193,7 @@
/* settings area */
#app-settings {
position: fixed;
- width: 229px;
+ width: 249px;
bottom: 0;
border-top: 1px solid #ccc;
}
diff --git a/core/css/mobile.css b/core/css/mobile.css
index e7e646ed88f..1e048cd766b 100644
--- a/core/css/mobile.css
+++ b/core/css/mobile.css
@@ -73,7 +73,7 @@
}
#app-navigation {
- width: 230px !important;
+ width: 250px !important;
}
#app-content {
diff --git a/core/js/js.js b/core/js/js.js
index 5c14cf34bb3..efc28e88212 100644
--- a/core/js/js.js
+++ b/core/js/js.js
@@ -1137,7 +1137,7 @@ function initCore() {
var snapper = new Snap({
element: document.getElementById('app-content'),
disable: 'right',
- maxPosition: 230
+ maxPosition: 250
});
$('#app-content').prepend('<div id="app-navigation-toggle" class="icon-menu" style="display:none;"></div>');
$('#app-navigation-toggle').click(function(){
diff --git a/settings/css/settings.css b/settings/css/settings.css
index cd81cfb2b3d..638d2fc576b 100644
--- a/settings/css/settings.css
+++ b/settings/css/settings.css
@@ -9,7 +9,7 @@ input#openid, input#webdav { width:20em; }
-moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
position: fixed;
right: 0;
- left: 230px;
+ left: 250px;
height: 44px;
padding: 0; margin: 0;
background: #eee; border-bottom: 1px solid #e7e7e7;