@enki-tek/fms-web-components 0.0.58 → 0.0.60

Sign up to get free protection for your applications and to get access to all the features.
Files changed (39) hide show
  1. package/components/Accordion/Accordion.svelte +3 -3
  2. package/components/Accordion/AccordionItem.svelte +3 -3
  3. package/components/Badge/Badge.svelte +3 -3
  4. package/components/Breadcrumb/Breadcrumb.svelte +3 -3
  5. package/components/Button/Button.scss +233 -14
  6. package/components/Button/Button.svelte +218 -17
  7. package/components/Button/Button.svelte.d.ts +2 -0
  8. package/components/Button/ButtonFilter.svelte +3 -3
  9. package/components/Button/FilterOption.svelte +3 -3
  10. package/components/Button/buttonConfig.js +0 -18
  11. package/components/CardIcon/CardIcon.svelte +3 -3
  12. package/components/CardIcon/CardiconBody.svelte +3 -3
  13. package/components/CardIcon/CardiconSubtitle.svelte +3 -3
  14. package/components/CardIcon/CardiconTitle.svelte +3 -3
  15. package/components/CheckBox/Checkbox.svelte +3 -3
  16. package/components/Dropdown/Dropdown.svelte +3 -3
  17. package/components/Dropdown/DropdownItem.svelte +3 -3
  18. package/components/EnkiSidbar/EnkiSidebar.svelte +3 -3
  19. package/components/EnkiSidbar/NavIcon.svelte +3 -3
  20. package/components/EnkiSidbar/NavItem.svelte +3 -3
  21. package/components/EnkiSidbar/NavLink.svelte +3 -3
  22. package/components/Header/Brand.svelte +3 -3
  23. package/components/Header/Header.svelte +3 -3
  24. package/components/Header/HeaderItem.svelte +3 -3
  25. package/components/Header/UserAvatar.svelte +3 -3
  26. package/components/ModalWindow/Modal.svelte +3 -3
  27. package/components/ModalWindow/ModalBody.svelte +3 -3
  28. package/components/ModalWindow/ModalFooter.svelte +3 -3
  29. package/components/ModalWindow/ModalHeader.svelte +3 -3
  30. package/components/Pagination/Pagination.svelte +3 -3
  31. package/components/RadioButton/RadioButton.svelte +3 -3
  32. package/components/Sidebar/Sidebar.svelte +3 -3
  33. package/components/Switches/Switch.svelte +3 -3
  34. package/components/Tab/Tab.svelte +3 -3
  35. package/components/TextField/TextField.scss +4 -3
  36. package/components/TextField/TextField.svelte +7 -5
  37. package/components/Tooltip/Tooltip.svelte +3 -3
  38. package/components/variable.scss +3 -15
  39. package/package.json +1 -1
@@ -9,10 +9,11 @@
9
9
  export let size = '';
10
10
  export let disabled =false;
11
11
  export let className = "";
12
+ export let id='';
12
13
 
13
14
  let buttonStyles = [className];
14
15
  if (buttonConfig.hasOwnProperty(config)) {
15
- buttonStyles = ['ebtn', ...buttonConfig[config], `ebg-${shade}`, `eoutline-${outlineShade}`, `ebtn-${size}`, `disabled`,className];
16
+ buttonStyles = ['ebtn', ...buttonConfig[config], `ebg-${shade}`, `eoutline-${outlineShade}`, `ebtn-${size}`,`ebtn-${shade}:hover`,`ebtn-${shade}:focus` ,`disabled`,className];
16
17
  }
17
18
 
18
19
  // icon button
@@ -26,7 +27,7 @@
26
27
  }
27
28
  </script>
28
29
 
29
- <button {...$$restProps} {type} class={buttonStyles.join(' ')} on:click on:focus on:blur {disabled} >
30
+ <button {...$$restProps} {type} id={id} class={buttonStyles.join(' ')} on:click on:focus on:blur {disabled} >
30
31
  <slot>
31
32
  {#if label}
32
33
  {label}
@@ -124,67 +125,135 @@
124
125
  background-color: #ffffff !important;
125
126
  color: #000000 !important;
126
127
  }
