blob: a46ce6621eb61b5ff06fc0aa25deb94bb0e3dcd5 [file] [log] [blame]
beccabroeka30394b2018-12-14 17:19:45 -06001// Overrides style for ngToast notifications
2.ng-toast {
Yoshie Muranaka5e930c02019-10-16 08:13:53 -07003 margin-top: 9rem;
beccabroeka30394b2018-12-14 17:19:45 -06004 .close {
Yoshie Muranaka5e930c02019-10-16 08:13:53 -07005 color: $text-01;
6 opacity: 1;
7 font-size: 1.2rem;
8 font-weight: 400;
beccabroeka30394b2018-12-14 17:19:45 -06009 }
10 .alert {
Yoshie Muranaka5e930c02019-10-16 08:13:53 -070011 border: none; //override inherited border styles
beccabroeka30394b2018-12-14 17:19:45 -060012 border-radius: 0;
Yoshie Muranaka5e930c02019-10-16 08:13:53 -070013 border-left-width: 3px;
14 border-left-style: solid;
beccabroeka30394b2018-12-14 17:19:45 -060015 text-align: left;
Yoshie Muranaka5e930c02019-10-16 08:13:53 -070016 color: $text-01;
17 padding-left: 1rem;
18 width: 350px;
19 }
20 .alert-content-container {
21 display: flex;
22 flex-direction: row;
23 }
24 .alert-content__header {
25 font-size: 1rem;
26 font-weight: bold;
27 margin-bottom: 0;
28 line-height:1.5;
29 }
30 .alert-content__body {
31 margin:0;
32 line-height: 1.2;
33 }
34 .alert-danger {
35 background-color: $notification-error--light;
36 border-left-color: $notification-error--dark;
37 }
38 .alert-success {
39 background-color: $notification-success--light;
40 border-left-color: $notification-success--dark;
41 }
42 .alert-warning {
43 background-color: $notification-warn--light;
44 border-left-color: $notification-warn--dark;
45 }
46 .alert-info {
47 background-color: $notification-info--light;
48 border-left-color: $notification-info--dark;
49 }
50 .status-icon {
51 display: inline-block;
52 vertical-align: top;
53 margin-right: 0.8rem;
beccabroeka30394b2018-12-14 17:19:45 -060054 }
beccabroeka30394b2018-12-14 17:19:45 -060055}