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

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchilleas Pipinellis <axil@gitlab.com>2020-10-01 11:14:17 +0300
committerAchilleas Pipinellis <axil@gitlab.com>2020-10-01 11:14:17 +0300
commit7fe2e8df67a337947fd460618235c2da7452415b (patch)
tree8add872c8eeb391f853555ba53f86a87d7c2c08b
parentbb73b99bd607057192bbc239f6927b42aac27433 (diff)
parent07d083929c7c4fbd8c388de34fb28de5cacd945b (diff)
Merge branch 'change-banner-colors' into 'master'
Use a more subtle color for the survey banner See merge request gitlab-org/gitlab-docs!1195
-rw-r--r--content/assets/stylesheets/stylesheet.scss5
-rw-r--r--layouts/banner.html4
2 files changed, 4 insertions, 5 deletions
diff --git a/content/assets/stylesheets/stylesheet.scss b/content/assets/stylesheets/stylesheet.scss
index eda4da6e..2dbc025f 100644
--- a/content/assets/stylesheets/stylesheet.scss
+++ b/content/assets/stylesheets/stylesheet.scss
@@ -916,9 +916,8 @@ a.global-nav-link {
// Start of banner alert box
// https://about.gitlab.com/handbook/markdown-guide/#gitlab-webcast-alert-box
.alert-banner {
- background-color: rgba($alert-banner-background, .3);
- border-color: rgba($alert-banner-background, .3);
- color: $alert-banner-text;
+ background-color: $help-indigo-50;
+ border-color: rgba($help-indigo-50, .3);
margin-top: 20px;
i {
diff --git a/layouts/banner.html b/layouts/banner.html
index 39877da2..b4adf3bf 100644
--- a/layouts/banner.html
+++ b/layouts/banner.html
@@ -1,11 +1,11 @@
<div class="admonition-wrapper note d-none" id="banner-close">
<div class="admonition alert alert-banner alert-dismissible fade show text-center" role="alert">
- <i class="fa fa-gitlab fa-fw" style="color:rgb(107,79,187); font-size:.85em" aria-hidden="true"></i>
+ <i class="fa fa-gitlab fa-fw" style="color:rgb(225,67,41); font-size:.85em" aria-hidden="true"></i>
We're looking for people to complete a short user research task related to using GitLab.
<a href="https://gitlab.fra1.qualtrics.com/jfe/form/SV_1zCypZLzsvCshLL" target="_blank" rel="noopener noreferrer">
Help us out.
</a>
- <i class="fa fa-gitlab fa-fw" style="color:rgb(107,79,187); font-size:.85em" aria-hidden="true"></i>
+ <i class="fa fa-gitlab fa-fw" style="color:rgb(225,67,41); font-size:.85em" aria-hidden="true"></i>
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>