webpack-bootstrap-ui-kit/src/scss/layout/main/alerts.scss

40 lines
444 B
SCSS
Raw Normal View History

2021-08-09 18:04:09 +02:00
#SiteWideAlerts {
2021-08-18 20:38:12 +02:00
.btn-close {
background: none;
}
2021-08-09 18:04:09 +02:00
2021-08-18 20:38:12 +02:00
.alert {
2021-10-15 22:47:09 +02:00
display: flex;
2021-08-18 20:38:12 +02:00
margin-bottom: 0;
2024-02-02 15:31:10 +01:00
2021-10-16 12:51:35 +02:00
.alert__container {
2021-10-16 00:44:20 +02:00
display: flex;
}
2021-08-18 20:38:12 +02:00
}
2021-08-09 18:04:09 +02:00
}
.alert-offline {
2021-08-18 20:38:12 +02:00
display: none;
2021-08-09 18:04:09 +02:00
}
2021-10-15 23:04:40 +02:00
.is-online {
2021-08-18 20:38:12 +02:00
.alert-offline {
2021-10-15 23:04:40 +02:00
display: none !important;
2021-08-18 20:38:12 +02:00
}
2021-08-09 18:04:09 +02:00
}
2021-10-15 23:04:40 +02:00
.is-offline {
2021-08-18 20:38:12 +02:00
.alert-offline {
2021-10-15 23:04:40 +02:00
display: flex !important;
2021-08-18 20:38:12 +02:00
}
2021-08-09 18:04:09 +02:00
}
2024-02-02 15:31:10 +01:00
2024-02-02 22:24:41 +01:00
.alert-bad,
.alert-error {
2024-02-02 15:31:10 +01:00
@extend .alert-danger;
2024-03-12 17:31:11 +01:00
}
.alert:last-child {
margin-bottom: 0;
}