@transfermarkt/global-styles 1.21.0 → 1.23.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,10 +5,9 @@
5
5
  @use '../../../mixins/icon' as *;
6
6
 
7
7
  // "!importants" can be removed if the styles are not overridden by other styles (comes often from main.scss)
8
-
9
8
  .tm-btn {
10
9
  $font-size-small: rem-calc(12);
11
- $font-size-medium: rem-calc(15);
10
+ $font-size-medium: rem-calc(14);
12
11
  $position: 'right';
13
12
 
14
13
  align-items: center;
@@ -26,6 +25,10 @@
26
25
  padding: rem-calc(8) rem-calc(20);
27
26
  position: relative;
28
27
  text-decoration: none;
28
+ transition:
29
+ background-color 100ms linear,
30
+ color 100ms linear,
31
+ border-color 100ms linear;
29
32
 
30
33
  &--full-size {
31
34
  display: flex;
@@ -54,10 +57,11 @@
54
57
  }
55
58
 
56
59
  &__primary {
57
- background-color: tm-color('dark-blue-new');
60
+ background-color: tm-color('light-blue-new');
58
61
 
59
62
  &--large {
60
63
  height: rem-calc(40);
64
+ letter-spacing: rem-calc(1);
61
65
  text-transform: uppercase;
62
66
  }
63
67
 
@@ -71,22 +75,18 @@
71
75
  &--small {
72
76
  font-size: $font-size-small;
73
77
  height: rem-calc(30);
78
+ line-height: normal;
74
79
  padding: rem-calc(8) rem-calc(12);
75
80
  }
76
81
 
77
82
  &:hover {
78
- background-color: tm-color('light-blue-new');
83
+ background-color: tm-color('dark-blue-new');
79
84
  text-decoration: none;
80
85
  }
81
86
 
82
87
  &--disabled {
83
- background-color: tm-color('gainsboro-new');
84
- color: tm-color('grey-new');
85
-
86
- &:hover {
87
- background-color: tm-color('gainsboro-new');
88
- color: tm-color('grey-new');
89
- }
88
+ background-color: tm-color('soft-sky');
89
+ color: tm-color('white');
90
90
  }
91
91
 
92
92
  &--warning {
@@ -112,7 +112,8 @@
112
112
 
113
113
  &__secondary {
114
114
  background-color: unset;
115
- color: tm-color('admiral');
115
+ border: 1px solid;
116
+ color: tm-color('light-blue-new');
116
117
 
117
118
  &--large {
118
119
  text-transform: uppercase;
@@ -127,21 +128,22 @@
127
128
  }
128
129
 
129
130
  &:hover {
130
- color: tm-color('light-blue-new');
131
+ border: 1px solid;
132
+ color: tm-color('dark-blue-new');
131
133
  text-decoration: none;
132
134
  }
133
135
 
134
136
  &--disabled {
135
- background-color: tm-color('gainsboro-new');
136
- color: tm-color('grey-new');
137
+ border: 1px solid;
138
+ color: tm-color('soft-sky');
137
139
 
138
140
  &:hover {
139
- background-color: tm-color('gainsboro-new');
140
- color: tm-color('grey-new');
141
+ color: tm-color('soft-sky');
141
142
  }
142
143
  }
143
144
 
144
145
  &--warning {
146
+ border: 1px solid tm-color('warning-new');
145
147
  color: tm-color('warning-new');
146
148
 
147
149
  &:hover {
@@ -150,6 +152,7 @@
150
152
  }
151
153
 
152
154
  &--success {
155
+ border: 1px solid tm-color('success-dark');
153
156
  color: tm-color('success-dark');
154
157
 
155
158
  &:hover {
@@ -162,10 +165,43 @@
162
165
  }
163
166
  }
164
167
 
168
+ &__secondary-greys {
169
+ background-color: unset;
170
+ border: 1px solid tm-color('silver-mist');
171
+ color: tm-color('admiral');
172
+
173
+ &--large {
174
+ text-transform: uppercase;
175
+ }
176
+
177
+ &--medium {
178
+ font-size: $font-size-medium;
179
+ }
180
+
181
+ &--small {
182
+ font-size: $font-size-small;
183
+ }
184
+
185
+ &:hover {
186
+ border: 1px solid tm-color('grey-new');
187
+ color: tm-color('admiral');
188
+ text-decoration: none;
189
+ }
190
+
191
+ &--disabled {
192
+ border: 1px solid tm-color('silver-mist');
193
+ color: tm-color('silver-mist');
194
+
195
+ &:hover {
196
+ border: 1px solid tm-color('silver-mist');
197
+ color: tm-color('silver-mist');
198
+ }
199
+ }
200
+ }
201
+
165
202
  &__tertiary {
166
203
  background-color: tm-color('white');
167
- border: 1px solid #d9dde2;
168
- color: tm-color('admiral');
204
+ color: tm-color('light-blue-new');
169
205
 
170
206
  &--large {
171
207
  text-transform: uppercase;
@@ -180,17 +216,15 @@
180
216
  }
181
217
 
182
218
  &:hover {
183
- color: tm-color('light-blue-new');
219
+ color: tm-color('dark-blue-new');
184
220
  text-decoration: none;
185
221
  }
186
222
 
187
223
  &--disabled {
188
- background-color: tm-color('gainsboro-new');
189
- color: tm-color('grey-new');
224
+ color: tm-color('soft-sky');
190
225
 
191
226
  &:hover {
192
- background-color: tm-color('gainsboro-new');
193
- color: tm-color('grey-new');
227
+ color: tm-color('soft-sky');
194
228
  }
195
229
  }
196
230
 
@@ -210,6 +244,66 @@
210
244
  }
211
245
  }
212
246
  }
247
+
248
+ &__tertiary-blue {
249
+ background-color: unset;
250
+ color: tm-color('light-blue-new');
251
+
252
+ &--large {
253
+ text-transform: uppercase;
254
+ }
255
+
256
+ &--medium {
257
+ font-size: $font-size-medium;
258
+ }
259
+
260
+ &--small {
261
+ font-size: $font-size-small;
262
+ }
263
+
264
+ &:hover {
265
+ color: tm-color('dark-blue-new');
266
+ text-decoration: none;
267
+ }
268
+
269
+ &--disabled {
270
+ color: tm-color('soft-sky');
271
+
272
+ &:hover {
273
+ color: tm-color('soft-sky');
274
+ }
275
+ }
276
+ }
277
+
278
+ &__tertiary-grey {
279
+ background-color: unset;
280
+ color: tm-color('admiral');
281
+
282
+ &--large {
283
+ text-transform: uppercase;
284
+ }
285
+
286
+ &--medium {
287
+ font-size: $font-size-medium;
288
+ }
289
+
290
+ &--small {
291
+ font-size: $font-size-small;
292
+ }
293
+
294
+ &:hover {
295
+ color: tm-color('admiral');
296
+ text-decoration: none;
297
+ }
298
+
299
+ &--disabled {
300
+ color: tm-color('silver-mist');
301
+
302
+ &:hover {
303
+ color: tm-color('silver-mist');
304
+ }
305
+ }
306
+ }
213
307
  }
214
308
 
215
309
  .tm-icon-collect {
@@ -221,14 +315,20 @@
221
315
 
222
316
  &--large {
223
317
  @include tm-icon-size(16px);
318
+
319
+ stroke-width: 1.8;
224
320
  }
225
321
 
226
322
  &--medium {
227
323
  @include tm-icon-size(16px);
324
+
325
+ stroke-width: 1.5;
228
326
  }
229
327
 
230
328
  &--small {
231
329
  @include tm-icon-size(14px);
330
+
331
+ stroke-width: 1.2;
232
332
  }
233
333
 
234
334
  &::before {
@@ -248,14 +348,20 @@
248
348
 
249
349
  &--large {
250
350
  @include tm-icon-size(16px);
351
+
352
+ stroke-width: 1.8;
251
353
  }
252
354
 
253
355
  &--medium {
254
356
  @include tm-icon-size(16px);
357
+
358
+ stroke-width: 1.5;
255
359
  }
256
360
 
257
361
  &--small {
258
362
  @include tm-icon-size(14px);
363
+
364
+ stroke-width: 1.2;
259
365
  }
260
366
 
261
367
  &:hover {
@@ -269,14 +375,20 @@
269
375
 
270
376
  &--large {
271
377
  @include tm-icon-size(16px);
378
+
379
+ stroke-width: 1.8;
272
380
  }
273
381
 
274
382
  &--medium {
275
383
  @include tm-icon-size(16px);
384
+
385
+ stroke-width: 1.5;
276
386
  }
277
387
 
278
388
  &--small {
279
389
  @include tm-icon-size(14px);
390
+
391
+ stroke-width: 1.2;
280
392
  }
281
393
 
282
394
  &::before {
@@ -295,14 +407,20 @@
295
407
 
296
408
  &--large {
297
409
  @include tm-icon-size(16px);
410
+
411
+ stroke-width: 1.8;
298
412
  }
299
413
 
300
414
  &--medium {
301
415
  @include tm-icon-size(16px);
416
+
417
+ stroke-width: 1.5;
302
418
  }
303
419
 
304
420
  &--small {
305
421
  @include tm-icon-size(14px);
422
+
423
+ stroke-width: 1.2;
306
424
  }
307
425
 
308
426
  &::before {
@@ -317,14 +435,20 @@
317
435
 
318
436
  &--large {
319
437
  @include tm-icon-size(16px);
438
+
439
+ stroke-width: 1.8;
320
440
  }
321
441
 
322
442
  &--medium {
323
443
  @include tm-icon-size(16px);
444
+
445
+ stroke-width: 1.5;
324
446
  }
325
447
 
326
448
  &--small {
327
449
  @include tm-icon-size(14px);
450
+
451
+ stroke-width: 1.2;
328
452
  }
329
453
  }
330
454
 
@@ -333,14 +457,20 @@
333
457
 
334
458
  &--large {
335
459
  @include tm-icon-size(16px);
460
+
461
+ stroke-width: 1.8;
336
462
  }
337
463
 
338
464
  &--medium {
339
465
  @include tm-icon-size(16px);
466
+
467
+ stroke-width: 1.5;
340
468
  }
341
469
 
342
470
  &--small {
343
471
  @include tm-icon-size(14px);
472
+
473
+ stroke-width: 1.2;
344
474
  }
345
475
 
346
476
  &::before {
@@ -355,14 +485,20 @@
355
485
 
356
486
  &--large {
357
487
  @include tm-icon-size(16px);
488
+
489
+ stroke-width: 1.8;
358
490
  }
359
491
 
360
492
  &--medium {
361
493
  @include tm-icon-size(16px);
494
+
495
+ stroke-width: 1.5;
362
496
  }
363
497
 
364
498
  &--small {
365
499
  @include tm-icon-size(14px);
500
+
501
+ stroke-width: 1.2;
366
502
  }
367
503
  }
368
504
 
@@ -373,14 +509,20 @@
373
509
 
374
510
  &--large {
375
511
  @include tm-icon-size(16px);
512
+
513
+ stroke-width: 1.8;
376
514
  }
377
515
 
378
516
  &--medium {
379
517
  @include tm-icon-size(16px);
518
+
519
+ stroke-width: 1.5;
380
520
  }
381
521
 
382
522
  &--small {
383
523
  @include tm-icon-size(14px);
524
+
525
+ stroke-width: 1.2;
384
526
  }
385
527
  }
386
528
 
@@ -389,14 +531,20 @@
389
531
 
390
532
  &--large {
391
533
  @include tm-icon-size(16px);
534
+
535
+ stroke-width: 1.8;
392
536
  }
393
537
 
394
538
  &--medium {
395
539
  @include tm-icon-size(16px);
540
+
541
+ stroke-width: 1.5;
396
542
  }
397
543
 
398
544
  &--small {
399
545
  @include tm-icon-size(14px);
546
+
547
+ stroke-width: 1.2;
400
548
  }
401
549
  }
402
550
 
@@ -407,14 +555,20 @@
407
555
 
408
556
  &--large {
409
557
  @include tm-icon-size(16px);
558
+
559
+ stroke-width: 1.8;
410
560
  }
411
561
 
412
562
  &--medium {
413
563
  @include tm-icon-size(16px);
564
+
565
+ stroke-width: 1.5;
414
566
  }
415
567
 
416
568
  &--small {
417
569
  @include tm-icon-size(14px);
570
+
571
+ stroke-width: 1.2;
418
572
  }
419
573
  }
420
574
 
@@ -425,14 +579,20 @@
425
579
 
426
580
  &--large {
427
581
  @include tm-icon-size(16px);
582
+
583
+ stroke-width: 1.8;
428
584
  }
429
585
 
430
586
  &--medium {
431
587
  @include tm-icon-size(16px);
588
+
589
+ stroke-width: 1.5;
432
590
  }
433
591
 
434
592
  &--small {
435
593
  @include tm-icon-size(14px);
594
+
595
+ stroke-width: 1.2;
436
596
  }
437
597
  }
438
598
 
@@ -441,14 +601,20 @@
441
601
 
442
602
  &--large {
443
603
  @include tm-icon-size(16px);
604
+
605
+ stroke-width: 1.8;
444
606
  }
445
607
 
446
608
  &--medium {
447
609
  @include tm-icon-size(16px);
610
+
611
+ stroke-width: 1.5;
448
612
  }
449
613
 
450
614
  &--small {
451
615
  @include tm-icon-size(14px);
616
+
617
+ stroke-width: 1.2;
452
618
  }
453
619
  }
454
620
 
@@ -459,14 +625,20 @@
459
625
 
460
626
  &--large {
461
627
  @include tm-icon-size(16px);
628
+
629
+ stroke-width: 1.8;
462
630
  }
463
631
 
464
632
  &--medium {
465
633
  @include tm-icon-size(16px);
634
+
635
+ stroke-width: 1.5;
466
636
  }
467
637
 
468
638
  &--small {
469
639
  @include tm-icon-size(14px);
640
+
641
+ stroke-width: 1.2;
470
642
  }
471
643
  }
