diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-03-12 10:18:12 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-03-12 10:18:12 +0000 |
commit | d50bace360640f086dfc8bb4679b2a7947c05770 (patch) | |
tree | d1ad6245d96a8d557c2d43068e656c55210445ea /public | |
parent | 38524f5177babcccddd79ba8323bcc8f21db1371 (diff) | |
download | redmine-d50bace360640f086dfc8bb4679b2a7947c05770.tar.gz redmine-d50bace360640f086dfc8bb4679b2a7947c05770.zip |
Prevent username from overlapping in mobile menu (#22074).
Patch by Felix Gliesche.
git-svn-id: http://svn.redmine.org/redmine/trunk@15210 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'public')
-rw-r--r-- | public/stylesheets/responsive.css | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/public/stylesheets/responsive.css b/public/stylesheets/responsive.css index 20177a9ea..30420787d 100644 --- a/public/stylesheets/responsive.css +++ b/public/stylesheets/responsive.css @@ -511,6 +511,10 @@ .flyout-menu__avatar .user { padding-left: 15px; + padding-right: 15px; + text-overflow: ellipsis; + overflow: hidden; + white-space: nowrap; } /* user link when no avatar is present */ |