diff options
author | Phil Hughes <me@iamphill.com> | 2016-03-15 17:38:45 +0000 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2016-03-15 17:38:45 +0000 |
commit | b24f9d66bc260dbfc04e63062b06bef390a4ba97 (patch) | |
tree | afaad49d0aee3bf6bd01d98a9e5c218d1692095c | |
parent | ea7d062fa60e3e622288237fc66a815348bbcf36 (diff) | |
download | gitlab-ce-b24f9d66bc260dbfc04e63062b06bef390a4ba97.tar.gz |
Fixed overflow on users name in dropdownsdropdown-vertical-spacing
Closes #14289
-rw-r--r-- | app/assets/stylesheets/framework/dropdowns.scss | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/app/assets/stylesheets/framework/dropdowns.scss b/app/assets/stylesheets/framework/dropdowns.scss index 5b647fc6176..309da34da07 100644 --- a/app/assets/stylesheets/framework/dropdowns.scss +++ b/app/assets/stylesheets/framework/dropdowns.scss @@ -161,9 +161,8 @@ .dropdown-menu-user-full-name { display: block; - margin-bottom: 2px; font-weight: 600; - line-height: 1; + line-height: 16px; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; @@ -171,7 +170,7 @@ .dropdown-menu-user-username { display: block; - line-height: 1; + line-height: 16px; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; |