472
644
 
@@ -477,14 +649,20 @@
477
649
 
478
650
  &--large {
479
651
  @include tm-icon-size(16px);
652
+
653
+ stroke-width: 1.8;
480
654
  }
481
655
 
482
656
  &--medium {
483
657
  @include tm-icon-size(16px);
658
+
659
+ stroke-width: 1.5;
484
660
  }
485
661
 
486
662
  &--small {
487
663
  @include tm-icon-size(14px);
664
+
665
+ stroke-width: 1.2;
488
666
  }
489
667
  }
490
668
 
@@ -493,14 +671,20 @@
493
671
 
494
672
  &--large {
495
673
  @include tm-icon-size(16px);
674
+
675
+ stroke-width: 1.8;
496
676
  }
497
677
 
498
678
  &--medium {
499
679
  @include tm-icon-size(16px);
680
+
681
+ stroke-width: 1.5;
500
682
  }
501
683
 
502
684
  &--small {
503
685
  @include tm-icon-size(14px);
686
+
687
+ stroke-width: 1.2;
504
688
  }
505
689
  }
506
690
 
@@ -511,14 +695,20 @@
511
695
 
512
696
  &--large {
513
697
  @include tm-icon-size(16px);
698
+
699
+ stroke-width: 1.8;
514
700
  }
