diff options
author | Jacob Schatz <jschatz@gitlab.com> | 2016-05-21 00:07:08 +0000 |
---|---|---|
committer | Jacob Schatz <jschatz@gitlab.com> | 2016-05-21 00:07:08 +0000 |
commit | 535252005e1384e9c6f3d55cba04cb493e58de24 (patch) | |
tree | 5b56a2cc9dadc1321c1de9c99492acacd2dc9ac2 | |
parent | ec86644545c1c2567dfaacb6d53d150a5dfa28d6 (diff) | |
parent | 0d9c351b47dedd973620531ff3412d6da6190b2f (diff) | |
download | gitlab-ce-535252005e1384e9c6f3d55cba04cb493e58de24.tar.gz |
Merge branch 'fix/style-empty-groups' into 'master'
Wrap "No groups found" message with a .nothing-here-block
The "No groups found" message's style is inconsistent with the other empty messages.
## Screenshots
### Empty groups
![Screen_Shot_2016-05-13_at_13.40.34](/uploads/1447c5f60cde7d50d6f8f07c41704e5c/Screen_Shot_2016-05-13_at_13.40.34.png)
### Empty projects
![Screen_Shot_2016-05-13_at_13.40.30](/uploads/c21ff093f3d6bdbafecf7b075fa33d3c/Screen_Shot_2016-05-13_at_13.40.30.png)
See merge request !4137
-rw-r--r-- | app/views/shared/groups/_list.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/shared/groups/_list.html.haml b/app/views/shared/groups/_list.html.haml index 1aa7ed1f2eb..427595c47a5 100644 --- a/app/views/shared/groups/_list.html.haml +++ b/app/views/shared/groups/_list.html.haml @@ -3,4 +3,4 @@ - groups.each_with_index do |group, i| = render "shared/groups/group", group: group - else - %h3 No groups found + .nothing-here-block No groups found |