1.b-toaster {
2  top: 75px!important; // make sure toasts do not hide top header
3}
4
5.toast {
6  padding: $spacer/2 $spacer/2 $spacer/2 $spacer;
7  border-width: 0 0 0 3px;
8  box-shadow: $box-shadow;
9  .close {
10    font-weight: 300;
11    opacity: 1;
12  }
13}
14
15.toast-header {
16  background-color: inherit!important; //override specificity
17  border: none;
18  color: theme-color("dark")!important; //override specificity
19  padding-bottom: 0;
20}
21
22.toast-body {
23  color: theme-color("dark");
24  padding-top: 0;
25}
26
27.b-toast-success .toast {
28  border-left-color: theme-color("success")!important;
29  background-color: theme-color-light("success")!important;
30}
31
32.b-toast-info .toast {
33  border-left-color: theme-color("info")!important;
34  background-color: theme-color-light("info")!important;
35}
36
37.b-toast-danger .toast {
38  border-left-color: theme-color("danger")!important;
39  background-color: theme-color-light("danger")!important;
40}
41
42.b-toast-warning .toast {
43  border-left-color: theme-color("warning")!important;
44  background-color: theme-color-light("warning")!important;
45}