2014-07-07 23:46:32 +08:00
|
|
|
.alert {
|
2019-04-06 04:21:16 +08:00
|
|
|
padding: 8px 32px 8px 16px;
|
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 {
|
2019-04-06 04:21:16 +08:00
|
|
|
position: absolute;
|
|
|
|
top: 8px;
|
|
|
|
right: 8px;
|
2018-01-13 06:27:38 +08:00
|
|
|
line-height: $line-height-small;
|
|
|
|
font-size: $font-up-3;
|
2019-04-06 04:21:16 +08:00
|
|
|
color: $primary-low-mid;
|
2014-07-07 23:46:32 +08:00
|
|
|
@include hover {
|
2019-04-06 04:21:16 +08:00
|
|
|
color: $primary-medium;
|
2014-07-07 23:46:32 +08:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
button.close {
|
|
|
|
padding: 0;
|
|
|
|
cursor: pointer;
|
|
|
|
background: transparent;
|
|
|
|
border: 0;
|
|
|
|
-webkit-appearance: none;
|
|
|
|
}
|
|
|
|
&.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
|
|
|
}
|
|
|
|
}
|