gitlab-org--gitlab-foss/app/assets/stylesheets/framework/flash.scss

100 lines
1.6 KiB
SCSS
Raw Normal View History

.flash-container {
cursor: pointer;
margin: 0;
margin-bottom: $gl-padding;
font-size: 14px;
position: relative;
z-index: 1;
.flash-notice,
.flash-alert,
.flash-success,
.flash-warning {
border-radius: $border-radius-default;
color: $white-light;
.container-fluid,
.container-fluid.container-limited {
background: transparent;
}
}
.flash-notice {
@extend .alert;
2018-05-16 19:04:23 -04:00
background-color: $blue-500;
margin: 0;
&.flash-notice-persistent {
background-color: $blue-100;
color: $gl-text-color;
a {
2018-08-14 12:44:08 -04:00
color: $blue-600;
&:hover {
2018-08-14 12:44:08 -04:00
color: $blue-800;
text-decoration: none;
}
}
}
}
.flash-warning {
@extend .alert;
background-color: $orange-100;
color: $orange-900;
cursor: default;
margin: 0;
}
.flash-text,
.flash-action {
display: inline-block;
}
.flash-alert {
@extend .alert;
2018-05-16 19:04:23 -04:00
background-color: $red-500;
margin: 0;
2017-05-25 04:48:10 -04:00
2018-06-27 06:27:27 -04:00
.flash-action {
2017-05-25 04:48:10 -04:00
margin-left: 5px;
text-decoration: none;
font-weight: $gl-font-weight-normal;
2017-05-25 04:48:10 -04:00
border-bottom: 1px solid;
&:hover {
border-color: transparent;
}
}
}
.flash-success {
@extend .alert;
2018-05-16 19:04:23 -04:00
background-color: $green-500;
margin: 0;
}
&.flash-container-page {
margin-bottom: 0;
.flash-notice,
.flash-alert,
.flash-success {
border-radius: 0;
}
}
&:empty {
margin: 0;
}
}
2018-04-09 11:26:28 -04:00
@include media-breakpoint-down(sm) {
ul.notes {
.flash-container.timeline-content {
margin-left: 0;
}
}
}