summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2014-09-15 23:50:30 +0200
committerJan-Christoph Borchardt <hey@jancborchardt.net>2014-09-15 23:50:30 +0200
commit513fb0594707d44de14bccd90c737b594a7f594d (patch)
tree79352e7aadbf56518c632a741c17c552ccb3d22d /core
parent59c79781f77d907dc6ce68600884dbdf0d3209b5 (diff)
parentd6cb489b689adbcc98b732fd5e18719790a9f36f (diff)
downloadnextcloud-server-513fb0594707d44de14bccd90c737b594a7f594d.tar.gz
nextcloud-server-513fb0594707d44de14bccd90c737b594a7f594d.zip
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....
Diffstat (limited to 'core')
-rw-r--r--core/css/apps.css4
-rw-r--r--core/css/fixes.css4
2 files changed, 6 insertions, 2 deletions
diff --git a/core/css/apps.css b/core/css/apps.css
index 6aab9ae02c9..b84bbaa8b42 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: 204px; /* fallback for IE8 */
+ width: calc(100% - 36px);
padding: 5px;
margin-right: 0;
height: 38px;
diff --git a/core/css/fixes.css b/core/css/fixes.css
index 12daf251579..5aba741b64b 100644
--- a/core/css/fixes.css
+++ b/core/css/fixes.css
@@ -105,3 +105,7 @@ select {
overflow-y: auto;
}
+.ie8 #app-navigation .app-navigation-entry-edit input {
+ line-height: 38px;
+}
+