summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/framework/flash.scss
diff options
context:
space:
mode:
authorEric Eastwood <contact@ericeastwood.com>2017-11-20 10:40:01 -0600
committerEric Eastwood <contact@ericeastwood.com>2017-11-28 12:43:43 -0600
commitac87bd0c113e5265d7913e13c005850a4f6bf4c3 (patch)
treeb313faacec5be5da6f635f9acbbda8e80686dd0a /app/assets/stylesheets/framework/flash.scss
parenta4a389a0a7314d011275592474bd974924f86735 (diff)
downloadgitlab-ce-ac87bd0c113e5265d7913e13c005850a4f6bf4c3.tar.gz
Add checkboxes to automatically run AutoDevops pipeline
Fix https://gitlab.com/gitlab-org/gitlab-ce/issues/38962
Diffstat (limited to 'app/assets/stylesheets/framework/flash.scss')
-rw-r--r--app/assets/stylesheets/framework/flash.scss12
1 files changed, 10 insertions, 2 deletions
diff --git a/app/assets/stylesheets/framework/flash.scss b/app/assets/stylesheets/framework/flash.scss
index e1b086ebb2b..88ce119ee3a 100644
--- a/app/assets/stylesheets/framework/flash.scss
+++ b/app/assets/stylesheets/framework/flash.scss
@@ -34,8 +34,15 @@
}
}
+ .flash-success {
+ @extend .alert;
+ @extend .alert-success;
+ margin: 0;
+ }
+
.flash-notice,
- .flash-alert {
+ .flash-alert,
+ .flash-success {
border-radius: $border-radius-default;
.container-fluid,
@@ -48,7 +55,8 @@
margin-bottom: 0;
.flash-notice,
- .flash-alert {
+ .flash-alert,
+ .flash-success {
border-radius: 0;
}
}