fix safari rename button positioning #11348
This commit is contained in:
Morris Jobke 2015-01-18 21:42:06 +01:00
commit aff22b3225
2 changed files with 18 additions and 4 deletions

View File

@ -298,6 +298,10 @@ table td.filename .nametext {
max-width: 800px; max-width: 800px;
height: 100%; height: 100%;
} }
/* IE8 text-overflow: ellipsis support */
.ie8 table td.filename .nametext {
min-width: 50%;
}
.has-favorites #fileList td.filename a.name { .has-favorites #fileList td.filename a.name {
left: 50px; left: 50px;
margin-right: 50px; margin-right: 50px;
@ -308,6 +312,14 @@ table td.filename .nametext .innernametext {
overflow: hidden; overflow: hidden;
position: relative; position: relative;
display: inline-block; display: inline-block;
vertical-align: top;
}
/* IE8 text-overflow: ellipsis support */
.ie8 table td.filename .nametext .innernametext {
white-space: nowrap;
word-wrap: normal;
-ms-text-overflow: ellipsis;
max-width: 47%;
} }
@media only screen and (min-width: 1366px) { @media only screen and (min-width: 1366px) {
@ -520,9 +532,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,
@ -533,6 +545,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 {
@ -627,4 +640,4 @@ table.dragshadow td.size {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
filter: alpha(opacity=50); filter: alpha(opacity=50);
opacity: .5; opacity: .5;
} }

View File

@ -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);
}, },