summaryrefslogtreecommitdiffstats
path: root/apps/files/css
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2015-01-18 21:42:06 +0100
committerMorris Jobke <hey@morrisjobke.de>2015-01-18 21:42:06 +0100
commitaff22b32250b6a97136cb25db82e65c4f1148f5c (patch)
tree62fd8f4711061d7739b5be011019b3edf2d644dc /apps/files/css
parent48126c3f542ab7b6c3f38fce0acb6b0006cfbe90 (diff)
parent141908bd9ca84dea65be4bb4a953a91d76bd48eb (diff)
downloadnextcloud-server-aff22b32250b6a97136cb25db82e65c4f1148f5c.tar.gz
nextcloud-server-aff22b32250b6a97136cb25db82e65c4f1148f5c.zip
Merge pull request #13276 from Sugaroverdose/fix_#11348
fix safari rename button positioning #11348
Diffstat (limited to 'apps/files/css')
-rw-r--r--apps/files/css/files.css19
1 files changed, 16 insertions, 3 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css
index eb55c145d45..f04d6f8352a 100644
--- a/apps/files/css/files.css
+++ b/apps/files/css/files.css
@@ -298,6 +298,10 @@ table td.filename .nametext {
max-width: 800px;
height: 100%;
}
+/* IE8 text-overflow: ellipsis support */
+.ie8 table td.filename .nametext {
+ min-width: 50%;
+}
.has-favorites #fileList td.filename a.name {
left: 50px;
margin-right: 50px;
@@ -308,6 +312,14 @@ table td.filename .nametext .innernametext {
overflow: hidden;
position: relative;
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) {
@@ -520,9 +532,9 @@ a.action>img {
#fileList a.action[data-action="Rename"] {
padding: 16px 14px 17px !important;
- position: relative;
- top: -21px;
}
+
+.ie8 #fileList a.action img,
#fileList tr:hover a.action,
#fileList a.action.permanent,
#fileList tr:focus a.action,
@@ -533,6 +545,7 @@ a.action>img {
opacity: .5;
display:inline;
}
+.ie8 #fileList a.action:hover img,
#fileList tr:hover a.action:hover,
#fileList tr: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)";
filter: alpha(opacity=50);
opacity: .5;
-} \ No newline at end of file
+}