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:
authorAlfredo Sumaran <alfredo@gitlab.com>2016-11-19 10:38:07 +0300
committerAlfredo Sumaran <alfredo@gitlab.com>2016-11-21 21:57:11 +0300
commit46d2b4307a3f9e3943205f1c7107c9a3abd6ac6c (patch)
tree981a4e767e8e5602a6ce789b339ca2e13d7ff372 /app/assets/stylesheets/pages/cycle_analytics.scss
parent1a7cc190b734731f936c9aa067bf5ac2d46ef2c6 (diff)
Add view to handle the case when user doesn’t have access to stage
Diffstat (limited to 'app/assets/stylesheets/pages/cycle_analytics.scss')
-rw-r--r--app/assets/stylesheets/pages/cycle_analytics.scss21
1 files changed, 17 insertions, 4 deletions
diff --git a/app/assets/stylesheets/pages/cycle_analytics.scss b/app/assets/stylesheets/pages/cycle_analytics.scss
index b6796511f49..b85f1076427 100644
--- a/app/assets/stylesheets/pages/cycle_analytics.scss
+++ b/app/assets/stylesheets/pages/cycle_analytics.scss
@@ -247,7 +247,8 @@
padding-left: 16px;
}
- .stage-empty {
+ .stage-empty,
+ .not-available {
color: $gl-text-color-light;
}
}
@@ -410,22 +411,34 @@
}
}
- .empty-stage {
+ .empty-stage,
+ .no-access-stage {
text-align: center;
width: 75%;
margin: 0 auto;
padding-top: 130px;
color: $gl-text-color-light;
+ h4 {
+ color: $gl-text-color;
+ }
+ }
+
+ .empty-stage {
.icon-no-data {
height: 36px;
width: 78px;
display: inline-block;
margin-bottom: 20px;
}
+ }
- h4 {
- color: $gl-text-color;
+ .no-access-stage {
+ .icon-lock {
+ height: 36px;
+ width: 78px;
+ display: inline-block;
+ margin-bottom: 20px;
}
}
}