[Pkg-owncloud-commits] [owncloud] 11/52: Fix for IE - an ugly horizontal scrollbar appears

David Prévot taffit at moszumanska.debian.org
Mon Dec 2 01:49:37 UTC 2013


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to branch master
in repository owncloud.

commit 6b3b3d8af4635f24fe8f5d7dc13ce8db81a494af
Author: Morris Jobke <morris.jobke at gmail.com>
Date:   Wed Nov 27 16:45:04 2013 +0100

    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
---
 core/css/fixes.css  | 5 +++++
 core/css/styles.css | 1 +
 2 files changed, 6 insertions(+)

diff --git a/core/css/fixes.css b/core/css/fixes.css
index 5f2cb60..3cdeccb 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;
+}
diff --git a/core/css/styles.css b/core/css/styles.css
index 6cfbad2..2eda25b 100644
--- a/core/css/styles.css
+++ b/core/css/styles.css
@@ -570,6 +570,7 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; }
 	z-index: 75;
 	background: #383c43 url('../img/noise.png') repeat;
 	overflow-y: auto;
+	overflow-x: hidden;
 	-moz-box-sizing:border-box; box-sizing:border-box;
 	/* prevent ugly selection effect on accidental selection */
 	-webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none;

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud.git



More information about the Pkg-owncloud-commits mailing list