2014-07-07 23:46:32 +08:00
|
|
|
.alert {
|
2019-12-27 16:06:36 +08:00
|
|
|
padding: 0.5em 1em;
|
2017-10-11 04:07:46 +08:00
|
|
|
background-color: $danger-low;
|
2019-04-06 04:21:16 +08:00
|
|
|
color: $primary;
|
|
|
|
position: relative;
|
2014-07-07 23:46:32 +08:00
|
|
|
|
|
|
|
.close {
|
2018-01-13 06:27:38 +08:00
|
|
|
font-size: $font-up-3;
|
2019-12-31 10:43:16 +08:00
|
|
|
position: absolute;
|
|
|
|
top: 8px;
|
|
|
|
right: 8px;
|
2019-12-27 16:06:36 +08:00
|
|
|
|
2019-10-29 04:04:29 +08:00
|
|
|
.d-icon {
|
|
|
|
color: $primary-low-mid;
|
2014-07-07 23:46:32 +08:00
|
|
|
}
|
|
|
|
}
|
2019-10-29 04:04:29 +08:00
|
|
|
|
2014-07-07 23:46:32 +08:00
|
|
|
&.alert-success {
|
2019-04-06 04:21:16 +08:00
|
|
|
background-color: $success-low;
|
2014-08-06 21:31:13 +08:00
|
|
|
color: $primary;
|
2014-07-07 23:46:32 +08:00
|
|
|
}
|
|
|
|
&.alert-error {
|
2019-04-06 04:21:16 +08:00
|
|
|
background-color: $danger-low;
|
2014-08-06 21:31:13 +08:00
|
|
|
color: $primary;
|
2014-07-07 23:46:32 +08:00
|
|
|
}
|
|
|
|
&.alert-info {
|
2017-06-12 10:20:14 +08:00
|
|
|
background-color: $tertiary-low;
|
2014-07-07 23:46:32 +08:00
|
|
|
color: $primary;
|
2016-04-26 12:36:28 +08:00
|
|
|
&.clickable {
|
2016-04-25 06:24:17 +08:00
|
|
|
color: $tertiary;
|
|
|
|
}
|
2014-07-07 23:46:32 +08:00
|
|
|
}
|
|
|
|
}
|
2020-02-11 22:55:16 +08:00
|
|
|
|
|
|
|
a.alert.clickable {
|
|
|
|
display: flex;
|
|
|
|
}
|