2016-02-15 08:27:41 -06:00
|
|
|
//
|
|
|
|
// Alerts
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
// Base styles
|
|
|
|
// -------------------------
|
|
|
|
|
|
|
|
.alert {
|
2017-09-12 02:05:32 -05:00
|
|
|
padding: 1.25rem 2rem 1.25rem 1.5rem;
|
2018-10-23 10:25:16 -05:00
|
|
|
margin-bottom: $panel-margin / 2;
|
2017-12-19 09:22:41 -06:00
|
|
|
text-shadow: 0 2px 0 rgba(255, 255, 255, 0.5);
|
2017-09-12 02:05:32 -05:00
|
|
|
background: $alert-error-bg;
|
2016-02-15 08:27:41 -06:00
|
|
|
position: relative;
|
|
|
|
color: $white;
|
2017-12-19 09:22:41 -06:00
|
|
|
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
|
2018-10-23 10:25:16 -05:00
|
|
|
border-radius: $border-radius;
|
2017-09-12 01:01:44 -05:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2016-02-15 08:27:41 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// Alternate styles
|
|
|
|
// -------------------------
|
|
|
|
|
|
|
|
.alert-success {
|
2017-09-12 01:01:44 -05:00
|
|
|
background: $alert-success-bg;
|
2016-02-15 08:27:41 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.alert-danger,
|
|
|
|
.alert-error {
|
2017-09-12 01:01:44 -05:00
|
|
|
background: $alert-error-bg;
|
2016-02-15 08:27:41 -06:00
|
|
|
}
|
2016-12-16 03:34:00 -06:00
|
|
|
|
2016-02-15 08:27:41 -06:00
|
|
|
.alert-info {
|
2017-09-12 02:05:32 -05:00
|
|
|
background: $alert-info-bg;
|
2016-02-15 08:27:41 -06:00
|
|
|
}
|
2016-12-16 03:34:00 -06:00
|
|
|
|
2016-02-15 08:27:41 -06:00
|
|
|
.alert-warning {
|
2017-09-12 02:05:32 -05:00
|
|
|
background: $alert-warning-bg;
|
2016-02-15 08:27:41 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.page-alert-list {
|
|
|
|
z-index: 8000;
|
2017-09-12 01:01:44 -05:00
|
|
|
min-width: 400px;
|
|
|
|
max-width: 600px;
|
2016-02-15 08:27:41 -06:00
|
|
|
position: fixed;
|
2017-09-13 02:48:50 -05:00
|
|
|
right: 10px;
|
|
|
|
top: 60px;
|
2016-02-15 08:27:41 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.alert-close {
|
2017-09-12 01:01:44 -05:00
|
|
|
padding: 0 0 0 1rem;
|
2016-02-15 08:27:41 -06:00
|
|
|
border: none;
|
2017-09-12 01:01:44 -05:00
|
|
|
background: none;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2016-02-15 08:27:41 -06:00
|
|
|
.fa {
|
2017-09-12 01:01:44 -05:00
|
|
|
align-self: flex-end;
|
|
|
|
font-size: 1.5rem;
|
2017-12-19 09:22:41 -06:00
|
|
|
color: rgba(255, 255, 255, 0.75);
|
2016-02-15 08:27:41 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.alert-title {
|
2016-02-16 03:42:06 -06:00
|
|
|
font-weight: $font-weight-semi-bold;
|
2016-02-15 08:27:41 -06:00
|
|
|
padding-bottom: 2px;
|
|
|
|
}
|
2017-09-12 01:01:44 -05:00
|
|
|
|
|
|
|
.alert-icon {
|
2017-09-12 02:21:17 -05:00
|
|
|
padding: 0 1rem 0 0;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
width: 2.5rem;
|
|
|
|
.fa {
|
|
|
|
font-size: 1.5rem;
|
|
|
|
}
|
2017-09-12 01:01:44 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.alert-body {
|
|
|
|
flex-grow: 1;
|
2017-09-12 02:05:32 -05:00
|
|
|
}
|