diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-09-26 10:02:18 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-09-26 10:02:18 +0300 |
commit | 8674e1c22704e89ea030c9e38c296cae735610ee (patch) | |
tree | a3d440fe433159faffedc6c644b950f7177d2341 | |
parent | a59330998e1debe8ed7e8e60d0c24f1de9ba3b9a (diff) | |
download | gitlab-ce-8674e1c22704e89ea030c9e38c296cae735610ee.tar.gz |
Group has multiple owners so no sense to show one at dashboard list
-rw-r--r-- | app/assets/stylesheets/sections/dashboard.scss | 10 | ||||
-rw-r--r-- | app/views/dashboard/_groups.html.haml | 3 |
2 files changed, 8 insertions, 5 deletions
diff --git a/app/assets/stylesheets/sections/dashboard.scss b/app/assets/stylesheets/sections/dashboard.scss index 61331cee413..3f7825d71ce 100644 --- a/app/assets/stylesheets/sections/dashboard.scss +++ b/app/assets/stylesheets/sections/dashboard.scss @@ -85,12 +85,18 @@ color: #666; } - .last-activity, .owner-info { + .last-activity { color: #AAA; display: block; margin-top: 5px; - .date, .owner { + .date { color: #777; } } } + +.group-row { + .arrow { + padding: 2px 5px; + } +} diff --git a/app/views/dashboard/_groups.html.haml b/app/views/dashboard/_groups.html.haml index 8b32c5642bb..b4f3866228d 100644 --- a/app/views/dashboard/_groups.html.haml +++ b/app/views/dashboard/_groups.html.haml @@ -14,9 +14,6 @@ = truncate(group.name, length: 35) %span.arrow %i.icon-angle-right - %span.owner-info - %span Owner: - %span.owner= group.owner_name - if groups.blank? %li %h3.nothing_here_message You have no groups yet. |