diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-07-03 11:40:11 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-07-03 11:40:11 +0200 |
commit | 6f14034c481c3bed92d70e2b6eaab733847e3154 (patch) | |
tree | 52b04bd53a62b54cc1d535bbe370fa68246468a3 | |
parent | 4c97f2b3af803dbe2da8deed6106f5689784c023 (diff) | |
download | nextcloud-server-6f14034c481c3bed92d70e2b6eaab733847e3154.tar.gz nextcloud-server-6f14034c481c3bed92d70e2b6eaab733847e3154.zip |
fix left margin of file list summary
-rw-r--r-- | apps/files/css/files.css | 2 | ||||
-rw-r--r-- | apps/files/css/mobile.css | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 51f255291ef..1f595052900 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -477,7 +477,7 @@ a.action>img { border-bottom: none; } .summary .info { - margin-left: 55px; + margin-left: 40px; } #scanning-message{ top:40%; left:40%; position:absolute; display:none; } diff --git a/apps/files/css/mobile.css b/apps/files/css/mobile.css index fe876899b4a..780b7ac8443 100644 --- a/apps/files/css/mobile.css +++ b/apps/files/css/mobile.css @@ -22,6 +22,10 @@ table td.date { table td { padding: 0; } +/* and accordingly fix left margin of file list summary on mobile */ +.summary .info { + margin-left: 55px; +} /* remove shift for multiselect bar to account for missing navigation */ table.multiselect thead { |