remove bottom: 0 to prevent the menu form overlapping the whole element. This happens if a folder has entries, the menu expands to the very bottom and overlaps all entries and makes them impossible to click

fix input width which was changed likely with the icon PR

use calc because firefox and chrome have different scrollbar widths which causes firefox to push the button into the next row while everything is well in chrome

add normal width for IE8
This commit is contained in:
Bernhard Posselt 2014-09-12 02:12:18 +02:00 committed by Lukas Reschke
parent 31898aa635
commit 80ce598bc3

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: 190px;
width: calc(100% - 36px);
padding: 5px;
margin-right: 0;
height: 38px;