diff options
author | miicha <pfitzner@physik.hu-berlin.de> | 2014-08-07 19:33:44 +0200 |
---|---|---|
committer | miicha <pfitzner@physik.hu-berlin.de> | 2014-08-07 19:33:44 +0200 |
commit | 4748923dbce161c6e1e84690242e9b1504a359c1 (patch) | |
tree | 6135827dc98635dce2f3722d772aec36428245d5 /apps | |
parent | 44ae0868fd37ec4208214deb560ec44a487ee75c (diff) | |
download | nextcloud-server-4748923dbce161c6e1e84690242e9b1504a359c1.tar.gz nextcloud-server-4748923dbce161c6e1e84690242e9b1504a359c1.zip |
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...
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/css/files.css | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 4a8bd5bb30f..a01ea30d2d9 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; |