Merge pull request #11040 from owncloud/fix-app-menu-overlapp

Remove bottom: 0 from app-navigation-entry-utils to prevent the utils form overlapping the whole element....
This commit is contained in:
Jan-Christoph Borchardt 2014-09-15 23:50:30 +02:00
commit 513fb05947
2 changed files with 6 additions and 2 deletions

View File

@ -189,7 +189,6 @@
position: absolute;
top: 0;
right: 0;
bottom: 0;
z-index: 105;
}
@ -335,7 +334,8 @@
#app-navigation .app-navigation-entry-edit input {
border-bottom-right-radius: 0;
border-top-right-radius: 0;
width: 204px;
width: 204px; /* fallback for IE8 */
width: calc(100% - 36px);
padding: 5px;
margin-right: 0;
height: 38px;

View File

@ -105,3 +105,7 @@ select {
overflow-y: auto;
}
.ie8 #app-navigation .app-navigation-entry-edit input {
line-height: 38px;
}