diff options
author | Morris Jobke <hey@morrisjobke.de> | 2016-11-29 16:56:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-29 16:56:16 +0100 |
commit | 7780e45348e9a45f081bb199e4679d69e0b5336c (patch) | |
tree | b638f8fb3116cc3727879f95ab04ad30714ad917 /core | |
parent | e86ea95043c03974ac5d593e80ec5a87f70b04a2 (diff) | |
parent | bd18349f46bdcd1b683ce3440db3d2815a796d40 (diff) | |
download | nextcloud-server-7780e45348e9a45f081bb199e4679d69e0b5336c.tar.gz nextcloud-server-7780e45348e9a45f081bb199e4679d69e0b5336c.zip |
Merge pull request #2388 from nextcloud/share-table-ellipsis
Fix whitespace between sharee name and icons #2384
Diffstat (limited to 'core')
-rw-r--r-- | core/css/share.css | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/core/css/share.css b/core/css/share.css index 9a984912760..05b6ca3912a 100644 --- a/core/css/share.css +++ b/core/css/share.css @@ -74,16 +74,18 @@ font-weight: bold; line-height: 21px; white-space: normal; + width: 100%; } #shareWithList .sharingOptionsGroup { - position: absolute; - right: 15px; + flex-shrink: 0; + position: relative; } #shareWithList .sharingOptionsGroup .popovermenu { - right: -14px; + right: -6px; top: 40px; + padding: 3px 6px; } #shareWithList .shareOption { @@ -103,10 +105,10 @@ padding-right: 8px; white-space: nowrap; text-overflow: ellipsis; - max-width: 254px; display: inline-block; overflow: hidden; vertical-align: middle; + flex-grow: 5; } #shareWithList li label{ margin-right: 8px; |