From 11d2d7a1bbe4510f785753d548bc92b5f321d887 Mon Sep 17 00:00:00 2001
From: Morris Jobke <hey@morrisjobke.de>
Date: Mon, 30 Nov 2015 16:29:15 +0100
Subject: [PATCH] Fix column width of mtime column

* in some translations (e.g. german) the header of this column otherwise
  got truncated
  "Zeitpunkt der Freigabe" vs "Zeitpunkt der Freig"
---
 apps/files/css/files.css | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/apps/files/css/files.css b/apps/files/css/files.css
index 9588faebc3b..2de4632c34c 100644
--- a/apps/files/css/files.css
+++ b/apps/files/css/files.css
@@ -224,8 +224,8 @@ table th.column-last, table td.column-last {
 	box-sizing: border-box;
 	position: relative;
 	/* this can not be just width, both need to be set … table styling */
-	min-width: 130px;
-	max-width: 130px;
+	min-width: 165px;
+	max-width: 165px;
 }
 
 /* Multiselect bar */
-- 
GitLab