diff options
author | Morris Jobke <hey@morrisjobke.de> | 2016-12-02 16:08:12 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2016-12-02 16:08:41 +0100 |
commit | 48dddf82ebfdca04caf54d9809b972a2656ee833 (patch) | |
tree | 9f6ff4a9a3eb70924f57d05b106f2874cfc2fd6b /apps/files | |
parent | ac527769c50ca90e49f0219d96f49c48384a624f (diff) | |
download | nextcloud-server-48dddf82ebfdca04caf54d9809b972a2656ee833.tar.gz nextcloud-server-48dddf82ebfdca04caf54d9809b972a2656ee833.zip |
properly calculate the width of the name in the sidebar
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
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 65b12c0d9b6..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: 85%; + width: calc(100% - 36px); /* 36px is the with of the copy link icon */ display: inline-block; padding: 5px 0; margin: -5px 0; |