diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-03-23 16:15:24 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-03-23 16:15:24 +0100 |
commit | fe5597b76e2353fdf9fc8a01b84170b9fb68d470 (patch) | |
tree | f1987098f71f276b77906c679fbe3e03e9aba11a /settings/css | |
parent | 0e4ba618cf9ae65da764f7b03c91a440fb655c1e (diff) | |
parent | 23396a52cdd26d2953ee25242f1fb7f6d901c672 (diff) | |
download | nextcloud-server-fe5597b76e2353fdf9fc8a01b84170b9fb68d470.tar.gz nextcloud-server-fe5597b76e2353fdf9fc8a01b84170b9fb68d470.zip |
Merge pull request #15118 from owncloud/user-mgmt-groups
fix long group names overlapping in the sidebar, fix #12649
Diffstat (limited to 'settings/css')
-rw-r--r-- | settings/css/settings.css | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/settings/css/settings.css b/settings/css/settings.css index ff6bf3d0c50..2ce0fd8b342 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -80,6 +80,16 @@ table.nostyle td { padding: 0.2em 0; } height: 30px; } +.isgroup .groupname { + width: 85%; + display: block; + overflow: hidden; + text-overflow: ellipsis; +} +.isgroup.active .groupname { + width: 65%; +} + .usercount { float: left; margin: 5px; } li.active span.utils .delete { float: left; position: relative; opacity: 0.5; |