fix_#11348 Safari rename button positioning

remotes/origin/create-share-target-reuse
Sergei Shuykov 10 years ago committed by Sugaroverdose
parent 5f7c115dfe
commit 4d2ae71bf2
  1. 6
      apps/files/css/files.css
  2. 3
      apps/files/js/fileactions.js

@ -305,7 +305,6 @@ table td.filename .nametext .innernametext {
text-overflow: ellipsis; text-overflow: ellipsis;
overflow: hidden; overflow: hidden;
position: relative; position: relative;
display: inline-block;
} }
@media only screen and (min-width: 1366px) { @media only screen and (min-width: 1366px) {
@ -518,9 +517,9 @@ a.action>img {
#fileList a.action[data-action="Rename"] { #fileList a.action[data-action="Rename"] {
padding: 16px 14px 17px !important; padding: 16px 14px 17px !important;
position: relative;
top: -21px;
} }
.ie8 #fileList a.action img,
#fileList tr:hover a.action, #fileList tr:hover a.action,
#fileList a.action.permanent, #fileList a.action.permanent,
#fileList tr:focus a.action, #fileList tr:focus a.action,
@ -531,6 +530,7 @@ a.action>img {
opacity: .5; opacity: .5;
display:inline; display:inline;
} }
.ie8 #fileList a.action:hover img,
#fileList tr:hover a.action:hover, #fileList tr:hover a.action:hover,
#fileList tr:focus a.action:focus, #fileList tr:focus a.action:focus,
#fileList .name:focus a.action:focus { #fileList .name:focus a.action:focus {

@ -247,8 +247,9 @@
html += '<img class="svg" alt="" src="' + img + '" />'; html += '<img class="svg" alt="" src="' + img + '" />';
} }
if (actionSpec.displayName) { if (actionSpec.displayName) {
html += '<span> ' + actionSpec.displayName + '</span></a>'; html += '<span> ' + actionSpec.displayName + '</span>';
} }
html += '</a>';
return $(html); return $(html);
}, },

Loading…
Cancel
Save