1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-10-20 18:32:41 +00:00

Improve side nav show/hide on window resize

This commit is contained in:
Daniel Pan
2016-05-04 21:31:12 +08:00
parent 374edec89b
commit 34e5709c16
2 changed files with 19 additions and 6 deletions

View File

@@ -675,6 +675,7 @@ textarea:-moz-placeholder {/* for FF */
background: #f8f8f8;
width:300px;
position:fixed;
left:-300px;
top:0;
bottom:0;
z-index:1;
@@ -684,6 +685,11 @@ textarea:-moz-placeholder {/* for FF */
border-right:1px solid #eee;
}
}
.side-tabnav {
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.side-tabnav .hd {
margin-bottom:0.5em;
}