diff options
| author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-01-08 19:57:35 +0200 |
|---|---|---|
| committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-01-08 19:57:35 +0200 |
| commit | e19f1a11edcddd4a08ea95b60efec1daa3517c36 (patch) | |
| tree | df756af9096a4feb6ae283ad3895842826cc7303 | |
| parent | 65696aaa2e1a837d635cba1162c9293da943cbc8 (diff) | |
| download | gitlab-ce-e19f1a11edcddd4a08ea95b60efec1daa3517c36.tar.gz | |
Better style of username for User#show page
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
| -rw-r--r-- | app/assets/stylesheets/sections/profile.scss | 5 | ||||
| -rw-r--r-- | app/views/users/show.html.haml | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/app/assets/stylesheets/sections/profile.scss b/app/assets/stylesheets/sections/profile.scss index c5a90e2fdc4..3117295bdf4 100644 --- a/app/assets/stylesheets/sections/profile.scss +++ b/app/assets/stylesheets/sections/profile.scss @@ -46,3 +46,8 @@ margin: 10px 0; } } + +.user-show-username { + font-weight: 200; + color: #666; +} diff --git a/app/views/users/show.html.haml b/app/views/users/show.html.haml index 566bbdb9311..65f46500a89 100644 --- a/app/views/users/show.html.haml +++ b/app/views/users/show.html.haml @@ -9,7 +9,7 @@ %i.icon-edit Edit Profile settings %br - %small #{@user.username} + %span.user-show-username #{@user.username} %br %small member since #{@user.created_at.stamp("Nov 12, 2031")} .clearfix |
