summaryrefslogtreecommitdiffstats
path: root/core/css/apps.css
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2014-06-05 13:12:07 +0200
committerJan-Christoph Borchardt <hey@jancborchardt.net>2014-06-05 13:12:07 +0200
commit24641c909ee45e82d5ec7602a3a31e153cbbbb35 (patch)
treea3f92bbc99c146351c07f7fecbb2b0d0ccd7e957 /core/css/apps.css
parent9e56acbdc9c3196f630251938a5e8f5b5c507f2c (diff)
downloadnextcloud-server-24641c909ee45e82d5ec7602a3a31e153cbbbb35.tar.gz
nextcloud-server-24641c909ee45e82d5ec7602a3a31e153cbbbb35.zip
adjust CSS to styleguide, remove left padding, prevent user-selection
Diffstat (limited to 'core/css/apps.css')
-rw-r--r--core/css/apps.css19
1 files changed, 18 insertions, 1 deletions
diff --git a/core/css/apps.css b/core/css/apps.css
index 4bcf89c7ee4..f48750545f3 100644
--- a/core/css/apps.css
+++ b/core/css/apps.css
@@ -1,4 +1,5 @@
-/* ---- APP STYLING ---- */
+/* APP STYLING -------------------------------------------------------------- */
+
#app {
height: 100%;
@@ -8,6 +9,13 @@
-moz-box-sizing: border-box; box-sizing: border-box;
}
+
+
+
+
+/* APP-NAVIGATION ------------------------------------------------------------*/
+
+
/* Navigation: folder like structure */
#app-navigation {
width: 230px;
@@ -17,6 +25,10 @@
background-color: #f8f8f8;
border-right: 1px solid #ccc;
padding-bottom: 44px;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
}
#app-navigation > ul {
position: relative;
@@ -166,6 +178,11 @@
+
+
+/* APP-CONTENT ---------------------------------------------------------------*/
+
+
/* Part where the content will be loaded into */
#app-content {
position: relative;