Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrandon Labuschagne <blabuschagne@gitlab.com>2019-02-19 18:01:58 +0300
committerKushal Pandya <kushalspandya@gmail.com>2019-02-19 18:01:58 +0300
commit2fd0d6e29b8ed06c07354a6b3f2d81e938417489 (patch)
treef18907e4a41c32f47f29d14478f57e00f847af74 /app/views/dashboard/projects/_starred_empty_state.html.haml
parent1aae24ce099c8683c9b212cceb1c1a71137c1c48 (diff)
Improve empty state for starred projects
In this MR, a view for the empty state of projects has been added. In addition, an svg for this has also been added.
Diffstat (limited to 'app/views/dashboard/projects/_starred_empty_state.html.haml')
-rw-r--r--app/views/dashboard/projects/_starred_empty_state.html.haml9
1 files changed, 9 insertions, 0 deletions
diff --git a/app/views/dashboard/projects/_starred_empty_state.html.haml b/app/views/dashboard/projects/_starred_empty_state.html.haml
new file mode 100644
index 00000000000..bea27f1a456
--- /dev/null
+++ b/app/views/dashboard/projects/_starred_empty_state.html.haml
@@ -0,0 +1,9 @@
+.row.empty-state
+ .col-12
+ .svg-content.svg-250
+ = image_tag 'illustrations/starred_empty.svg'
+ .text-content
+ %h4.text-center
+ = s_("StarredProjectsEmptyState|You don't have starred projects yet.")
+ %p.text-secondary
+ = s_("StarredProjectsEmptyState|Visit a project page and press on a star icon. Then, you can find the project on this page.")