515
701
 
516
702
  &--medium {
517
703
  @include tm-icon-size(16px);
704
+
705
+ stroke-width: 1.5;
518
706
  }
519
707
 
520
708
  &--small {
521
709
  @include tm-icon-size(14px);
710
+
711
+ stroke-width: 1.2;
522
712
  }
523
713
  }
524
714
 
@@ -529,14 +719,20 @@
529
719
 
530
720
  &--large {
531
721
  @include tm-icon-size(16px);
722
+
723
+ stroke-width: 1.8;
532
724
  }
533
725
 
534
726
  &--medium {
535
727
  @include tm-icon-size(16px);
728
+
729
+ stroke-width: 1.5;
536
730
  }
537
731
 
538
732
  &--small {
539
733
  @include tm-icon-size(14px);
734
+
735
+ stroke-width: 1.2;
540
736
  }
541
737
  }
542
738
 
@@ -545,14 +741,20 @@
545
741
 
546
742
  &--large {
547
743
  @include tm-icon-size(16px);
744
+
745
+ stroke-width: 1.8;
548
746
  }
549
747
 
550
748
  &--medium {
551
749
  @include tm-icon-size(16px);
750
+
751
+ stroke-width: 1.5;
552
752
  }
553
753
 
554
754
  &--small {
555
755
  @include tm-icon-size(14px);
756
+
757
+ stroke-width: 1.2;
556
758
  }
