diff options
author | Morris Jobke <hey@morrisjobke.de> | 2015-04-21 16:41:41 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2015-04-21 16:41:41 +0200 |
commit | 9dc12d40d846d54e024812c2c23c402073f8dd03 (patch) | |
tree | d2db1edab34ca1ff248f867710f5b3a18e985eda /apps | |
parent | 438cb27471895a93f15828e427232ae68050f119 (diff) | |
parent | 723804ffd70d832f0816536d76087e49a4751d01 (diff) | |
download | nextcloud-server-9dc12d40d846d54e024812c2c23c402073f8dd03.tar.gz nextcloud-server-9dc12d40d846d54e024812c2c23c402073f8dd03.zip |
Merge pull request #15782 from owncloud/hide-modified-multiselect
hide modified header when multiselect is active, fix #15779
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/css/files.css | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 455ccae3f96..bce85b7f5e7 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -274,7 +274,16 @@ table.multiselect #headerName { position: relative; width: 9999px; /* when we use 100%, the styling breaks on mobile … table styling */ } -table td.selection, table th.selection, table td.fileaction { width:32px; text-align:center; } +table.multiselect #modified { + display: none; +} + +table td.selection, +table th.selection, +table td.fileaction { + width: 32px; + text-align: center; +} table td.filename a.name { position:relative; /* Firefox needs to explicitly have this default set … */ -moz-box-sizing: border-box; |