beccabroek | a30394b | 2018-12-14 17:19:45 -0600 | [diff] [blame] | 1 | // Overrides style for ngToast notifications |
| 2 | .ng-toast { |
Yoshie Muranaka | 5e930c0 | 2019-10-16 08:13:53 -0700 | [diff] [blame^] | 3 | margin-top: 9rem; |
beccabroek | a30394b | 2018-12-14 17:19:45 -0600 | [diff] [blame] | 4 | .close { |
Yoshie Muranaka | 5e930c0 | 2019-10-16 08:13:53 -0700 | [diff] [blame^] | 5 | color: $text-01; |
| 6 | opacity: 1; |
| 7 | font-size: 1.2rem; |
| 8 | font-weight: 400; |
beccabroek | a30394b | 2018-12-14 17:19:45 -0600 | [diff] [blame] | 9 | } |
| 10 | .alert { |
Yoshie Muranaka | 5e930c0 | 2019-10-16 08:13:53 -0700 | [diff] [blame^] | 11 | border: none; //override inherited border styles |
beccabroek | a30394b | 2018-12-14 17:19:45 -0600 | [diff] [blame] | 12 | border-radius: 0; |
Yoshie Muranaka | 5e930c0 | 2019-10-16 08:13:53 -0700 | [diff] [blame^] | 13 | border-left-width: 3px; |
| 14 | border-left-style: solid; |
beccabroek | a30394b | 2018-12-14 17:19:45 -0600 | [diff] [blame] | 15 | text-align: left; |
Yoshie Muranaka | 5e930c0 | 2019-10-16 08:13:53 -0700 | [diff] [blame^] | 16 | 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; |
beccabroek | a30394b | 2018-12-14 17:19:45 -0600 | [diff] [blame] | 54 | } |
beccabroek | a30394b | 2018-12-14 17:19:45 -0600 | [diff] [blame] | 55 | } |