557
759
  }
558
760
 
@@ -563,14 +765,20 @@
563
765
 
564
766
  &--large {
565
767
  @include tm-icon-size(16px);
768
+
769
+ stroke-width: 1.8;
566
770
  }
567
771
 
568
772
  &--medium {
569
773
  @include tm-icon-size(16px);
774
+
775
+ stroke-width: 1.5;
570
776
  }
571
777
 
572
778
  &--small {
573
779
  @include tm-icon-size(14px);
780
+
781
+ stroke-width: 1.2;
574
782
  }
575
783
  }
576
784
 
@@ -581,14 +789,20 @@
581
789
 
582
790
  &--large {
583
791
  @include tm-icon-size(16px);
792
+
793
+ stroke-width: 1.8;
584
794
  }
585
795
 
586
796
  &--medium {
587
797
  @include tm-icon-size(16px);
798
+
799
+ stroke-width: 1.5;
588
800
  }
589
801
 
590
802
  &--small {
591
803
  @include tm-icon-size(14px);
804
+
805
+ stroke-width: 1.2;
592
806
  }
593
807
  }
594
808
 
@@ -597,14 +811,20 @@
597
811
 
598
812
  &--large {
599
813
  @include tm-icon-size(16px);
814
+
815
+ stroke-width: 1.8;
600
816
  }
601
817
 
602
818
  &--medium {
603
819
  @include tm-icon-size(16px);
820
+
821
+ stroke-width: 1.5;
604
822
  }
605
823
 
606
824
  &--small {
607
825
  @include tm-icon-size(14px);
826
+
827
+ stroke-width: 1.2;
608
828
  }
609
829
  }
610
830
 
@@ -615,14 +835,20 @@
615
835
 
616
836
  &--large {
617
837
  @include tm-icon-size(16px);
838
+
839
+ stroke-width: 1.8;
618
840
  }
619
841
 
620
842
  &--medium {
621
843
  @include tm-icon-size(16px);
844
+
845
+ stroke-width: 1.5;
622
846
  }
623
847
 
624
848
  &--small {
625
849
  @include tm-icon-size(14px);
850
+
851
+ stroke-width: 1.2;
626
852
  }
627
853
  }
628
854
 
@@ -633,14 +859,20 @@
633
859
 
634
860
  &--large {
635
861
  @include tm-icon-size(16px);
862
+
863
+ stroke-width: 1.8;
636
864
  }
637
865
 
638
866
  &--medium {
639
867
  @include tm-icon-size(16px);
868
+
869
+ stroke-width: 1.5;
640
870
  }
641
871
 
642
872
  &--small {
643
873
  @include tm-icon-size(14px);
874
+
875
+ stroke-width: 1.2;
644
876
  }
645
877
  }
646
878
 
@@ -649,14 +881,20 @@
649
881
 
650
882
  &--large {
651
883
  @include tm-icon-size(16px);
884
+
885
+ stroke-width: 1.8;
652
886
  }
653
887
 
654
888
  &--medium {
655
889
  @include tm-icon-size(16px);
890
+
891
+ stroke-width: 1.5;
656
892
  }
657
893
 
658
894
  &--small {
659
895
  @include tm-icon-size(14px);
896
+
897
+ stroke-width: 1.2;
660
898
  }
661
899
  }
662
900
 
@@ -667,14 +905,20 @@
667
905
 
668
906
  &--large {
669
907
  @include tm-icon-size(16px);
908
+
909
+ stroke-width: 1.8;
670
910
  }
671
911
 
672
912
  &--medium {
673
913
  @include tm-icon-size(16px);
914
+
915
+ stroke-width: 1.5;
674
916
  }
675
917
 
676
918
  &--small {
677
919
  @include tm-icon-size(14px);
920
+
921
+ stroke-width: 1.2;
678
922
  }
679
923
  }
680
924
 
@@ -685,14 +929,20 @@
685
929
 
686
930
  &--large {
687
931
  @include tm-icon-size(16px);
932
+
933
+ stroke-width: 1.8;
688
934
  }
689
935
 
690
936
  &--medium {
691
937
  @include tm-icon-size(16px);
938
+
939
+ stroke-width: 1.5;
692
940
  }
693
941
 
694
942
  &--small {
695
943
  @include tm-icon-size(14px);
944
+
945
+ stroke-width: 1.2;
696
946
  }
697
947
  }
698
948
 
@@ -701,14 +951,20 @@
701
951
 
702
952
  &--large {
703
953
  @include tm-icon-size(16px);
954
+
955
+ stroke-width: 1.8;
704
956
  }
705
957
 
706
958
  &--medium {
707
959
  @include tm-icon-size(16px);
960
+
961
+ stroke-width: 1.5;
708
962
  }
709
963
 
710
964
  &--small {
711
965
  @include tm-icon-size(14px);
966
+
967
+ stroke-width: 1.2;
712
968
  }
713
969
  }
714
970
 
@@ -719,14 +975,20 @@
719
975
 
