2014-02-20 06:51:22 -05:00
|
|
|
.flash-container {
|
|
|
|
cursor: pointer;
|
|
|
|
margin: 0;
|
2016-06-21 17:10:24 -04:00
|
|
|
margin-bottom: $gl-padding;
|
2014-02-20 06:51:22 -05:00
|
|
|
font-size: 14px;
|
2016-09-29 11:54:45 -04:00
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
2014-02-20 06:51:22 -05:00
|
|
|
|
|
|
|
.flash-notice {
|
2014-09-25 11:00:21 -04:00
|
|
|
@extend .alert;
|
|
|
|
@extend .alert-info;
|
2016-01-13 08:37:25 -05:00
|
|
|
margin: 0;
|
2014-02-20 06:51:22 -05:00
|
|
|
}
|
|
|
|
|
2018-03-06 17:54:19 -05:00
|
|
|
.flash-warning {
|
|
|
|
@extend .alert;
|
|
|
|
@extend .alert-warning;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2014-02-20 06:51:22 -05:00
|
|
|
.flash-alert {
|
2014-09-25 11:00:21 -04:00
|
|
|
@extend .alert;
|
|
|
|
@extend .alert-danger;
|
2016-01-13 08:37:25 -05:00
|
|
|
margin: 0;
|
2017-05-25 04:48:10 -04:00
|
|
|
|
|
|
|
.flash-text,
|
|
|
|
.flash-action {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
a.flash-action {
|
|
|
|
margin-left: 5px;
|
|
|
|
text-decoration: none;
|
2017-08-24 10:13:24 -04:00
|
|
|
font-weight: $gl-font-weight-normal;
|
2017-05-25 04:48:10 -04:00
|
|
|
border-bottom: 1px solid;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
border-color: transparent;
|
|
|
|
}
|
|
|
|
}
|
2014-02-20 06:51:22 -05:00
|
|
|
}
|
2016-06-27 08:03:46 -04:00
|
|
|
|
2017-11-20 11:40:01 -05:00
|
|
|
.flash-success {
|
|
|
|
@extend .alert;
|
|
|
|
@extend .alert-success;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2016-10-24 16:22:06 -04:00
|
|
|
.flash-notice,
|
2017-11-20 11:40:01 -05:00
|
|
|
.flash-alert,
|
|
|
|
.flash-success {
|
2016-06-21 17:10:24 -04:00
|
|
|
border-radius: $border-radius-default;
|
|
|
|
|
2016-10-05 09:03:08 -04:00
|
|
|
.container-fluid,
|
|
|
|
.container-fluid.container-limited {
|
2016-06-27 08:03:46 -04:00
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
}
|
2016-06-21 17:10:24 -04:00
|
|
|
|
|
|
|
&.flash-container-page {
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
2016-10-24 16:22:06 -04:00
|
|
|
.flash-notice,
|
2017-11-20 11:40:01 -05:00
|
|
|
.flash-alert,
|
|
|
|
.flash-success {
|
2016-06-21 17:10:24 -04:00
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
}
|
2017-05-26 15:01:42 -04:00
|
|
|
|
|
|
|
&:empty {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2016-06-21 17:10:24 -04:00
|
|
|
}
|
|
|
|
|
2018-04-09 11:26:28 -04:00
|
|
|
@include media-breakpoint-down(sm) {
|
2016-06-21 17:10:24 -04:00
|
|
|
ul.notes {
|
|
|
|
.flash-container.timeline-content {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
}
|
2014-02-20 06:51:22 -05:00
|
|
|
}
|