diff options
Diffstat (limited to 'core/css/apps.css')
-rw-r--r-- | core/css/apps.css | 19 |
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; |