summaryrefslogtreecommitdiffstats
path: root/core/css/fixes.css
diff options
context:
space:
mode:
authorMorris Jobke <morris.jobke@gmail.com>2013-11-27 16:45:04 +0100
committerMorris Jobke <morris.jobke@gmail.com>2013-11-27 16:45:04 +0100
commit6b3b3d8af4635f24fe8f5d7dc13ce8db81a494af (patch)
tree47200063a88ae08cfd1051a83c6e8c4fc7f57a90 /core/css/fixes.css
parent41c67520302901cdcd9acced16fc315164c701de (diff)
downloadnextcloud-server-6b3b3d8af4635f24fe8f5d7dc13ce8db81a494af.tar.gz
nextcloud-server-6b3b3d8af4635f24fe8f5d7dc13ce8db81a494af.zip
Fix for IE - an ugly horizontal scrollbar appears
* for IE9 the nav bar was too narrow * for other IEs the width of each app element was to wide and cause the horizontal scoll bar - now this content is hidden like before this PR
Diffstat (limited to 'core/css/fixes.css')
-rw-r--r--core/css/fixes.css5
1 files changed, 5 insertions, 0 deletions
diff --git a/core/css/fixes.css b/core/css/fixes.css
index 5f2cb6049fb..3cdeccb0387 100644
--- a/core/css/fixes.css
+++ b/core/css/fixes.css
@@ -53,3 +53,8 @@
.ie8 fieldset .warning, .ie8 #body-login .error {
background-color: #1B314D;
}
+
+/* in IE9 the nav bar on the left side is too narrow and leave a white area - original width is 80px */
+.ie9 #navigation {
+ width: 100px;
+}