diff options
author | Vincent Petry <pvince81@owncloud.com> | 2015-10-07 17:34:38 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2015-10-14 14:17:45 +0200 |
commit | 2ff3e87f74fb4be55c9ba0ce96f3bf56a9359af7 (patch) | |
tree | d314df67b9e9686b8e7621ee56c102ced51a71c3 | |
parent | f4ffa94e7fb4962ebb7752b5b64f891402887f74 (diff) | |
download | nextcloud-server-2ff3e87f74fb4be55c9ba0ce96f3bf56a9359af7.tar.gz nextcloud-server-2ff3e87f74fb4be55c9ba0ce96f3bf56a9359af7.zip |
[IE8] Fix "new" button width
-rw-r--r-- | apps/files/css/files.css | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index d0a2cce1a86..bb5711e3322 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -745,6 +745,10 @@ table.dragshadow td.size { margin: -10px; } +html.ie8 #controls .button.new { + padding-right: 0; +} + .newFileMenu { width: 140px; margin-left: -56px; @@ -796,3 +800,4 @@ table.dragshadow td.size { color: #000; padding: 0; } + |