720
976
  &--large {
721
977
  @include tm-icon-size(16px);
978
+
979
+ stroke-width: 1.8;
722
980
  }
723
981
 
724
982
  &--medium {
725
983
  @include tm-icon-size(16px);
984
+
985
+ stroke-width: 1.5;
726
986
  }
727
987
 
728
988
  &--small {
729
989
  @include tm-icon-size(14px);
990
+
991
+ stroke-width: 1.2;
730
992
  }
731
993
  }
732
994
 
@@ -737,14 +999,20 @@
737
999
 
738
1000
  &--large {
739
1001
  @include tm-icon-size(16px);
1002
+
1003
+ stroke-width: 1.8;
740
1004
  }
741
1005
 
742
1006
  &--medium {
743
1007
  @include tm-icon-size(16px);
1008
+
1009
+ stroke-width: 1.5;
744
1010
  }
745
1011
 
746
1012
  &--small {
747
1013
  @include tm-icon-size(14px);
1014
+
1015
+ stroke-width: 1.2;
748
1016
  }
749
1017
  }
750
1018
 
@@ -753,14 +1021,20 @@
753
1021
 
754
1022
  &--large {
755
1023
  @include tm-icon-size(16px);
1024
+
1025
+ stroke-width: 1.8;
756
1026
  }
757
1027
 
758
1028
  &--medium {
759
1029
  @include tm-icon-size(16px);
1030
+
1031
+ stroke-width: 1.5;
760
1032
  }
761
1033
 
762
1034
  &--small {
763
1035
  @include tm-icon-size(14px);
1036
+
1037
+ stroke-width: 1.2;
764
1038
  }
765
1039
  }
766
1040
 
@@ -771,14 +1045,20 @@
771
1045
 
772
1046
  &--large {
773
1047
  @include tm-icon-size(16px);
1048
+
1049
+ stroke-width: 1.8;
774
1050
  }
775
1051
 
776
1052
  &--medium {
777
1053
  @include tm-icon-size(16px);
1054
+
1055
+ stroke-width: 1.5;
778
1056
  }
779
1057
 
780
1058
  &--small {
781
1059
  @include tm-icon-size(14px);
1060
+
1061
+ stroke-width: 1.2;
782
1062
  }
783
1063
  }
784
1064
 
@@ -789,14 +1069,20 @@
789
1069
 
790
1070
  &--large {
791
1071
  @include tm-icon-size(16px);
1072
+
1073
+ stroke-width: 1.8;
792
1074
  }
793
1075
 
794
1076
  &--medium {
795
1077
  @include tm-icon-size(16px);
1078
+
1079
+ stroke-width: 1.5;
796
1080
  }
797
1081
 
798
1082
  &--small {
799
1083
  @include tm-icon-size(14px);
1084
+
1085
+ stroke-width: 1.2;
800
1086
  }
801
1087
  }
802
1088
 
@@ -805,14 +1091,20 @@
805
1091
 
806
1092
  &--large {
807
1093
  @include tm-icon-size(16px);
1094
+
1095
+ stroke-width: 1.8;
808
1096
  }
809
1097
 
810
1098
  &--medium {
811
1099
  @include tm-icon-size(16px);
1100
+
1101
+ stroke-width: 1.5;
812
1102
  }
813
1103
 
814
1104
  &--small {
815
1105
  @include tm-icon-size(14px);
1106
+
1107
+ stroke-width: 1.2;
816
1108
  }
817
1109
  }
818
1110
 
@@ -823,14 +1115,20 @@
823
1115
 
824
1116
  &--large {
825
1117
  @include tm-icon-size(16px);
1118
+
1119
+ stroke-width: 1.8;
826
1120
  }
827
1121
 
828
1122
  &--medium {
829
1123
  @include tm-icon-size(16px);
1124
+
1125
+ stroke-width: 1.5;
830
1126
  }
831
1127
 
832
1128
  &--small {
833
1129
  @include tm-icon-size(14px);
1130
+
1131
+ stroke-width: 1.2;
834
1132
  }
835
1133
  }
836
1134
 
@@ -841,14 +1139,20 @@
841
1139
 
842
1140
  &--large {
843
1141
  @include tm-icon-size(16px);
1142
+
1143
+ stroke-width: 1.8;
844
1144
  }
845
1145
 
846
1146
  &--medium {
847
1147
  @include tm-icon-size(16px);
1148
+
1149
+ stroke-width: 1.5;
848
1150
  }
849
1151
 
850
1152
  &--small {
851
1153
  @include tm-icon-size(14px);
1154
+
1155
+ stroke-width: 1.2;
852
1156
  }
853
1157
  }
854
1158
 
@@ -857,14 +1161,20 @@
857
1161
 
858
1162
  &--large {
859
1163
  @include tm-icon-size(16px);
1164
+
1165
+ stroke-width: 1.8;
860
1166
  }
861
1167
 
862
1168
  &--medium {
863
1169
  @include tm-icon-size(16px);
1170
+
1171
+ stroke-width: 1.5;
864
1172
  }
865
1173
 
866
1174
  &--small {
867
1175
  @include tm-icon-size(14px);
1176
+
1177
+ stroke-width: 1.2;
868
1178
  }
869
1179
  }
870
1180
 
@@ -875,14 +1185,20 @@
875
1185
 
876
1186
  &--large {
877
1187
  @include tm-icon-size(16px);
1188
+
1189
+ stroke-width: 1.8;
878
1190
  }
879
1191
 
