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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/core/css
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2018-07-17 12:24:21 +0300
committerMorris Jobke <hey@morrisjobke.de>2018-07-21 00:38:04 +0300
commita9f65390f664b1ffea6a906177fd0f593f3601b3 (patch)
tree69d3fc60c6dd1853af92264226010d74ce448308 /core/css
parentecaf4d7008eacc06e3fdfde7e1d94553ef655d67 (diff)
Widen left navigation to 300px and set max-width of right sidebar to 500px
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'core/css')
-rw-r--r--core/css/apps.scss10
-rw-r--r--core/css/variables.scss5
2 files changed, 6 insertions, 9 deletions
diff --git a/core/css/apps.scss b/core/css/apps.scss
index d35ef25ecaf..acbcabcab4e 100644
--- a/core/css/apps.scss
+++ b/core/css/apps.scss
@@ -633,7 +633,8 @@ kbd {
*/
#app-sidebar {
width: 27vw;
- min-width: $sidebar-width;
+ min-width: $sidebar-min-width;
+ max-width: $sidebar-max-width;
display: block;
position: relative;
background: var(--color-main-background);
@@ -670,8 +671,6 @@ kbd {
/* restrict height of settings and make scrollable */
max-height: 300px;
overflow-y: auto;
- border-right: 1px solid var(--color-border);
- width: 250px;
box-sizing: border-box;
/* display input fields at full width */
@@ -699,8 +698,6 @@ kbd {
}
#app-settings-header {
- border-right: 1px solid var(--color-border);
- width: 250px;
box-sizing: border-box;
background-color: var(--color-main-background);
}
@@ -1026,7 +1023,7 @@ $popovericon-size: 16px;
}
}
-
+
/* CONTENT LIST ------------------------------------------------------------ */
.app-content-list {
width: 300px;
@@ -1179,4 +1176,3 @@ $popovericon-size: 16px;
}
}
}
-
diff --git a/core/css/variables.scss b/core/css/variables.scss
index 14e3dc663fc..b6bffea9739 100644
--- a/core/css/variables.scss
+++ b/core/css/variables.scss
@@ -79,5 +79,6 @@ $font-face: 'Open Sans', Frutiger, Calibri, 'Myriad Pro', Myriad, sans-serif !de
// various structure data
$header-height: 50px;
-$navigation-width: 250px;
-$sidebar-width: 300px; \ No newline at end of file
+$navigation-width: 300px;
+$sidebar-min-width: 300px;
+$sidebar-max-width: 500px;