mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00

* 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>
34 lines
674 B
SCSS
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);
|
|
}
|