diff options
author | Morris Jobke <hey@morrisjobke.de> | 2016-12-02 18:04:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-02 18:04:57 +0100 |
commit | 717f1d380c888e6981ee4f05675cba884ea42bc3 (patch) | |
tree | 6f4f8d8cfd47339290b1567dd2485fe5f36b0620 /apps/files | |
parent | df12824a5be43bdc5f9f9a752fb73f60d6c98e6a (diff) | |
parent | 48dddf82ebfdca04caf54d9809b972a2656ee833 (diff) | |
download | nextcloud-server-717f1d380c888e6981ee4f05675cba884ea42bc3.tar.gz nextcloud-server-717f1d380c888e6981ee4f05675cba884ea42bc3.zip |
Merge pull request #2475 from nextcloud/fix-filename-local-link
fix width of filename in sidebar to accommodate local link
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/css/detailsView.css | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/apps/files/css/detailsView.css b/apps/files/css/detailsView.css index 094f44fdf05..f91fe3319e5 100644 --- a/apps/files/css/detailsView.css +++ b/apps/files/css/detailsView.css @@ -27,11 +27,6 @@ width: 90%; } -#app-sidebar .file-details-container { - display: inline-block; - float: left; -} - #app-sidebar .thumbnailContainer.large { margin-left: -15px; margin-right: -35px; /* 15 + 20 for the close button */ @@ -97,7 +92,7 @@ } #app-sidebar .fileName h3 { - max-width: 300px; + width: calc(100% - 36px); /* 36px is the with of the copy link icon */ display: inline-block; padding: 5px 0; margin: -5px 0; |