880
1192
  &--medium {
881
1193
  @include tm-icon-size(16px);
1194
+
1195
+ stroke-width: 1.5;
882
1196
  }
883
1197
 
884
1198
  &--small {
885
1199
  @include tm-icon-size(14px);
1200
+
1201
+ stroke-width: 1.2;
886
1202
  }
887
1203
  }
888
1204
 
@@ -893,14 +1209,20 @@
893
1209
 
894
1210
  &--large {
895
1211
  @include tm-icon-size(16px);
1212
+
1213
+ stroke-width: 1.8;
896
1214
  }
897
1215
 
898
1216
  &--medium {
899
1217
  @include tm-icon-size(16px);
1218
+
1219
+ stroke-width: 1.5;
900
1220
  }
901
1221
 
902
1222
  &--small {
903
1223
  @include tm-icon-size(14px);
1224
+
1225
+ stroke-width: 1.2;
904
1226
  }
905
1227
  }
906
1228
 
@@ -909,14 +1231,20 @@
909
1231
 
910
1232
  &--large {
911
1233
  @include tm-icon-size(16px);
1234
+
1235
+ stroke-width: 1.8;
912
1236
  }
913
1237
 
914
1238
  &--medium {
915
1239
  @include tm-icon-size(16px);
1240
+
1241
+ stroke-width: 1.5;
916
1242
  }
917
1243
 
918
1244
  &--small {
919
1245
  @include tm-icon-size(14px);
1246
+
1247
+ stroke-width: 1.2;
920
1248
  }
921
1249
  }
922
1250
 
@@ -927,14 +1255,20 @@
927
1255
 
928
1256
  &--large {
929
1257
  @include tm-icon-size(16px);
1258
+
1259
+ stroke-width: 1.8;
930
1260
  }
931
1261
 
932
1262
  &--medium {
933
1263
  @include tm-icon-size(16px);
1264
+
1265
+ stroke-width: 1.5;
934
1266
  }
935
1267
 
936
1268
  &--small {
937
1269
  @include tm-icon-size(14px);
1270
+
1271
+ stroke-width: 1.2;
938
1272
  }
939
1273
  }
940
1274
 
@@ -945,14 +1279,20 @@
945
1279
 
946
1280
  &--large {
947
1281
  @include tm-icon-size(16px);
1282
+
1283
+ stroke-width: 1.8;
948
1284
  }
949
1285
 
950
1286
  &--medium {
951
1287
  @include tm-icon-size(16px);
1288
+
1289
+ stroke-width: 1.5;
952
1290
  }
953
1291
 
954
1292
  &--small {
955
1293
  @include tm-icon-size(14px);
1294
+
1295
+ stroke-width: 1.2;
956
1296
  }
957
1297
  }
958
1298
 
@@ -961,14 +1301,20 @@
961
1301
 
962
1302
  &--large {
963
1303
  @include tm-icon-size(16px);
1304
+
1305
+ stroke-width: 1.8;
964
1306
  }
965
1307
 
966
1308
  &--medium {
967
1309
  @include tm-icon-size(16px);
1310
+
1311
+ stroke-width: 1.5;
968
1312
  }
969
1313
 
970
1314
  &--small {
971
1315
  @include tm-icon-size(14px);
1316
+
1317
+ stroke-width: 1.2;
972
1318
  }
973
1319
  }
974
1320
 
@@ -979,14 +1325,20 @@
979
1325
 
980
1326
  &--large {
981
1327
  @include tm-icon-size(16px);
1328
+
1329
+ stroke-width: 1.8;
982
1330
  }
983
1331
 
984
1332
  &--medium {
985
1333
  @include tm-icon-size(16px);
1334
+
1335
+ stroke-width: 1.5;
986
1336
  }
987
1337
 
988
1338
  &--small {
989
1339
  @include tm-icon-size(14px);
1340
+
1341
+ stroke-width: 1.2;
990
1342
  }
991
1343
  }
992
1344
 
@@ -997,14 +1349,20 @@
997
1349
 
998
1350
  &--large {
999
1351
  @include tm-icon-size(16px);
1352
+
1353
+ stroke-width: 1.8;
1000
1354
  }
1001
1355
 
1002
1356
  &--medium {
1003
1357
  @include tm-icon-size(16px);
1358
+
1359
+ stroke-width: 1.5;
1004
1360
  }
1005
1361
 
1006
1362
  &--small {
1007
1363
  @include tm-icon-size(14px);
1364
+
1365
+ stroke-width: 1.2;
1008
1366
  }
1009
1367
  }
1010
1368
 
@@ -1013,14 +1371,20 @@
1013
1371
 
1014
1372
  &--large {
1015
1373
  @include tm-icon-size(16px);
1374
+
1375
+ stroke-width: 1.8;
1016
1376
  }
1017
1377
 
1018
1378
  &--medium {
1019
1379
  @include tm-icon-size(16px);
1380
+
1381
+ stroke-width: 1.5;
1020
1382
  }
1021
1383
 
1022
1384
  &--small {
1023
1385
  @include tm-icon-size(14px);
1386
+
1387
+ stroke-width: 1.2;
1024
1388
  }
1025
1389
  }
1026
1390
 
@@ -1031,14 +1395,20 @@
1031
1395
 
1032
1396
  &--large {
1033
1397
  @include tm-icon-size(16px);
1398
+
1399
+ stroke-width: 1.8;
1034
1400
  }
1035
1401
 
1036
1402
  &--medium {
1037
1403
  @include tm-icon-size(16px);
1404
+
1405
+ stroke-width: 1.5;
1038
1406
  }
