]> source.dussan.org Git - nextcloud-server.git/commitdiff
Fix display of checkboxes in Pale Moon
authormiicha <pfitzner@physik.hu-berlin.de>
Thu, 7 Aug 2014 17:33:44 +0000 (19:33 +0200)
committermiicha <pfitzner@physik.hu-berlin.de>
Thu, 7 Aug 2014 17:33:44 +0000 (19:33 +0200)
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

index 4a8bd5bb30f1980c074b46f8954a29f40773b8eb..a01ea30d2d9a5e5ac6153e9ea7dc49f634422428 100644 (file)
@@ -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;