summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Slaughter <pslaughter@gitlab.com>2018-12-01 03:05:23 -0600
committerPaul Slaughter <pslaughter@gitlab.com>2018-12-01 03:05:23 -0600
commit4763dc940727394fafd3e9e231ae8e67ced21519 (patch)
tree79715b4304b0bf1fb646b2b67ee4b02e3693593d
parenta445aa0a9267f191fab1c46d438b42fbec549da5 (diff)
downloadgitlab-ce-5426-fe-alert-tip-css.tar.gz
Add grayscale alert-tip to css framework5426-fe-alert-tip-css
**Note:** - This is a bootstrap alert with a gray background - It is referenced in the GitLab design system **References:** - https://design.gitlab.com/#/components/alerts - https://gitlab.com/gitlab-org/gitlab-ee/issues/5426
-rw-r--r--app/assets/stylesheets/framework.scss1
-rw-r--r--app/assets/stylesheets/framework/alerts.scss4
2 files changed, 5 insertions, 0 deletions
diff --git a/app/assets/stylesheets/framework.scss b/app/assets/stylesheets/framework.scss
index 4041f2b4479..d320fa5f595 100644
--- a/app/assets/stylesheets/framework.scss
+++ b/app/assets/stylesheets/framework.scss
@@ -6,6 +6,7 @@
@import 'bootstrap_migration';
@import 'framework/layout';
+@import 'framework/alerts';
@import 'framework/animations';
@import 'framework/vue_transitions';
@import 'framework/avatar';
diff --git a/app/assets/stylesheets/framework/alerts.scss b/app/assets/stylesheets/framework/alerts.scss
new file mode 100644
index 00000000000..866792a6a1b
--- /dev/null
+++ b/app/assets/stylesheets/framework/alerts.scss
@@ -0,0 +1,4 @@
+.alert-tip {
+ background-color: $theme-gray-100;
+ color: $theme-gray-900;
+}