127
- .ebg-secondary,
128
- .eactive-secondary:active,
129
- .ehover-secondary:hover {
130
- background-color: #3AC82E !important;
128
+ .ebg-secondary {
129
+ background-color: #3AC82E;
130
+ }
131
+ .ebg-secondary:hover, .ebg-secondary:focus {
132
+ background-color: #00A855;
133
+ transition: all 0.3s;
131
134
  }
132
- .ebg-secondaryDark,
133
- .eactive-secondaryDark:active,
134
- .ehover-secondaryDark:hover {
135
+ .ebg-secondaryDark {
135
136
  background-color: #00A855;
136
137
  }
137
- .ebg-secondaryLight,
138
- .eactive-secondaryLight:active,
139
- .ehover-secondaryLight:hover {
138
+ .ebg-secondaryDark:hover, .ebg-secondaryDark:focus {
139
+ background-color: #3AC82E;
140
+ transition: all 0.3s;
141
+ }
142
+ .ebg-secondaryLight {
140
143
  background-color: #CBFFC7;
141
144
  }
145
+ .ebg-secondaryLight:hover, .ebg-secondaryLight:focus {
146
+ background-color: #3AC82E;
147
+ transition: all 0.3s;
148
+ }
142
149
  .ebg-primary {
143
150
  background-color: #00AEE5;
144
151
  }
152
+ .ebg-primary:hover, .ebg-primary:focus {
153
+ background-color: #007FD8;
154
+ transition: all 0.3s;
155
+ }
145
156
  .ebg-primaryDark {
146
157
  background-color: #007FD8;
147
158
  }
159
+ .ebg-primaryDark:hover, .ebg-primaryDark:focus {
160
+ background-color: #00AEE5;
161
+ transition: all 0.3s;
162
+ }
148
163
  .ebg-primaryLight {
149
164
  background-color: #CEF3FF;
150
165
  }
166
+ .ebg-primaryLight:hover, .ebg-primaryLight:focus {
167
+ transition: all 0.3s;
168
+ background-color: #00AEE5;
169
+ transition: all 0.3s;
170
+ }
151
171
  .ebg-danger {
152
172
  background-color: #FE4747;
153
173
  }
174
+ .ebg-danger:hover, .ebg-danger:focus {
175
+ transition: all 0.3s;
176
+ background-color: #B02A37;
177
+ }
154
178
  .ebg-dangerDark {
155
179
  background-color: #B02A37;
156
180
  }
181
+ .ebg-dangerDark:hover, .ebg-dangerDark:focus {
182
+ transition: all 0.3s;
183
+ background-color: #FE4747;
184
+ }
157
185
  .ebg-dangerLight {
186
+ background-color: #f8d7da;
187
+ }
188
+ .ebg-dangerLight:hover, .ebg-dangerLight:focus {
189
+ transition: all 0.3s;
158
190
  background-color: #FE4747;
159
191
  }
160
192
  .ebg-warning {
161
193
  background-color: #FFBA3A;
162
194
  }
195
+ .ebg-warning:hover, .ebg-warning:focus {
196
+ transition: all 0.3s;
197
+ background-color: #997404;
198
+ }
163
199
  .ebg-warningDark {
164
200
  background-color: #997404;
165
201
  color: #ffffff !important;
166
202
  }
203
+ .ebg-warningDark:hover, .ebg-warningDark:focus {
204
+ transition: all 0.3s;
205
+ background-color: #FFBA3A;
206
+ color: #ffffff !important;
207
+ }
167
208
  .ebg-warningLight {
168
209
  background-color: #FFF3CD;
169
210
  }
211
+ .ebg-warningLight:hover, .ebg-warningLight:focus {
212
+ transition: all 0.3s;
213
+ background-color: #FFBA3A;
214
+ }
170
215
  .ebg-info {
171
216
  background-color: #0DCAF0;
172
217
  }
218
+ .ebg-info:hover, .ebg-info:focus {
219
+ transition: all 0.3s;
220
+ background-color: #087990;
221
+ }
173
222
  .ebg-infoDark {
174
223
  background-color: #087990;
175
224
  }
225
+ .ebg-infoDark:hover, .ebg-infoDark:focus {
226
+ transition: all 0.3s;
227
+ background-color: #0DCAF0;
228
+ }
176
229
  .ebg-infoLight {
177
230
  background-color: #9EEAF9;
178
231
  }
232
+ .ebg-infoLight:hover, .ebg-infoLight:focus {
233
+ transition: all 0.3s;
234
+ background-color: #0DCAF0;
235
+ }
179
236
  .ebg-success {
180
237
  background-color: #00A96B;
181
238
  }
239
+ .ebg-success:hover, .ebg-success:focus {
240
+ transition: all 0.3s;
241
+ background-color: #146C43;
242
+ }
182
243
  .ebg-successDark {
183
244
  background-color: #146C43;
184
245
  }
246
+ .ebg-successDark:hover, .ebg-successDark:focus {
247
+ transition: all 0.3s;
248
+ background-color: #00A96B;
249
+ }
185
250
  .ebg-successLight {
186
251
  background-color: #D1E7DD;
187
252
  }
253
+ .ebg-successLight:hover, .ebg-successLight:focus {
254
+ transition: all 0.3s;
255
+ background-color: #00A96B;
256
+ }
188
257
  .ebg-gray100 {
189
258
  background-color: #F8F9FA;
190
259
  }
@@ -351,7 +420,7 @@
351
420
  color: #B02A37;
352
421
  }
353
422
  .etext-dangerLight {
354
- color: #FE4747;
423
+ color: #f8d7da;
355
424
  }
356
425
  .etext-info {
357
426
  color: #0DCAF0;
@@ -517,33 +586,143 @@
517
586
  }
518
587
  .eoutline-secondary {
519
588
  outline: 1px solid #3AC82E;
589
+ background-color: #ffffff;
590
+ }
591
+ .eoutline-secondary:hover {
592
+ transition: all 0.3s;
593
+ background-color: #CBFFC7;
594
+ color: #00A855;
595
+ }
596
+ .eoutline-secondary:focus {
597
+ transition: all 0.3s;
598
+ background-color: #CBFFC7;
599
+ color: #00A855;
520
600
  }
521
601
  .eoutline-secondaryDark {
522
602
  outline: 1px solid #00A855;
603
+ background-color: #ffffff;
604
+ }
605
+ .eoutline-secondaryDark:hover {
606
+ transition: all 0.3s;
607
+ background-color: #CBFFC7;
608
+ color: #00A855;
609
+ }
610
+ .eoutline-secondaryDark:focus {
611
+ transition: all 0.3s;
612
+ background-color: #CBFFC7;
613
+ color: #00A855;
523
614
  }
524
615
  .eoutline-secondaryLight {
525
616
  outline: 1px solid #CBFFC7;
617
+ background-color: #ffffff;
618
+ }
619
+ .eoutline-secondaryLight:hover {
620
+ transition: all 0.3s;
621
+ background-color: #CBFFC7;
622
+ color: #00A855;
623
+ }
624
+ .eoutline-secondaryLight:focus {
625
+ transition: all 0.3s;
626
+ background-color: #CBFFC7;
627
+ color: #00A855;
526
628
  }
527
629
  .eoutline-primary {
528
630
  outline: 1px solid #00AEE5;
631
+ background-color: #ffffff;
632
+ }
633
+ .eoutline-primary:hover {
634
+ transition: all 0.3s;
635
+ background-color: #CEF3FF;
636
+ color: #007FD8;
637
+ }
638
+ .eoutline-primary:focus {
639
+ transition: all 0.3s;
640
+ background-color: #CEF3FF;
641
+ color: #007FD8;
529
642
  }
530
643
  .eoutline-primaryDark {
531
644
  outline: 1px solid #007FD8;
645
+ background-color: #ffffff;
646
+ }
647
+ .eoutline-primaryDark:hover {
648
+ transition: all 0.3s;
649
+ background-color: #CEF3FF;
650
+ color: #007FD8;
651
+ }
652
+ .eoutline-primaryDark:focus {
653
+ transition: all 0.3s;
654
+ background-color: #CEF3FF;
655
+ color: #007FD8;
532
656
  }
533
657
  .eoutline-primaryLight {
534
658
  outline: 1px solid #CEF3FF;
659
+ background-color: #ffffff;
660
+ }
661
+ .eoutline-primaryLight:hover {
662
+ transition: all 0.3s;
663
+ background-color: #CEF3FF;
664
+ color: #007FD8;
665
+ }
666
+ .eoutline-primaryLight:focus {
667
+ transition: all 0.3s;
668
+ background-color: #CEF3FF;
669
+ color: #007FD8;
535
670
  }
536
671
  .eoutline-danger {
537
672
  outline: 1px solid #FE4747;
673
+ background-color: #ffffff;
674
+ }
675
+ .eoutline-danger:hover {
676
+ transition: all 0.3s;
677
+ background-color: #f8d7da;
678
+ color: #B02A37;
679
+ }
680
+ .eoutline-danger:focus {
681
+ transition: all 0.3s;
682
+ background-color: #f8d7da;
683
+ color: #B02A37;
538
684
  }
539
685
  .eoutline-dangerDark {
540
686
  outline: 1px solid #B02A37;
687
+ background-color: #ffffff;
688
+ }
689
+ .eoutline-dangerDark:hover {
690
+ transition: all 0.3s;
691
+ background-color: #f8d7da;
692
+ color: #B02A37;
693
+ }
694
+ .eoutline-dangerDark:focus {
695
+ transition: all 0.3s;
696
+ background-color: #f8d7da;
697
+ color: #B02A37;
541
698
  }
542
699
  .eoutline-dangerLight {
543
- outline: 1px solid #FE4747;
700
+ outline: 1px solid #f8d7da;
701
+ background-color: #ffffff;
702
+ }
703
+ .eoutline-dangerLight:hover {
704
+ transition: all 0.3s;
705
+ background-color: #f8d7da;
706
+ color: #B02A37;
707
+ }
708
+ .eoutline-dangerLight:focus {
709
+ transition: all 0.3s;
710
+ background-color: #f8d7da;
711
+ color: #B02A37;
544
712
  }
545
713
  .eoutline-success {
546
714
  outline: 1px solid #00A96B;
715
+ background-color: #ffffff;
716
+ }
717
+ .eoutline-success:hover {
718
+ transition: all 0.3s;
719
+ background-color: #D1E7DD;
720
+ color: #146C43;
721
+ }
722
+ .eoutline-success:focus {
723
+ transition: all 0.3s;
724
+ background-color: #D1E7DD;
725
+ color: #146C43;
547
726
  }
548
727
  .eoutline-successDark {
549
728
  outline: 1px solid #146C43;
@@ -553,6 +732,17 @@
553
732
  }
554
733
  .eoutline-info {
555
734
  outline: 1px solid #0DCAF0;
735
+ background-color: #ffffff;
736
+ }
737
+ .eoutline-info:hover {
738
+ transition: all 0.3s;
739
+ background-color: #9EEAF9;
740
+ color: #087990;
741
+ }
742
+ .eoutline-info:focus {
743
+ transition: all 0.3s;
744
+ background-color: #9EEAF9;
745
+ color: #087990;
556
746
  }
557
747
  .eoutline-infoDark {
558
748
  outline: 1px solid #087990;
@@ -562,6 +752,17 @@
562
752
  }
563
753
  .eoutline-warning {
564
754
  outline: 1px solid #FFBA3A;
755
+ background-color: #ffffff;
756
+ }
757
+ .eoutline-warning:hover {
758
+ transition: all 0.3s;
759
+ background-color: #FFF3CD;
760
+ color: #997404;
761
+ }
762
+ .eoutline-warning:focus {
763
+ transition: all 0.3s;
764
+ background-color: #FFF3CD;
765
+ color: #997404;
565
766
  }
566
767
  .eoutline-warningDark {
567
768
  outline: 1px solid #997404;
@@ -600,7 +801,7 @@
600
801
  background-color: #B02A37;
601
802
  }
602
803
  :global(.ebg-dangerLight) {
603
- background-color: #FE4747;
804
+ background-color: #f8d7da;
604
805
  }
605
806
  :global(.ebg-warning) {
606
807
  background-color: #FFBA3A;
@@ -796,7 +997,7 @@
796
997
  color: #B02A37;
797
998
  }
798
999
  :global(.etext-dangerLight) {
799
- color: #FE4747;
1000
+ color: #f8d7da;
800
1001
  }
801
1002
  :global(.etext-info) {
802
1003
  color: #0DCAF0;
@@ -985,7 +1186,7 @@
985
1186
  outline: 1px solid #B02A37;
986
1187
  }
987
1188
  :global(.eoutline-dangerLight) {
988
- outline: 1px solid #FE4747;
1189
+ outline: 1px solid #f8d7da;
989
1190
  }
990
1191
  :global(.eoutline-success) {
991
1192
  outline: 1px solid #00A96B;
@@ -4,6 +4,7 @@
4
4
  export default class Button extends SvelteComponentTyped<{
5
5
  [x: string]: any;
6
6
  size?: string | undefined;
7
+ id?: string | undefined;
7
8
  disabled?: boolean | undefined;
8
9
  type?: string | undefined;
9
10
  label?: string | undefined;
@@ -34,6 +35,7 @@ declare const __propDef: {
34
35
  props: {
35
36
  [x: string]: any;
36
37
  size?: string | undefined;
38
+ id?: string | undefined;
37
39
  disabled?: boolean | undefined;
38
40
  type?: string | undefined;
39
41
  label?: string | undefined;
@@ -118,7 +118,7 @@
118
118
  background-color: #B02A37;
119
119
  }
120
120
  :global(.ebg-dangerLight) {
121
- background-color: #FE4747;
121
+ background-color: #f8d7da;
122
122
  }
123
123
  :global(.ebg-warning) {
124
124
  background-color: #FFBA3A;
@@ -314,7 +314,7 @@
314
314
  color: #B02A37;
315
315
  }
316
316
  :global(.etext-dangerLight) {
317
- color: #FE4747;
317
+ color: #f8d7da;
318
318
  }
319
319
  :global(.etext-info) {
320
320
  color: #0DCAF0;
@@ -503,7 +503,7 @@
503
503
  outline: 1px solid #B02A37;
504
504
  }
505
505
  :global(.eoutline-dangerLight) {
506
- outline: 1px solid #FE4747;
506
+ outline: 1px solid #f8d7da;
507
507
  }
508
508
  :global(.eoutline-success) {
509
509
  outline: 1px solid #00A96B;
@@ -104,7 +104,7 @@
104
104
  background-color: #B02A37;
105
105
  }
106
106
  :global(.ebg-dangerLight) {
107
- background-color: #FE4747;
107
+ background-color: #f8d7da;
108
108
  }
109
109
  :global(.ebg-warning) {
110
110
  background-color: #FFBA3A;
@@ -300,7 +300,7 @@
300
300
  color: #B02A37;
301
301
  }
302
302
  :global(.etext-dangerLight) {
303
- color: #FE4747;
303
+ color: #f8d7da;
304
304
  }
305
305
  :global(.etext-info) {
306
306
  color: #0DCAF0;
@@ -489,7 +489,7 @@
489
489
  outline: 1px solid #B02A37;
490
490
  }
491
491
  :global(.eoutline-dangerLight) {
492
- outline: 1px solid #FE4747;
492
+ outline: 1px solid #f8d7da;
493
493
  }
494
494
  :global(.eoutline-success) {
495
495
  outline: 1px solid #00A96B;
@@ -94,109 +94,91 @@ export const buttonConfig = {
94
94
 
95
95
  "secondaryOutlineBtnLarge" :[
96
96
  "ebtn-large",
97
- "ebg-none",
98
97
  "etext-secondary",
99
98
  "eoutline-secondary",
100
99
  ],
101
100
  "secondaryOutlineBtnMedium" :[
102
101
  "ebtn-medium",
103
- "ebg-none",
104
102
  "etext-secondary",
105
103
  "eoutline-secondary"
106
104
  ],
107
105
  "secondaryOutlineBtnSmall" :[
108
106
  "ebtn-small",
109
- "ebg-none",
110
107
  "etext-secondary",
111
108
  "eoutline-secondary"
112
109
  ],
113
110
  "primaryOutlineBtnLarge" :[
114
111
  "ebtn-large",
115
- "ebg-none",
116
112
  "etext-primary",
117
113
  "eoutline-primary"
118
114
  ],
119
115
  "primaryOutlineBtnMedium" :[
120
116
  "ebtn-medium",
121
- "ebg-none",
122
117
  "etext-primary",
123
118
  "eoutline-primary"
124
119
  ],
125
120
  "primaryOutlineBtnSmall" :[
126
121
  "ebtn-small",
127
- "ebg-none",
128
122
  "etext-primary",
129
123
  "eoutline-primary"
130
124
  ],
131
125
  "infoOutlineBtnLarge" :[
132
126
  "ebtn-large",
133
- "ebg-none",
134
127
  "etext-info",
135
128
  "eoutline-info"
136
129
  ],
137
130
  "infoOutlineBtnMedium" :[
138
131
  "ebtn-medium",
139
- "ebg-none",
140
132
  "etext-info",
141
133
  "eoutline-info"
142
134
  ],
143
135
  "infoOutlineBtnSmall" :[
144
136
  "ebtn-small",
145
- "ebg-none",
146
137
  "etext-info",
147
138
  "eoutline-info"
148
139
  ],
149
140
  "warningOutlineBtnSmall" :[
150
141
  "ebtn-small",
151
- "ebg-none",
152
142
  "etext-warning",
153
143
  "eoutline-warning"
154
144
  ],
155
145
  "warningOutlineBtnLarge" :[
156
146
  "ebtn-large",
157
- "ebg-none",
158
147
  "etext-warning",
159
148
  "eoutline-warning"
160
149
  ],
161
150
  "warningOutlineBtnMedium" :[
162
151
  "ebtn-medium",
163
- "ebg-none",
164
152
  "etext-warning",
165
153
  "eoutline-warning"
166
154
  ],
167
155
  "dangerOutlineBtnLarge" :[
168
156
  "ebtn-large",
169
- "ebg-none",
170
157
  "etext-danger",
171
158
  "eoutline-danger"
172
159
  ],
173
160
  "dangerOutlineBtnMedium" :[
174
161
  "ebtn-medium",
175
- "ebg-none",
176
162
  "etext-danger",
177
163
  "eoutline-danger"
178
164
  ],
179
165
  "dangerOutlineBtnSmall" :[
180
166
  "ebtn-small",
181
- "ebg-none",
182
167
  "etext-danger",
183
168
  "eoutline-danger"
184
169
  ],
185
170
  "successOutlineBtnLarge" :[
186
171
  "ebtn-large",
187
- "ebg-none",
188
172
  "etext-success",
189
173
  "eoutline-success"
190
174
  ],
191
175
  "successOutlineBtnMedium" :[
192
176
  "ebtn-medium",
193
- "ebg-none",
194
177
  "etext-success",
195
178
  "eoutline-success"
196
179
  ],
197
180
  "successOutlineBtnSmall" :[
198
181
  "ebtn-small",
199
- "ebg-none",
200
182
  "etext-success",
201
183
  "eoutline-success"
202
184
  ],
@@ -136,7 +136,7 @@ if (titleConfig.includes(titleLocation)) {
136
136
  background-color: #B02A37;
137
137
  }
138
138
  :global(.ebg-dangerLight) {
139
- background-color: #FE4747;
139
+ background-color: #f8d7da;
140
140
  }
141
141
  :global(.ebg-warning) {
142
142
  background-color: #FFBA3A;
@@ -332,7 +332,7 @@ if (titleConfig.includes(titleLocation)) {
332
332
  color: #B02A37;
333
333
  }
334
334
  :global(.etext-dangerLight) {
335
- color: #FE4747;
335
+ color: #f8d7da;
336
336
  }
337
337
  :global(.etext-info) {
338
338
  color: #0DCAF0;
@@ -521,7 +521,7 @@ if (titleConfig.includes(titleLocation)) {
521
521
  outline: 1px solid #B02A37;
522
522
  }
523
523
  :global(.eoutline-dangerLight) {
524
- outline: 1px solid #FE4747;
524
+ outline: 1px solid #f8d7da;
525
525
  }
526
526
  :global(.eoutline-success) {
527
527
  outline: 1px solid #00A96B;
@@ -131,7 +131,7 @@
131
131
  background-color: #B02A37;
132
132
  }
133
133
  :global(.ebg-dangerLight) {
134
- background-color: #FE4747;
134
+ background-color: #f8d7da;
135
135
  }
136
136
  :global(.ebg-warning) {
137
137
  background-color: #FFBA3A;
@@ -327,7 +327,7 @@
327
327
  color: #B02A37;
328
328
  }
329
329
  :global(.etext-dangerLight) {
330
- color: #FE4747;
330
+ color: #f8d7da;
331
331
  }
332
332
  :global(.etext-info) {
333
333
  color: #0DCAF0;
@@ -516,7 +516,7 @@
516
516
  outline: 1px solid #B02A37;
517
517
  }
518
518
  :global(.eoutline-dangerLight) {
519
- outline: 1px solid #FE4747;
519
+ outline: 1px solid #f8d7da;
520
520
  }
521
521
  :global(.eoutline-success) {
522
522
  outline: 1px solid #00A96B;
@@ -140,7 +140,7 @@
140
140
  background-color: #B02A37;
141
141
  }
142
142
  :global(.ebg-dangerLight) {
143
- background-color: #FE4747;
143
+ background-color: #f8d7da;
144
144
  }
145
145
  :global(.ebg-warning) {
146
146
  background-color: #FFBA3A;
@@ -336,7 +336,7 @@
336
336
  color: #B02A37;
337
337
  }
338
338
  :global(.etext-dangerLight) {
339
- color: #FE4747;
339
+ color: #f8d7da;
340
340
  }
341
341
  :global(.etext-info) {
342
342
  color: #0DCAF0;
@@ -525,7 +525,7 @@
525
525
  outline: 1px solid #B02A37;
526
526
  }
527
527
  :global(.eoutline-dangerLight) {
528
- outline: 1px solid #FE4747;
528
+ outline: 1px solid #f8d7da;
529
529
  }
530
530
  :global(.eoutline-success) {
531
531
  outline: 1px solid #00A96B;
@@ -140,7 +140,7 @@
140
140
  background-color: #B02A37;
141
141
  }
142
142
  :global(.ebg-dangerLight) {
143
- background-color: #FE4747;
143
+ background-color: #f8d7da;
144
144
  }
145
145
  :global(.ebg-warning) {
146
146
  background-color: #FFBA3A;
@@ -336,7 +336,7 @@
336
336
  color: #B02A37;
337
337
  }
338
338
  :global(.etext-dangerLight) {
339
- color: #FE4747;
339
+ color: #f8d7da;
340
340
  }
341
341
  :global(.etext-info) {
342
342
  color: #0DCAF0;
@@ -525,7 +525,7 @@
525
525
  outline: 1px solid #B02A37;
526
526
  }
527
527
  :global(.eoutline-dangerLight) {
528
- outline: 1px solid #FE4747;
528
+ outline: 1px solid #f8d7da;
529
529
  }
530
530
  :global(.eoutline-success) {
531
531
  outline: 1px solid #00A96B;
@@ -89,7 +89,7 @@
89
89
  background-color: #B02A37;
90
90
  }
91
91
  :global(.ebg-dangerLight) {
92
- background-color: #FE4747;
92
+ background-color: #f8d7da;
93
93
  }
94
94
  :global(.ebg-warning) {
95
95
  background-color: #FFBA3A;
@@ -285,7 +285,7 @@
285
285
  color: #B02A37;
286
286
  }
287
287
  :global(.etext-dangerLight) {
288
- color: #FE4747;
288
+ color: #f8d7da;
289
289
  }
290
290
  :global(.etext-info) {
291
291
  color: #0DCAF0;
@@ -474,7 +474,7 @@
474
474
  outline: 1px solid #B02A37;
475
475
  }
476
476
  :global(.eoutline-dangerLight) {
477
- outline: 1px solid #FE4747;
477
+ outline: 1px solid #f8d7da;
478
478
  }
479
479
  :global(.eoutline-success) {
480
480
  outline: 1px solid #00A96B;