mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Make error message toasts more visually distinct
This commit is contained in:
parent
f7f841ce6d
commit
9cdf2f046f
@ -9,3 +9,14 @@
|
|||||||
.toast:not(.show) {
|
.toast:not(.show) {
|
||||||
display: block; // this corrects an ng-bootstrap bug that prevented animations
|
display: block; // this corrects an ng-bootstrap bug that prevented animations
|
||||||
}
|
}
|
||||||
|
|
||||||
|
::ng-deep .toast.error .toast-header {
|
||||||
|
background-color: hsla(350, 79%, 40%, 0.8); // bg-danger
|
||||||
|
border-color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
::ng-deep .toast.error .toast-body {
|
||||||
|
background-color: hsla(350, 79%, 40%, 0.8); // bg-danger
|
||||||
|
border-bottom-left-radius: inherit;
|
||||||
|
border-bottom-right-radius: inherit;
|
||||||
|
}
|
||||||
|
@ -11,6 +11,8 @@ export interface Toast {
|
|||||||
action?: any
|
action?: any
|
||||||
|
|
||||||
actionName?: string
|
actionName?: string
|
||||||
|
|
||||||
|
classname?: string
|
||||||
}
|
}
|
||||||
|
|
||||||
@Injectable({
|
@Injectable({
|
||||||
@ -29,7 +31,12 @@ export class ToastService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
showError(content: string, delay: number = 10000) {
|
showError(content: string, delay: number = 10000) {
|
||||||
this.show({ title: $localize`Error`, content: content, delay: delay })
|
this.show({
|
||||||
|
title: $localize`Error`,
|
||||||
|
content: content,
|
||||||
|
delay: delay,
|
||||||
|
classname: 'error',
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
showInfo(content: string, delay: number = 5000) {
|
showInfo(content: string, delay: number = 5000) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user