summaryrefslogtreecommitdiffstats
path: root/apps/files/css/files.css
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2015-04-21 15:38:34 +0200
committerJan-Christoph Borchardt <hey@jancborchardt.net>2015-04-21 15:38:34 +0200
commit723804ffd70d832f0816536d76087e49a4751d01 (patch)
tree846958ab76bff72bdf57d4bd7f93cdd5e58d42ce /apps/files/css/files.css
parent4b968da9e64c4bfbdd166caaff4fab9bfc47a182 (diff)
downloadnextcloud-server-723804ffd70d832f0816536d76087e49a4751d01.tar.gz
nextcloud-server-723804ffd70d832f0816536d76087e49a4751d01.zip
hide modified header when multiselect is active, fix #15779
Diffstat (limited to 'apps/files/css/files.css')
-rw-r--r--apps/files/css/files.css11
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;