1039
1407
 
1040
1408
  &--small {
1041
1409
  @include tm-icon-size(14px);
1410
+
1411
+ stroke-width: 1.2;
1042
1412
  }
1043
1413
  }
1044
1414
 
@@ -1049,14 +1419,20 @@
1049
1419
 
1050
1420
  &--large {
1051
1421
  @include tm-icon-size(16px);
1422
+
1423
+ stroke-width: 1.8;
1052
1424
  }
1053
1425
 
1054
1426
  &--medium {
1055
1427
  @include tm-icon-size(16px);
1428
+
1429
+ stroke-width: 1.5;
1056
1430
  }
1057
1431
 
1058
1432
  &--small {
1059
1433
  @include tm-icon-size(14px);
1434
+
1435
+ stroke-width: 1.2;
1060
1436
  }
1061
1437
  }
1062
1438
 
@@ -1065,14 +1441,20 @@
1065
1441
 
1066
1442
  &--large {
1067
1443
  @include tm-icon-size(16px);
1444
+
1445
+ stroke-width: 1.8;
1068
1446
  }
1069
1447
 
1070
1448
  &--medium {
1071
1449
  @include tm-icon-size(16px);
1450
+
1451
+ stroke-width: 1.5;
1072
1452
  }
1073
1453
 
1074
1454
  &--small {
1075
1455
  @include tm-icon-size(14px);
1456
+
1457
+ stroke-width: 1.2;
1076
1458
  }
1077
1459
  }
1078
1460
 
@@ -1083,14 +1465,20 @@
1083
1465
 
1084
1466
  &--large {
1085
1467
  @include tm-icon-size(16px);
1468
+
1469
+ stroke-width: 1.8;
1086
1470
  }
1087
1471
 
1088
1472
  &--medium {
1089
1473
  @include tm-icon-size(16px);
1474
+
1475
+ stroke-width: 1.5;
1090
1476
  }
1091
1477
 
1092
1478
  &--small {
1093
1479
  @include tm-icon-size(14px);
1480
+
1481
+ stroke-width: 1.2;
1094
1482
  }
1095
1483
  }
1096
1484
 
@@ -1101,14 +1489,20 @@
1101
1489
 
1102
1490
  &--large {
1103
1491
  @include tm-icon-size(16px);
1492
+
1493
+ stroke-width: 1.8;
1104
1494
  }
1105
1495
 
1106
1496
  &--medium {
1107
1497
  @include tm-icon-size(16px);
1498
+
1499
+ stroke-width: 1.5;
1108
1500
  }
1109
1501
 
1110
1502
  &--small {
1111
1503
  @include tm-icon-size(14px);
1504
+
1505
+ stroke-width: 1.2;
1112
1506
  }
1113
1507
  }
1114
1508
 
@@ -1117,14 +1511,20 @@
1117
1511
 
1118
1512
  &--large {
1119
1513
  @include tm-icon-size(16px);
1514
+
1515
+ stroke-width: 1.8;
1120
1516
  }
1121
1517
 
1122
1518
  &--medium {
1123
1519
  @include tm-icon-size(16px);
1520
+
1521
+ stroke-width: 1.5;
1124
1522
  }
1125
1523
 
1126
1524
  &--small {
1127
1525
  @include tm-icon-size(14px);
1526
+
1527
+ stroke-width: 1.2;
1128
1528
  }
1129
1529
  }
1130
1530
 
@@ -1135,14 +1535,20 @@
1135
1535
 
1136
1536
  &--large {
1137
1537
  @include tm-icon-size(16px);
1538
+
1539
+ stroke-width: 1.8;
1138
1540
  }
1139
1541
 
1140
1542
  &--medium {
1141
1543
  @include tm-icon-size(16px);
1544
+
1545
+ stroke-width: 1.5;
1142
1546
  }
1143
1547
 
1144
1548
  &--small {
1145
1549
  @include tm-icon-size(14px);
1550
+
1551
+ stroke-width: 1.2;
1146
1552
  }
1147
1553
  }
1148
1554
 
@@ -1153,14 +1559,20 @@
1153
1559
 
1154
1560
  &--large {
1155
1561
  @include tm-icon-size(16px);
1562
+
1563
+ stroke-width: 1.8;
1156
1564
  }
1157
1565
 
1158
1566
  &--medium {
1159
1567
  @include tm-icon-size(16px);
1568
+
1569
+ stroke-width: 1.5;
1160
1570
  }
1161
1571
 
1162
1572
  &--small {
1163
1573
  @include tm-icon-size(14px);
1574
+
1575
+ stroke-width: 1.2;
1164
1576
  }
1165
1577
  }
1166
1578
 
@@ -1169,14 +1581,20 @@
1169
1581
 
1170
1582
  &--large {
1171
1583
  @include tm-icon-size(16px);
1584
+
1585
+ stroke-width: 1.8;
1172
1586
  }
1173
1587
 
1174
1588
  &--medium {
1175
1589
  @include tm-icon-size(16px);
1590
+
1591
+ stroke-width: 1.5;
1176
1592
  }
1177
1593
 
1178
1594
  &--small {
1179
1595
  @include tm-icon-size(14px);
1596
+
1597
+ stroke-width: 1.2;
1180
1598
  }
1181
1599
  }
1182
1600
 
@@ -1187,14 +1605,20 @@
1187
1605
 
1188
1606
  &--large {
1189
1607
  @include tm-icon-size(16px);
1608
+
1609
+ stroke-width: 1.8;
1190
1610
  }
