Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Nextcloud
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Nextcloud
Commits
aff22b32
Commit
aff22b32
authored
10 years ago
by
Morris Jobke
Browse files
Options
Downloads
Plain Diff
Merge pull request #13276 from Sugaroverdose/fix_#11348
fix safari rename button positioning #11348
parents
48126c3f
141908bd
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
apps/files/css/files.css
+16
-3
16 additions, 3 deletions
apps/files/css/files.css
apps/files/js/fileactions.js
+2
-1
2 additions, 1 deletion
apps/files/js/fileactions.js
with
18 additions
and
4 deletions
apps/files/css/files.css
+
16
−
3
View file @
aff22b32
...
...
@@ -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
}
This diff is collapsed.
Click to expand it.
apps/files/js/fileactions.js
+
2
−
1
View file @
aff22b32
...
...
@@ -247,8 +247,9 @@
html
+=
'
<img class="svg" alt="" src="
'
+
img
+
'
" />
'
;
}
if
(
actionSpec
.
displayName
)
{
html
+=
'
<span>
'
+
actionSpec
.
displayName
+
'
</span>
</a>
'
;
html
+=
'
<span>
'
+
actionSpec
.
displayName
+
'
</span>
'
;
}
html
+=
'
</a>
'
;
return
$
(
html
);
},
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment