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
path: root/app
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-12-26 15:31:02 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-12-26 15:31:02 +0400
commit05de390fd872b8aae48cd0f53b5edd308a18e51d (patch)
tree227533d187a2f81a6fedc55dc2bc10b032cb1d96 /app
parentfd6fc422c6bc8eecfd12a4b15ce06d61e7ee3a25 (diff)
Style project visibility icons on dashboard
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app')
-rw-r--r--app/assets/stylesheets/sections/dashboard.scss12
-rw-r--r--app/views/dashboard/_project.html.haml3
-rw-r--r--app/views/groups/_projects.html.haml3
3 files changed, 15 insertions, 3 deletions
diff --git a/app/assets/stylesheets/sections/dashboard.scss b/app/assets/stylesheets/sections/dashboard.scss
index 6937097fb84..f482a7c4393 100644
--- a/app/assets/stylesheets/sections/dashboard.scss
+++ b/app/assets/stylesheets/sections/dashboard.scss
@@ -66,7 +66,7 @@
}
.project-row, .group-row {
- padding: 10px 15px !important;
+ padding: 10px 12px !important;
.namespace-name {
color: #666;
@@ -122,3 +122,13 @@
color: #BBB;
}
}
+
+.dash-project-access-icon {
+ float: left;
+ margin-right: 10px;
+ font-size: 18px;
+ color: #BBB;
+ margin-bottom: 10px;
+ margin-top: 2px;
+ width: 16px;
+}
diff --git a/app/views/dashboard/_project.html.haml b/app/views/dashboard/_project.html.haml
index f8713ba088c..5792a015967 100644
--- a/app/views/dashboard/_project.html.haml
+++ b/app/views/dashboard/_project.html.haml
@@ -1,5 +1,6 @@
= link_to project_path(project), class: dom_class(project) do
- = visibility_level_icon(project.visibility_level)
+ .dash-project-access-icon
+ = visibility_level_icon(project.visibility_level)
%span.namespace-name
- if project.namespace
= project.namespace.human_name
diff --git a/app/views/groups/_projects.html.haml b/app/views/groups/_projects.html.haml
index 4e1cfb70008..9b155484e60 100644
--- a/app/views/groups/_projects.html.haml
+++ b/app/views/groups/_projects.html.haml
@@ -12,7 +12,8 @@
- projects.each do |project|
%li.project-row
= link_to project_path(project), class: dom_class(project) do
- = visibility_level_icon(project.visibility_level)
+ .dash-project-access-icon
+ = visibility_level_icon(project.visibility_level)
%span.project-name
= truncate(project.name, length: 25)
%span.arrow