Files
dspace-angular/src/app/shared/notifications/notification/notification.component.scss
Maciej Kleban 0b43109a29 Replace hard-coded colors with bootstrap variants
* Replace custom variables with Bootstrap variants
* Replace custom button colors with Bootstrap variants
* Remove custom colors and replace them with bootstrap variants
* Fix checkbox offset styles
---------
Co-authored-by: Maciej Kleban <maciej.kleban@pcgacademia.pl>
2024-01-16 16:15:35 -06:00

34 lines
674 B
SCSS

.notification {
display: inline-block;
min-width: var(--bs-modal-sm);
text-align: left;
}
.close {
outline: none !important;
opacity: 0.8;
}
.notification-icon {
min-width: 3rem;
}
.notification-progress-loader {
top: -1px;
left: 0;
height: 1px;
}
.alert-success .notification-progress-loader span {
background: var(--ds-notification-bg-success);
}
.alert-danger .notification-progress-loader span {
background: var(--ds-notification-bg-danger);
}
.alert-info .notification-progress-loader span {
background: var(--ds-notification-bg-info);
}
.alert-warning .notification-progress-loader span {
background: var(--ds-notification-bg-warning);
}