[Pkg-owncloud-commits] [owncloud] 33/121: Fix display of checkboxes in Pale Moon

David Prévot taffit at moszumanska.debian.org
Thu Aug 21 16:44:29 UTC 2014


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

taffit pushed a commit to branch master
in repository owncloud.

commit 4748923dbce161c6e1e84690242e9b1504a359c1
Author: miicha <pfitzner at physik.hu-berlin.de>
Date:   Thu Aug 7 19:33:44 2014 +0200

    Fix display of checkboxes in Pale Moon
    
    In Pale Moon (24.7.1) the checkboxes in the file list are not in the responding line on the icon but all of them are next to the "select all" checkbox.
    This fix should not change anything in Firefox and chromium (on windows) but as the comment states it has to be checked on KDE/Qt.
    BTW why is position absolute naccessary? For my understanding relative is exactly what you want to use in such a case...
---
 apps/files/css/files.css | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/apps/files/css/files.css b/apps/files/css/files.css
index 4a8bd5b..a01ea30 100644
--- a/apps/files/css/files.css
+++ b/apps/files/css/files.css
@@ -349,14 +349,15 @@ table td.filename .uploadtext {
 #fileList tr td.filename>input[type="checkbox"] + label,
 .select-all + label {
 	height: 50px;
-	position: absolute;
+	position: relative;
 	width: 50px;
 	z-index: 5;
 }
 #fileList tr td.filename>input[type="checkbox"]{
 	/* sometimes checkbox height is bigger (KDE/Qt), so setting to absolute
 	 * to prevent it to increase the height */
-	position: absolute;
+	position: relative;
+	z-index: 4;
 }
 #fileList tr td.filename>input[type="checkbox"] + label {
 	left: 0;

-- 
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