diff options
author | Bernhard Posselt <dev@bernhard-posselt.com> | 2014-09-12 02:12:18 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2014-09-15 12:53:33 +0200 |
commit | 80ce598bc30e7265f62279824444d5ee1800f38f (patch) | |
tree | c2f991457b841a81ad7e08ee6c51c62517a16f69 /core/css | |
parent | 31898aa63548be8492b826b9bac6dc0f8bca8dee (diff) | |
download | nextcloud-server-80ce598bc30e7265f62279824444d5ee1800f38f.tar.gz nextcloud-server-80ce598bc30e7265f62279824444d5ee1800f38f.zip |
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
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/apps.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/css/apps.css b/core/css/apps.css index 2042401489f..4638c453964 100644 --- a/core/css/apps.css +++ b/core/css/apps.css @@ -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; |