]> source.dussan.org Git - nextcloud-server.git/commitdiff
adjust CSS to styleguide, remove left padding, prevent user-selection
authorJan-Christoph Borchardt <hey@jancborchardt.net>
Thu, 5 Jun 2014 11:12:07 +0000 (13:12 +0200)
committerJan-Christoph Borchardt <hey@jancborchardt.net>
Thu, 5 Jun 2014 11:12:07 +0000 (13:12 +0200)
core/css/apps.css
core/css/header.css
core/css/styles.css

index 4bcf89c7ee4d08dc5cc28cad0345a6349b6cd613..f48750545f3b740c58eacae038479121562e0a4c 100644 (file)
@@ -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;
        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;
 
 
 
+
+
+/* APP-CONTENT ---------------------------------------------------------------*/
+
+
 /* Part where the content will be loaded into */
 #app-content {
        position: relative;
index 83612c674456d51572676097c72f4c6e005a1dd3..d04895d27cffbd9d99c594d729d94e6d495d1f3a 100644 (file)
 
 /* NAVIGATION --------------------------------------------------------------- */
 
-#content-wrapper {
-       padding-left: 0;
-}
-
 #navigation {
        position: fixed;
        top: 45px;
index 6eb09e6e9423889bb0335e6e8ed5e2d1296abbc2..082a6496a28029ed142bc099f9c77bbc12b642a4 100644 (file)
@@ -253,6 +253,10 @@ input[type="submit"].enabled {
        background: #eee;
        border-bottom: 1px solid #e7e7e7;
        z-index: 50;
+       -webkit-user-select: none;
+       -moz-user-select: none;
+       -ms-user-select: none;
+       user-select: none;
 }
 #controls .button,
 #controls button,
@@ -272,14 +276,22 @@ input[type="submit"].enabled {
        display: none;
 }
 
-#content { position:relative; height:100%; width:100%; }
+#content {
+       position: relative;
+       height: 100%;
+       width: 100%;
+}
 #content .hascontrols {
        position: relative;
        top: 45px;
 }
 #content-wrapper {
-       position:absolute; height:100%; width:100%; padding-left:80px; padding-top: 45px;
-       -moz-box-sizing:border-box; box-sizing:border-box;
+       position: absolute;
+       height: 100%;
+       width: 100%;
+       padding-top: 45px;
+       -moz-box-sizing:border-box;
+       box-sizing:border-box;
 }
 
 #emptycontent {