Skip to content
Snippets Groups Projects
Commit 513fb059 authored by Jan-Christoph Borchardt's avatar Jan-Christoph Borchardt
Browse files

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....
parents 59c79781 d6cb489b
Branches
No related tags found
No related merge requests found
......@@ -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;
......
......@@ -105,3 +105,7 @@ select {
overflow-y: auto;
}
.ie8 #app-navigation .app-navigation-entry-edit input {
line-height: 38px;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment