mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 04:19:05 +08:00
38 lines
583 B
SCSS
38 lines
583 B
SCSS
.alert {
|
|
padding: 0.5em 1em;
|
|
background-color: $danger-low;
|
|
color: $primary;
|
|
position: relative;
|
|
|
|
.close {
|
|
font-size: $font-up-3;
|
|
position: absolute;
|
|
top: 8px;
|
|
right: 8px;
|
|
|
|
.d-icon {
|
|
color: $primary-low-mid;
|
|
}
|
|
}
|
|
|
|
&.alert-success {
|
|
background-color: $success-low;
|
|
color: $primary;
|
|
}
|
|
&.alert-error {
|
|
background-color: $danger-low;
|
|
color: $primary;
|
|
}
|
|
&.alert-info {
|
|
background-color: $tertiary-low;
|
|
color: $primary;
|
|
&.clickable {
|
|
color: $tertiary;
|
|
}
|
|
}
|
|
}
|
|
|
|
a.alert.clickable {
|
|
display: flex;
|
|
}
|