]> source.dussan.org Git - nextcloud-server.git/commitdiff
Fix leftcontent positioning. Ref #1255
authorThomas Tanghus <thomas@tanghus.net>
Sun, 3 Feb 2013 13:44:33 +0000 (14:44 +0100)
committerThomas Tanghus <thomas@tanghus.net>
Sun, 3 Feb 2013 13:44:33 +0000 (14:44 +0100)
apps/files/css/files.css
core/css/styles.css

index 661a2e827a427661f5b2d56982de27f85bf5a8d0..e18836a73892d08595b76fd9db4f50941ee359e2 100644 (file)
@@ -55,7 +55,7 @@
        font-size:1.5em; font-weight:bold;
        color:#888; text-shadow:#fff 0 1px 0;
 }
-table { position:relative; top:37px; width:100%; }
+table { position:relative; width:100%; }
 tbody tr { background-color:#fff; height:2.5em; }
 tbody tr:hover, tbody tr:active, tbody tr.selected { background-color:#f8f8f8; }
 tbody tr.selected { background-color:#eee; }
index 19cfad762686df6b771abbe1fc2a0a3f6068ffa9..685a20ba081c7ee184441de2fcc06a1bf11ba6a5 100644 (file)
@@ -119,7 +119,7 @@ input[type="submit"].enabled { background:#66f866; border:1px solid #5e5; -moz-b
 #select_all{ margin-top:.4em !important;}
 
 /* CONTENT ------------------------------------------------------------------ */
-#controls { padding:0 0.5em; width:100%; top:3.5em; height:2.8em; margin:0; background:#f7f7f7; border-bottom:1px solid #eee; position:fixed; z-index:50; -moz-box-shadow:0 -3px 7px #000; -webkit-box-shadow:0 -3px 7px #000; box-shadow:0 -3px 7px #000; }
+#controls { padding:0 0.5em; width:100%; top:0; height:2.8em; margin:0; background:#f7f7f7; border-bottom:1px solid #eee; position:relative; z-index:50; -moz-box-shadow:0 -3px 7px #000; -webkit-box-shadow:0 -3px 7px #000; box-shadow:0 -3px 7px #000; }
 #controls .button { display:inline-block; }
 
 #content { position:relative; height:100%; width:100%; }
@@ -128,9 +128,9 @@ input[type="submit"].enabled { background:#66f866; border:1px solid #5e5; -moz-b
        -moz-box-sizing:border-box; box-sizing:border-box;
 }
 #leftcontent, .leftcontent {
-       position:fixed; overflow:auto; top:0; width:20em; height:100%;
+       position:relative; overflow:auto; width:20em; height:100%;
        background:#f8f8f8; border-right:1px solid #ddd;
-       -moz-box-sizing:border-box; box-sizing:border-box; padding-top:6.4em;
+       -moz-box-sizing:border-box; box-sizing:border-box;
 }
 #leftcontent li, .leftcontent li { background:#f8f8f8; padding:.5em .8em; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; -webkit-transition:background-color 200ms; -moz-transition:background-color 200ms; -o-transition:background-color 200ms; transition:background-color 200ms; }
 #leftcontent li:hover, #leftcontent li:active, #leftcontent li.active, .leftcontent li:hover, .leftcontent li:active, .leftcontent li.active { background:#eee; }