diff options
author | Bagera <victor@baquero-wihlborg.se> | 2014-05-14 21:16:00 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2014-06-16 14:11:55 +0200 |
commit | e11abccded148f23b43eb9251431c65a4cf17655 (patch) | |
tree | 8bf6609b9170f99ed063af4bbb8f81f37cabc478 /apps | |
parent | 4fbab3c12db8bc23c7a4891005c00f6f302ae9e3 (diff) | |
download | nextcloud-server-e11abccded148f23b43eb9251431c65a4cf17655.tar.gz nextcloud-server-e11abccded148f23b43eb9251431c65a4cf17655.zip |
Fix delete action height
Fix #8530 and align the all actions in the row
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/css/files.css | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index e138261b9f2..a580728323a 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -239,7 +239,7 @@ table td.filename input.filename { cursor: text; } table td.filename a, table td.login, table td.logout, table td.download, table td.upload, table td.create, table td.delete { padding:3px 8px 8px 3px; } -table td.filename .nametext, .uploadtext, .modified, .column-last>span:first-child { float:left; padding:14px 0; } +table td.filename .nametext, .uploadtext, .modified, .column-last>span:first-child { float:left; padding:15px 0; } .modified, .column-last>span:first-child { position: relative; @@ -257,7 +257,7 @@ table td.filename .nametext, .uploadtext, .modified, .column-last>span:first-chi /* TODO fix usability bug (accidental file/folder selection) */ table td.filename .nametext { position: absolute; - top: 16px; + top: 15px; left: 55px; padding: 0; overflow: hidden; @@ -384,7 +384,7 @@ table td.filename form { font-size:14px; margin-left:48px; margin-right:48px; } /* File actions */ .fileactions { position: absolute; - top: 14px; + top: 15px; right: 0; font-size: 11px; } @@ -393,7 +393,7 @@ table td.filename form { font-size:14px; margin-left:48px; margin-right:48px; } #fileList a.action.delete { position: absolute; right: 0; - padding: 28px 14px 19px !important; + padding: 17px 14px; } #fileList .action.action-share-notification span, #fileList a { @@ -402,6 +402,10 @@ table td.filename form { font-size:14px; margin-left:48px; margin-right:48px; } a.action>img { max-height:16px; max-width:16px; vertical-align:text-bottom; } +.fileactions a.action > img{ + margin-bottom: -1px; +} + /* Actions for selected files */ .selectedActions { position: absolute; @@ -424,7 +428,6 @@ a.action>img { max-height:16px; max-width:16px; vertical-align:text-bottom; } #fileList a.action { display: inline; - margin: -8px 0; padding: 18px 8px; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); |