1191
1611
 
1192
1612
  &--medium {
1193
1613
  @include tm-icon-size(16px);
1614
+
1615
+ stroke-width: 1.5;
1194
1616
  }
1195
1617
 
1196
1618
  &--small {
1197
1619
  @include tm-icon-size(14px);
1620
+
1621
+ stroke-width: 1.2;
1198
1622
  }
1199
1623
  }
1200
1624
 
@@ -1205,14 +1629,20 @@
1205
1629
 
1206
1630
  &--large {
1207
1631
  @include tm-icon-size(16px);
1632
+
1633
+ stroke-width: 1.8;
1208
1634
  }
1209
1635
 
1210
1636
  &--medium {
1211
1637
  @include tm-icon-size(16px);
1638
+
1639
+ stroke-width: 1.5;
1212
1640
  }
1213
1641
 
1214
1642
  &--small {
1215
1643
  @include tm-icon-size(14px);
1644
+
1645
+ stroke-width: 1.2;
1216
1646
  }
1217
1647
  }
1218
1648
 
@@ -1221,14 +1651,20 @@
1221
1651
 
1222
1652
  &--large {
1223
1653
  @include tm-icon-size(16px);
1654
+
1655
+ stroke-width: 1.8;
1224
1656
  }
1225
1657
 
1226
1658
  &--medium {
1227
1659
  @include tm-icon-size(16px);
1660
+
1661
+ stroke-width: 1.5;
1228
1662
  }
1229
1663
 
1230
1664
  &--small {
1231
1665
  @include tm-icon-size(14px);
1666
+
1667
+ stroke-width: 1.2;
1232
1668
  }
1233
1669
  }
1234
1670
 
@@ -1239,14 +1675,20 @@
1239
1675
 
1240
1676
  &--large {
1241
1677
  @include tm-icon-size(16px);
1678
+
1679
+ stroke-width: 1.8;
1242
1680
  }
1243
1681
 
1244
1682
  &--medium {
1245
1683
  @include tm-icon-size(16px);
1684
+
1685
+ stroke-width: 1.5;
1246
1686
  }
1247
1687
 
1248
1688
  &--small {
1249
1689
  @include tm-icon-size(14px);
1690
+
1691
+ stroke-width: 1.2;
1250
1692
  }
1251
1693
  }
1252
1694
 
@@ -1257,14 +1699,20 @@
1257
1699
 
1258
1700
  &--large {
1259
1701
  @include tm-icon-size(16px);
1702
+
1703
+ stroke-width: 1.8;
1260
1704
  }
1261
1705
 
1262
1706
  &--medium {
1263
1707
  @include tm-icon-size(16px);
1708
+
1709
+ stroke-width: 1.5;
1264
1710
  }
1265
1711
 
1266
1712
  &--small {
1267
1713
  @include tm-icon-size(14px);
1714
+
1715
+ stroke-width: 1.2;
1268
1716
  }
1269
1717
  }
1270
1718
 
@@ -1273,14 +1721,20 @@
1273
1721
 
1274
1722
  &--large {
1275
1723
  @include tm-icon-size(16px);
1724
+
1725
+ stroke-width: 1.8;
1276
1726
  }
1277
1727
 
1278
1728
  &--medium {
1279
1729
  @include tm-icon-size(16px);
1730
+
1731
+ stroke-width: 1.5;
1280
1732
  }
1281
1733
 
1282
1734
  &--small {
1283
1735
  @include tm-icon-size(14px);
1736
+
1737
+ stroke-width: 1.2;
1284
1738
  }
1285
1739
  }
1286
1740
 
@@ -1291,14 +1745,20 @@
1291
1745
 
1292
1746
  &--large {
1293
1747
  @include tm-icon-size(16px);
1748
+
1749
+ stroke-width: 1.8;
1294
1750
  }
1295
1751
 
1296
1752
  &--medium {
1297
1753
  @include tm-icon-size(16px);
1754
+
1755
+ stroke-width: 1.5;
1298
1756
  }
1299
1757
 
1300
1758
  &--small {
1301
1759
  @include tm-icon-size(14px);
1760
+
1761
+ stroke-width: 1.2;
1302
1762
  }
1303
1763
  }
1304
1764
 
@@ -1309,14 +1769,20 @@
1309
1769
 
1310
1770
  &--large {
1311
1771
  @include tm-icon-size(16px);
1772
+
1773
+ stroke-width: 1.8;
1312
1774
  }
1313
1775
 
1314
1776
  &--medium {
1315
1777
  @include tm-icon-size(16px);
1778
+
1779
+ stroke-width: 1.5;
1316
1780
  }
1317
1781
 
1318
1782
  &--small {
1319
1783
  @include tm-icon-size(14px);
1784
+
1785
+ stroke-width: 1.2;
1320
1786
  }
1321
1787
  }
1322
1788
 
@@ -1325,14 +1791,20 @@
1325
1791
 
1326
1792
  &--large {
1327
1793
  @include tm-icon-size(16px);
1794
+
1795
+ stroke-width: 1.8;
1328
1796
  }
1329
1797
 
1330
1798
  &--medium {
1331
1799
  @include tm-icon-size(16px);
1800
+
1801
+ stroke-width: 1.5;
1332
1802
  }
1333
1803
 
1334
1804
  &--small {
1335
1805
  @include tm-icon-size(14px);
1806
+
1807
+ stroke-width: 1.2;
1336
1808
  }
1337
1809
  }
1338
1810