diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2016-06-15 15:15:56 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2016-06-15 15:15:56 +0200 |
commit | 9f0f003fe9bb7aecc1ec275e49f95eef9172f5c1 (patch) | |
tree | c43442f0c23bf248a4f228dacdc0daef64978d36 | |
parent | 01f8434a754d3822cf0bed4ad473a9a7aec7d623 (diff) | |
download | nextcloud-server-9f0f003fe9bb7aecc1ec275e49f95eef9172f5c1.tar.gz nextcloud-server-9f0f003fe9bb7aecc1ec275e49f95eef9172f5c1.zip |
fix padding of 3-dot button on mobile
-rw-r--r-- | apps/files/css/files.css | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 94eafe27520..b65a7b4c42c 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -585,19 +585,19 @@ html.ie8 .column-mtime .selectedActions { #fileList a.action.action-menu { padding-top: 17px; padding-bottom: 17px; - padding-left:14px; - padding-right:0px; + padding-left: 14px; + padding-right: 14px; } #fileList .filesize { - padding-top:0px; - padding-bottom:0px; - padding-left:60px; - padding-right:15px; + padding-top: 0; + padding-bottom: 0; + padding-left: 60px; + padding-right: 15px; } #fileList .popovermenu { - margin-right: -5px; + margin-right: 6px; } .ie8 #fileList .popovermenu { margin-top: -10px; |