Merge pull request #14970 from owncloud/sidebar-enhancements
sidebar fixes
This commit is contained in:
commit
e188f0e436
2 changed files with 10 additions and 2 deletions
|
@ -105,8 +105,14 @@
|
|||
|
||||
/* move Deleted Files to bottom of sidebar */
|
||||
.nav-trashbin {
|
||||
position: absolute !important;
|
||||
bottom: 0;
|
||||
position: fixed !important;
|
||||
bottom: 44px;
|
||||
width: inherit !important;
|
||||
background-color: #f5f5f5;
|
||||
}
|
||||
/* double padding to account for Deleted files entry, issue with Firefox */
|
||||
.app-files #app-navigation > ul li:nth-last-child(2) {
|
||||
margin-bottom: 44px;
|
||||
}
|
||||
|
||||
#filestable tbody tr { background-color:#fff; height:40px; }
|
||||
|
|
|
@ -32,7 +32,9 @@
|
|||
#app-navigation > ul {
|
||||
position: relative;
|
||||
height: 100%;
|
||||
width: inherit;
|
||||
overflow: auto;
|
||||
padding-bottom: 44px;
|
||||
-moz-box-sizing: border-box; box-sizing: border-box;
|
||||
}
|
||||
#app-navigation li {
|
||||
|
|
Loading…
Reference in a new issue