@dev-tcloud/tcloud-ui 5.0.1 → 5.0.2-beta.1

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.
Files changed (42) hide show
  1. package/README.md +106 -106
  2. package/datepicker/js/_info.txt +3 -3
  3. package/fesm2022/dev-tcloud-tcloud-ui.mjs +74 -74
  4. package/fesm2022/dev-tcloud-tcloud-ui.mjs.map +1 -1
  5. package/lib/_modules/tcloud-ui-datepicker/tcloud-ui-datepicker.component.d.ts +1 -1
  6. package/package.json +3 -3
  7. package/scss/components/custom/el-copy.scss +17 -17
  8. package/scss/components/custom/loading-transitions.scss +27 -27
  9. package/scss/components/custom/loading.scss +2 -2
  10. package/scss/components/custom/tab-menu.scss +58 -58
  11. package/scss/components/custom/table.scss +98 -98
  12. package/scss/components/custom/tooltip.scss +89 -89
  13. package/scss/components/custom/ui-datepicker.scss +15 -15
  14. package/scss/components/custom/validation.scss +7 -7
  15. package/scss/components/custom/variables.scss +90 -33
  16. package/scss/components/styles.scss +8 -8
  17. package/scss/tcloud/custom/alerts.scss +37 -37
  18. package/scss/tcloud/custom/buttons.scss +1004 -1003
  19. package/scss/tcloud/custom/card.scss +51 -51
  20. package/scss/tcloud/custom/colors.scss +97 -97
  21. package/scss/tcloud/custom/forms.scss +83 -81
  22. package/scss/tcloud/custom/layout.scss +5 -5
  23. package/scss/tcloud/custom/left-navigation.scss +47 -47
  24. package/scss/tcloud/custom/mixins.scss +318 -318
  25. package/scss/tcloud/custom/tcloud-prime.scss +4519 -4519
  26. package/scss/tcloud/custom/tcloud-standard.scss +121 -121
  27. package/scss/tcloud/custom/text.scss +57 -57
  28. package/scss/tcloud/custom/top-navigation.scss +59 -59
  29. package/scss/tcloud/custom/variables.scss +60 -60
  30. package/scss/tcloud/disaster-recovery/colors.scss +14 -14
  31. package/scss/tcloud/disaster-recovery/layout.scss +13 -13
  32. package/scss/tcloud/disaster-recovery/styles.scss +1 -1
  33. package/scss/tcloud/prime/cards-products.scss +331 -331
  34. package/scss/tcloud/prime/left-navigation.scss +327 -327
  35. package/scss/tcloud/prime/styles.scss +2 -2
  36. package/scss/tcloud/prime/tcloud-prime.scss +3872 -3872
  37. package/scss/tcloud/standard/left-navigation.scss +47 -47
  38. package/scss/tcloud/standard/styles.scss +2 -2
  39. package/scss/tcloud/standard/tcloud-standard.scss +125 -125
  40. package/scss/tcloud/standard/top-navigation.scss +61 -61
  41. package/scss/tcloud/styles.scss +19 -19
  42. package/scss/tcloud/tcloud-ui.scss +7 -7
@@ -1,1003 +1,1004 @@
1
- .tc-btn {
2
- font-size: 12px;
3
- background: var(--tc-gray-100);
4
- color: var(--tc-gray-600);
5
- cursor: pointer;
6
- border-radius: 30px;
7
- /*display: inline-flex;*/
8
- align-items: center;
9
- transition: all 0.25s;
10
- padding: 0 25px;
11
- height: 40px;
12
- border: 1px solid var(--tc-gray-100);
13
- justify-content: center;
14
-
15
- p {
16
- font-size: 13px;
17
- color: var(--tc-gray-600);
18
- }
19
-
20
- i {
21
- margin-right: 3px;
22
- margin-left: 3px;
23
- font-size: 16px;
24
- }
25
-
26
- &:hover {
27
- color: var(--tc-primary);
28
- background: var(--tc-gray-50);
29
- border-color: var(--tc-gray-100);
30
- }
31
-
32
- &:link,
33
- &:visited,
34
- &:hover,
35
- &:active {
36
- text-decoration: none;
37
- }
38
-
39
- &.full {
40
- display: flex;
41
- align-items: center;
42
- justify-content: center;
43
- flex: 1;
44
- width: 100%;
45
- }
46
-
47
- &.tc-btn-full {
48
- text-align: center;
49
- display: block;
50
- width: 100%;
51
- }
52
-
53
- }
54
-
55
- .tc-btn-block {
56
- display: block;
57
- width: 100%;
58
- text-align: center;
59
- padding: 10px 25px;
60
- }
61
-
62
- .tc-btn-square {
63
- border-radius: 9px;
64
- padding-left: 15px;
65
- padding-right: 15px;
66
- }
67
-
68
- .tc-btn:disabled,
69
- .tc-btn[disabled]{
70
- cursor: no-drop;
71
- opacity: 0.6;
72
- }
73
-
74
- .tc-btn-primary {
75
- color: var(--white);
76
- background: var(--tc-primary);
77
- border-color: var(--tc-primary);
78
-
79
- &:hover {
80
- color: var(--white);
81
- background: var(--tc-complemt-3);
82
- border-color: var(--tc-primary);
83
- }
84
- }
85
-
86
- .tc-btn-warning {
87
- color: var(--white);
88
- background: var(--warning);
89
- border-color: var(--warning);
90
-
91
- &:hover {
92
- color: var(--white);
93
- background: var(--warning-lighten);
94
- border-color: var(--warning);
95
- }
96
- }
97
-
98
- .tc-btn-danger {
99
- color: var(--white);
100
- background: var(--danger);
101
- border-color: var(--danger);
102
-
103
- &:hover {
104
- color: var(--white);
105
- background: var(--danger-lighten);
106
- border-color: var(--danger);
107
- }
108
- }
109
-
110
- // BUTTON OUTLINE
111
- .tc-btn-outline {
112
- color: var(--tc-gray-500);
113
- background: transparent;
114
- border-color: 1px solid var(--tc-gray-400);
115
-
116
- &:hover {
117
- color: var(--tc-gray-600);
118
- background: transparent;
119
- border-color: var(--tc-gray-600);
120
- }
121
- }
122
-
123
- .tc-btn-outline-primary {
124
- color: var(--tc-primary);
125
- background: transparent;
126
- border-color: var(--tc-primary);
127
-
128
- &:hover {
129
- color: var(--white);
130
- background: var(--tc-primary);
131
- border-color: var(--tc-primary);
132
- }
133
- }
134
-
135
- .tc-btn-outline-warning {
136
- color: var(--warning);
137
- background: transparent;
138
- border-color: var(--warning);
139
-
140
- &:hover {
141
- color: var(--white);
142
- background: var(--warning);
143
- border-color: var(--warning);
144
- }
145
- }
146
-
147
- .tc-btn-outline-danger {
148
- color: var(--danger);
149
- background: transparent;
150
- border-color: var(--danger);
151
-
152
- &:hover {
153
- color: var(--white);
154
- background: var(--danger);
155
- border-color: var(--danger);
156
- }
157
- }
158
-
159
-
160
- .tc-btn-link {
161
- cursor: pointer;
162
- padding: 10px;
163
- background: none;
164
- color: var(--tc-primary);
165
- border: none;
166
-
167
- p {
168
- text-align: left;
169
- color: var(--tc-primary);
170
- }
171
-
172
- &:hover{
173
- opacity: 0.8;
174
- }
175
-
176
- &:disabled{
177
- opacity: 0.6;
178
- }
179
-
180
- &.tc-btn-link-primary {
181
- background: none;
182
- border: none;
183
- color: var(--tc-primary);
184
- }
185
-
186
- &.tc-btn-link-warning {
187
- background: none;
188
- border: none;
189
- color: var(--warning);
190
- }
191
-
192
- &.tc-btn-link-danger {
193
- background: none;
194
- border: none;
195
- color: var(--danger);
196
- }
197
- }
198
-
199
- .tc-btn:disabled {
200
- opacity: 0.6;
201
- cursor: not-allowed;
202
- }
203
-
204
- .tc-btn-block{
205
- width: 100% !important;
206
- justify-content: center;
207
- }
208
-
209
- // ========================================
210
- // old Button Standard
211
- // ========================================
212
-
213
- .btn-new {
214
- border: none;
215
- transition: all 0.25s;
216
- background: var(--tc-gray-100);
217
- color: var(--tc-gray-500);
218
- font-size: 12px;
219
- font-weight: normal;
220
- border-radius: 30px;
221
- padding: 10px 25px!important;
222
- cursor: pointer;
223
- display: inline-flex;
224
- align-items: center;
225
- }
226
-
227
- .btn-new.active,
228
- .btn-new.opened,
229
- .btn-new:hover {
230
- background: var(--tc-primary);
231
- color: var(--white);
232
- }
233
-
234
- .btn-new i {
235
- margin: 0 10px 0 5px;
236
- }
237
-
238
- .btn-new i:nth-child(2) {
239
- margin: 0 0 0 10px;
240
- }
241
-
242
- .btn-new-grey {
243
- border: none;
244
- transition: all 0.25s;
245
- background: var(--tc-gray-100) !important;
246
- color: var(--tc-gray-600) !important;
247
- font-size: 12px;
248
- font-weight: normal;
249
- border-radius: 30px;
250
- padding: 10px 20px;
251
- cursor: pointer;
252
- border: none !important;
253
- }
254
-
255
- .btn-new-grey.active,
256
- .btn-new-grey.opened,
257
- .btn-new-grey:hover {
258
- background: var(--tc-primary)!important;
259
- color: var(--white) !important;
260
- }
261
-
262
- .btn-new-grey i {
263
- margin: 0 10px 0 5px;
264
- }
265
-
266
- .btn-new-grey i:nth-child(2) {
267
- margin: 0 0 0 10px;
268
- }
269
-
270
- .tc-btn-primary,
271
- .btn-green-validate {
272
- /*display: inline-flex;*/
273
- align-items: center;
274
- background: var(--tc-primary)!important;
275
- color: var(--white) !important;
276
- font-size: 12px;
277
- font-weight: normal;
278
- border-radius: 30px;
279
- cursor: pointer;
280
- border: none!important;
281
- transition: all 0.25s;
282
- }
283
-
284
- .tc-btn-primary.full {
285
- width: 100%!important;
286
- }
287
-
288
- .tc-btn-primary.full.txt-center,
289
- .tc-btn-primary.txt-center {
290
- justify-content: center;
291
- }
292
-
293
- .btn-green-validate:disabled {
294
- background: var(--tc-gray-200) !important;
295
- }
296
-
297
- .tc-btn-primary.small {
298
- padding: 10px 20px;
299
- }
300
-
301
- .tc-btn-primary.active,
302
- .tc-btn-primary.opened,
303
- .tc-btn-primary:hover {
304
- background: var(--tc-complemt-3) !important;
305
- }
306
-
307
- .tc-btn-primary i {
308
- margin: 0 10px 0 5px;
309
- }
310
-
311
- .tc-btn-primary i:nth-child(2) {
312
- margin: 0 0 0 10px;
313
- }
314
-
315
- .btn-new-outline {
316
- background: var(--white) !important;
317
- color: var(--tc-gray-600);
318
- font-size: 12px;
319
- font-weight: normal;
320
- transition: all 0.25s;
321
- border: 3px solid var(--tc-gray-100);
322
- border-radius: 30px;
323
- padding: 10px 25px;
324
- cursor: pointer;
325
-
326
- .btn-new-outline i {
327
- margin: 0 10px 0 5px;
328
-
329
- &:nth-child(2) {
330
- margin: 0 0 0 10px;
331
- }
332
- }
333
- }
334
-
335
- .btn-new-outline.active,
336
- .btn-new-outline.opened,
337
- .btn-new-outline:hover {
338
- background: var(--tc-gray-100) !important;
339
- }
340
-
341
-
342
-
343
- .btn-new-group {
344
- display: flex;
345
- flex: 1;
346
- margin: 20px 0;
347
- }
348
-
349
- .btn-new-group.align-left {
350
- justify-content: flex-start;
351
- }
352
-
353
- .btn-new-group.align-right {
354
- justify-content: flex-end;
355
- }
356
-
357
- .btn-new-group .btn-new {
358
- margin: 0 20px 0 0;
359
- }
360
-
361
- .btn-new-group .btn-new:last-child {
362
- margin: 0;
363
- }
364
-
365
- .btn-disabled {
366
- /*display: inline-flex;*/
367
- align-items: center;
368
- background: var(--tc-primary)!important;
369
- color: var(--white) !important;
370
- font-size: 12px;
371
- font-weight: normal;
372
- border-radius: 30px;
373
- padding: 10px 20px;
374
- border: none!important;
375
- transition: all 0.25s;
376
- cursor: pointer;
377
-
378
- &:disabled {
379
- background: var(--tc-gray-100) !important;
380
- color: var(--tc-gray-600) !important;
381
- cursor: default;
382
- }
383
- }
384
-
385
-
386
- .btn-new-white {
387
- font-size: 12px;
388
- font-weight: normal;
389
-
390
- display: inline-flex;
391
- align-items: center;
392
- color: var(--tc-primary);
393
- background: var(--white);
394
- border-radius: 30px;
395
- padding: 10px 20px;
396
- cursor: pointer;
397
- border: none!important;
398
- transition: all 0.25s;
399
- }
400
-
401
- .btn-new-white:hover {
402
- color: var(--white);
403
- background: var(--var(--tc-primary)2);
404
- }
405
-
406
- .btn-new-full {
407
- flex: 1;
408
- display: flex;
409
- justify-content: center;
410
- align-items: center;
411
- width: 100%;
412
- }
413
-
414
-
415
- .btn-group .btn-secondary {
416
- color: var(--white);
417
- background-color: var(--tc-primary);
418
- border-color: var(--tc-primary);
419
- }
420
-
421
- .btn-group .btn-secondary:hover {
422
- background-color: var(--tc-primary)2;
423
- }
424
-
425
-
426
- button:focus {
427
- outline: 0 !important;
428
- }
429
-
430
- .btn {
431
- padding: 10px 20px;
432
- border-radius: 20px;
433
- font-size: inherit;
434
- color: var(--tc-gray-500);
435
- }
436
-
437
- .btn:focus {
438
- box-shadow: none;
439
- }
440
-
441
- .btn-xs {
442
- font-size: 12px;
443
- padding: 0.2rem 0.4rem;
444
- }
445
-
446
- .btn-group-sm > .btn,
447
- .btn-sm {
448
- font-size: 12px;
449
- }
450
-
451
- .float-e-margins .btn {
452
- margin-bottom: 5px;
453
- }
454
-
455
- .btn-w-m {
456
- min-width: 120px;
457
- }
458
-
459
- .btn-primary.btn-outline {
460
- color: var(--tc-primary);
461
- }
462
-
463
- .btn-success.btn-outline {
464
- color: var(--tc-complete);
465
- }
466
-
467
- .btn-info.btn-outline {
468
- color: var(--tc-primary);
469
- }
470
-
471
- .btn-warning.btn-outline {
472
- color: var(--tc-warning);
473
- }
474
-
475
- .btn-danger.btn-outline {
476
- color: var(--tc-danger);
477
- }
478
-
479
- .btn-primary.btn-outline:hover,
480
- .btn-success.btn-outline:hover,
481
- .btn-info.btn-outline:hover,
482
- .btn-warning.btn-outline:hover,
483
- .btn-danger.btn-outline:hover {
484
- color: var(--white);
485
- }
486
-
487
- .btn {
488
-
489
- &.active,
490
- &:active {
491
- background-image: none;
492
- outline: 0;
493
- -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
494
- box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
495
- }
496
- }
497
-
498
- .btn-primary {
499
- font-size: 12px;
500
- color: var(--white);
501
- background-color: var(--tc-primary)!important;
502
- border-color: var(--tc-primary)!important;
503
- padding: 10px 20px;
504
- border-radius: 20px;
505
-
506
- &:hover,
507
- &:focus,
508
- &.focus {
509
- background-color: var(--tc-primary)2!important;
510
- border-color: var(--tc-primary)2!important;
511
- color: var(--white) !important;
512
- }
513
-
514
- &.disabled,
515
- &:disabled {
516
- color: var(--tc-gray-400);
517
- background-color: var(--tc-gray-500);
518
- border-color: var(--tc-gray-500);
519
- }
520
- }
521
-
522
-
523
-
524
- .btn-primary:not(:disabled):not(.disabled):active,
525
- .btn-primary:not(:disabled):not(.disabled).active,
526
- .show > .btn-primary.dropdown-toggle {
527
- color: var(--white);
528
- background-color: #18a689;
529
- border-color: #18a689;
530
- }
531
-
532
- .btn-primary:not(:disabled):not(.disabled):active:focus,
533
- .btn-primary:not(:disabled):not(.disabled).active:focus,
534
- .show > .btn-primary.dropdown-toggle:focus {
535
- -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
536
- box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
537
- }
538
-
539
- .btn-primary.btn-icon i {
540
- margin: 0 10px 0 0;
541
- }
542
-
543
- .btn-success {
544
- color: var(--white);
545
- background-color: var(--tc-primary);
546
- border-color: var(--tc-primary);
547
-
548
- &:hover,
549
- &:focus,
550
- &.focus {
551
- color: var(--white);
552
- background-color: var(--tc-primary);
553
- border-color: var(--tc-primary);
554
- }
555
-
556
- &.disabled,
557
- &:disabled {
558
- color: var(--white);
559
- background-color: #1a7bb9;
560
- border-color: #1a7bb9;
561
- }
562
- }
563
-
564
- .btn-success:not(:disabled):not(.disabled):active,
565
- .btn-success:not(:disabled):not(.disabled).active,
566
- .show > .btn-success.dropdown-toggle {
567
- color: var(--white);
568
- background-color: var(--tc-primary);
569
- border-color: var(--tc-primary);
570
- }
571
-
572
- .btn-success:not(:disabled):not(.disabled):active:focus,
573
- .btn-success:not(:disabled):not(.disabled).active:focus,
574
- .show > .btn-success.dropdown-toggle:focus {
575
- -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
576
- box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
577
- }
578
-
579
- .btn-info {
580
- color: var(--white);
581
- background-color: #23c6c8;
582
- border-color: #23c6c8;
583
- }
584
-
585
- .btn-info:hover,
586
- .btn-info:focus,
587
- .btn-info.focus {
588
- color: var(--white);
589
- background-color: #21b9bb;
590
- border-color: #21b9bb;
591
-
592
- &.disabled,
593
- &:disabled {
594
- color: var(--white);
595
- background-color: #21b9bb;
596
- border-color: #21b9bb;
597
- }
598
- }
599
-
600
- .btn-info:not(:disabled):not(.disabled):active,
601
- .btn-info:not(:disabled):not(.disabled).active,
602
- .show > .btn-info.dropdown-toggle {
603
- color: var(--white);
604
- background-color: #21b9bb;
605
- border-color: #21b9bb;
606
- }
607
-
608
- .btn-info:not(:disabled):not(.disabled):active:focus,
609
- .btn-info:not(:disabled):not(.disabled).active:focus,
610
- .show > .btn-info.dropdown-toggle:focus {
611
- -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
612
- box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
613
- }
614
-
615
- .btn-default {
616
- color: inherit;
617
- background: white;
618
- border: 1px solid var(--tc-gray-300);
619
- font-size: 12px;
620
-
621
- &:hover,
622
- &:focus,
623
- &:active,
624
- &.active,
625
- &:active:focus,
626
- &:active:hover,
627
- &.active:hover {
628
- color: inherit;
629
- border: 1px solid #d2d2d2;
630
- }
631
-
632
- &:active,
633
- &.active {
634
- box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15) inset;
635
- }
636
-
637
- &.disabled,
638
- &.disabled:hover,
639
- &.disabled:focus,
640
- &.disabled:active,
641
- &.disabled.active,
642
- &[disabled],
643
- &[disabled]:hover,
644
- &[disabled]:focus,
645
- &[disabled]:active,
646
- &.active[disabled] {
647
- color: #cacaca;
648
- }
649
- }
650
-
651
- .open .dropdown-toggle.btn-default,
652
- .btn-default.active:focus {
653
- color: inherit;
654
- border: 1px solid #d2d2d2;
655
- }
656
-
657
- .open .dropdown-toggle.btn-default {
658
- box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15) inset;
659
- }
660
-
661
-
662
- fieldset[disabled] .btn-default,
663
- fieldset[disabled] .btn-default:hover,
664
- fieldset[disabled] .btn-default:focus,
665
- fieldset[disabled] .btn-default:active,
666
- fieldset[disabled] .btn-default.active {
667
- color: #cacaca;
668
- }
669
-
670
- .btn-warning {
671
- color: var(--white);
672
- background-color: #f8ac59;
673
- border-color: #f8ac59;
674
-
675
- &:hover,
676
- &:focus,
677
- &.focus {
678
- color: var(--white);
679
- background-color: #f7a54a;
680
- border-color: #f7a54a;
681
- }
682
-
683
- &.disabled,
684
- &:disabled {
685
- color: var(--white);
686
- background-color: #f7a54a;
687
- border-color: #f7a54a;
688
- }
689
-
690
- &:not(:disabled):not(.disabled):active,
691
- &:not(:disabled):not(.disabled).active {
692
- color: var(--white);
693
- background-color: #f7a54a;
694
- border-color: #f7a54a;
695
- }
696
-
697
- &:not(:disabled):not(.disabled):active:focus,
698
- &:not(:disabled):not(.disabled).active:focus {
699
- -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
700
- box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
701
- }
702
- }
703
-
704
- .show > .btn-warning.dropdown-toggle {
705
- color: var(--white);
706
- background-color: #f7a54a;
707
- border-color: #f7a54a;
708
-
709
- &:focus {
710
- -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
711
- box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
712
- }
713
- }
714
-
715
- .btn-danger {
716
- color: var(--white);
717
- background-color: #ed5565;
718
- border-color: #ed5565;
719
- &:hover,
720
- &:focus,
721
- &.focus {
722
- color: var(--white);
723
- background-color: #ec4758;
724
- border-color: #ec4758;
725
- }
726
-
727
- &.disabled,
728
- &:disabled {
729
- color: var(--white);
730
- background-color: #ec4758;
731
- border-color: #ec4758;
732
- }
733
-
734
- &:not(:disabled):not(.disabled):active,
735
- &:not(:disabled):not(.disabled).active {
736
- color: var(--white);
737
- background-color: #ec4758;
738
- border-color: #ec4758;
739
- }
740
-
741
- &:not(:disabled):not(.disabled):active:focus,
742
- &:not(:disabled):not(.disabled).active:focus {
743
- -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
744
- box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
745
- }
746
- }
747
-
748
- .show > .btn-danger.dropdown-toggle {
749
- color: var(--white);
750
- background-color: #ec4758;
751
- border-color: #ec4758;
752
-
753
- &:focus {
754
- -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
755
- box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
756
- }
757
- }
758
-
759
-
760
- .btn-link {
761
- color: inherit;
762
-
763
- &:hover,
764
- &:focus,
765
- &:active,
766
- &.active {
767
- color: var(--tc-primary);
768
- text-decoration: none;
769
- }
770
-
771
- &:active,
772
- &.active {
773
- background-image: none;
774
- box-shadow: none;
775
- }
776
-
777
- &.disabled,
778
- &.disabled:hover,
779
- &.disabled:focus,
780
- &.disabled:active,
781
- &.disabled.active,
782
- &[disabled],
783
- &[disabled]:hover,
784
- &[disabled]:focus,
785
- &[disabled]:active,
786
- &.active[disabled] {
787
- color: #cacaca;
788
- }
789
- }
790
-
791
- .open .dropdown-toggle.btn-link {
792
- color: var(--tc-primary);
793
- text-decoration: none;
794
- background-image: none;
795
- box-shadow: none;
796
- }
797
-
798
- fieldset[disabled] .btn-link,
799
- fieldset[disabled] .btn-link:hover,
800
- fieldset[disabled] .btn-link:focus,
801
- fieldset[disabled] .btn-link:active,
802
- fieldset[disabled] .btn-link.active {
803
- color: #cacaca;
804
- }
805
-
806
- .btn-white {
807
- color: var(--tc-gray-500);
808
- background: white;
809
- border: 1px solid #e7eaec;
810
- padding: 10px 20px;
811
- border-radius: 30px;
812
-
813
- &:hover,
814
- &:focus,
815
- &:active,
816
- &.active,
817
- &:active:focus,
818
- &:active:hover,
819
- &.active:hover,
820
- &.active:focus {
821
- color: var(--white);
822
- border: 1px solid var(--tc-primary);
823
- background: var(--tc-primary);
824
- }
825
-
826
- &:active,
827
- &.active {
828
- box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15) inset;
829
- }
830
-
831
- &:active,
832
- &.active{
833
- background-image: none;
834
- }
835
-
836
- &.disabled,
837
- &.disabled:hover,
838
- &.disabled:focus,
839
- &.disabled:active,
840
- &.disabled.active,
841
- &[disabled],
842
- &[disabled]:hover,
843
- &[disabled]:focus,
844
- &[disabled]:active,
845
- &.active[disabled]{
846
- color: #cacaca;
847
- }
848
- }
849
-
850
- .open .dropdown-toggle.btn-white {
851
- color: var(--white);
852
- border: 1px solid var(--tc-primary);
853
- background: var(--tc-primary);
854
- background-image: none;
855
- }
856
-
857
-
858
- fieldset[disabled] .btn-white,
859
- fieldset[disabled] .btn-white:hover,
860
- fieldset[disabled] .btn-white:focus,
861
- fieldset[disabled] .btn-white:active,
862
- fieldset[disabled] .btn-white.active {
863
- color: #cacaca;
864
- }
865
-
866
- .btn-outline {
867
- color: inherit;
868
- background-color: transparent;
869
- transition: all .5s;
870
- }
871
-
872
- .btn-rounded {
873
- border-radius: 50px;
874
- }
875
-
876
- .btn-large-dim {
877
- width: 90px;
878
- height: 90px;
879
- font-size: 42px;
880
- }
881
-
882
- button.dim {
883
- display: inline-block;
884
- text-decoration: none;
885
- text-transform: uppercase;
886
- text-align: center;
887
- padding-top: 6px;
888
- margin-right: 10px;
889
- position: relative;
890
- cursor: pointer;
891
- border-radius: 5px;
892
- font-weight: 600;
893
- margin-bottom: 20px !important;
894
-
895
- &:active {
896
- top: 3px;
897
- }
898
- }
899
-
900
- button.btn-primary.dim {
901
- box-shadow: inset 0 0 0 #16987e, 0 5px 0 0 #16987e, 0 10px 5px #999999 !important;
902
-
903
- &:active {
904
- box-shadow: inset 0 0 0 #16987e, 0 2px 0 0 #16987e, 0 5px 3px #999999 !important;
905
- }
906
- }
907
-
908
- button.btn-default.dim {
909
- box-shadow: inset 0 0 0 #b3b3b3, 0 5px 0 0 #b3b3b3, 0 10px 5px #999999 !important;
910
-
911
- &:active {
912
- box-shadow: inset 0 0 0 #b3b3b3, 0 2px 0 0 #b3b3b3, 0 5px 3px #999999 !important;
913
- }
914
- }
915
-
916
-
917
- button.btn-warning.dim {
918
- box-shadow: inset 0 0 0 #f79d3c, 0 5px 0 0 #f79d3c, 0 10px 5px #999999 !important;
919
-
920
- &:active {
921
- box-shadow: inset 0 0 0 #f79d3c, 0 2px 0 0 #f79d3c, 0 5px 3px #999999 !important;
922
- }
923
- }
924
-
925
- button.btn-info.dim {
926
- box-shadow: inset 0 0 0 #1eacae, 0 5px 0 0 #1eacae, 0 10px 5px #999999 !important;
927
-
928
- &:active {
929
- box-shadow: inset 0 0 0 #1eacae, 0 2px 0 0 #1eacae, 0 5px 3px #999999 !important;
930
- }
931
- }
932
-
933
- button.btn-success.dim {
934
- box-shadow: inset 0 0 0 #1872ab, 0 5px 0 0 #1872ab, 0 10px 5px #999999 !important;
935
-
936
- &:active {
937
- box-shadow: inset 0 0 0 #1872ab, 0 2px 0 0 #1872ab, 0 5px 3px #999999 !important;
938
- }
939
- }
940
-
941
-
942
- button.btn-danger.dim {
943
- box-shadow: inset 0 0 0 #ea394c, 0 5px 0 0 #ea394c, 0 10px 5px #999999 !important;
944
-
945
- &:active {
946
- box-shadow: inset 0 0 0 #ea394c, 0 2px 0 0 #ea394c, 0 5px 3px #999999 !important;
947
- }
948
- }
949
-
950
-
951
- button.dim {
952
-
953
- &:before {
954
- font-size: 50px;
955
- line-height: 1em;
956
- font-weight: normal;
957
- color: var(--white);
958
- display: block;
959
- padding-top: 10px;
960
- }
961
-
962
- &:active:before {
963
- top: 7px;
964
- font-size: 50px;
965
- }
966
- }
967
-
968
-
969
- .btn:focus {
970
- outline: none !important;
971
- }
972
-
973
- .btn-circle {
974
- width: 30px;
975
- height: 30px;
976
- padding: 6px 0;
977
- border-radius: 10px;
978
- text-align: center;
979
- font-size: 12px;
980
- line-height: 1.42;
981
- }
982
-
983
- .btn-circle.btn-lg {
984
- width: 50px;
985
- height: 50px;
986
- padding: 10px 16px;
987
- border-radius: 25px;
988
- font-size: 18px;
989
- line-height: 1.33;
990
- }
991
-
992
- .btn-circle.btn-xl {
993
- width: 70px;
994
- height: 70px;
995
- padding: 10px 16px;
996
- border-radius: 35px;
997
- font-size: 24px;
998
- line-height: 1.33;
999
- }
1000
-
1001
- .tc-display-inline-flex{
1002
- display: inline-flex;
1003
- }
1
+ .tc-btn {
2
+ font-size: 12px;
3
+ background: var(--tc-gray-100);
4
+ color: var(--tc-gray-600);
5
+ cursor: pointer;
6
+ border-radius: 30px;
7
+ /*display: inline-flex;*/
8
+ align-items: center;
9
+ transition: all 0.25s;
10
+ padding: 0 25px;
11
+ height: 40px;
12
+ border: 1px solid var(--tc-gray-100);
13
+ justify-content: center;
14
+ font-family: var(--f-family);
15
+
16
+ p {
17
+ font-size: 13px;
18
+ color: var(--tc-gray-600);
19
+ }
20
+
21
+ i {
22
+ margin-right: 3px;
23
+ margin-left: 3px;
24
+ font-size: 16px;
25
+ }
26
+
27
+ &:hover {
28
+ color: var(--c-primary-500);
29
+ background: var(--tc-gray-50);
30
+ border-color: var(--tc-gray-100);
31
+ }
32
+
33
+ &:link,
34
+ &:visited,
35
+ &:hover,
36
+ &:active {
37
+ text-decoration: none;
38
+ }
39
+
40
+ &.full {
41
+ display: flex;
42
+ align-items: center;
43
+ justify-content: center;
44
+ flex: 1;
45
+ width: 100%;
46
+ }
47
+
48
+ &.tc-btn-full {
49
+ text-align: center;
50
+ display: block;
51
+ width: 100%;
52
+ }
53
+
54
+ }
55
+
56
+ .tc-btn-block {
57
+ display: block;
58
+ width: 100%;
59
+ text-align: center;
60
+ padding: 10px 25px;
61
+ }
62
+
63
+ .tc-btn-square {
64
+ border-radius: 9px;
65
+ padding-left: 15px;
66
+ padding-right: 15px;
67
+ }
68
+
69
+ .tc-btn:disabled,
70
+ .tc-btn[disabled]{
71
+ cursor: no-drop;
72
+ opacity: 0.6;
73
+ }
74
+
75
+ .tc-btn-primary {
76
+ color: var(--white);
77
+ background: var(--c-primary-500);
78
+ border-color: var(--c-primary-500);
79
+
80
+ &:hover {
81
+ color: var(--white);
82
+ background: var(--c-primary-700);
83
+ border-color: var(--c-primary-500);
84
+ }
85
+ }
86
+
87
+ .tc-btn-warning {
88
+ color: var(--white);
89
+ background: var(--warning);
90
+ border-color: var(--warning);
91
+
92
+ &:hover {
93
+ color: var(--white);
94
+ background: var(--warning-lighten);
95
+ border-color: var(--warning);
96
+ }
97
+ }
98
+
99
+ .tc-btn-danger {
100
+ color: var(--white);
101
+ background: var(--danger);
102
+ border-color: var(--danger);
103
+
104
+ &:hover {
105
+ color: var(--white);
106
+ background: var(--danger-lighten);
107
+ border-color: var(--danger);
108
+ }
109
+ }
110
+
111
+ // BUTTON OUTLINE
112
+ .tc-btn-outline {
113
+ color: var(--tc-gray-500);
114
+ background: transparent;
115
+ border-color: 1px solid var(--tc-gray-400);
116
+
117
+ &:hover {
118
+ color: var(--tc-gray-600);
119
+ background: transparent;
120
+ border-color: var(--tc-gray-600);
121
+ }
122
+ }
123
+
124
+ .tc-btn-outline-primary {
125
+ color: var(--c-primary-500);
126
+ background: transparent;
127
+ border-color: var(--c-primary-500);
128
+
129
+ &:hover {
130
+ color: var(--white);
131
+ background: var(--c-primary-500);
132
+ border-color: var(--c-primary-500);
133
+ }
134
+ }
135
+
136
+ .tc-btn-outline-warning {
137
+ color: var(--warning);
138
+ background: transparent;
139
+ border-color: var(--warning);
140
+
141
+ &:hover {
142
+ color: var(--white);
143
+ background: var(--warning);
144
+ border-color: var(--warning);
145
+ }
146
+ }
147
+
148
+ .tc-btn-outline-danger {
149
+ color: var(--danger);
150
+ background: transparent;
151
+ border-color: var(--danger);
152
+
153
+ &:hover {
154
+ color: var(--white);
155
+ background: var(--danger);
156
+ border-color: var(--danger);
157
+ }
158
+ }
159
+
160
+
161
+ .tc-btn-link {
162
+ cursor: pointer;
163
+ padding: 10px;
164
+ background: none;
165
+ color: var(--c-primary-500);
166
+ border: none;
167
+
168
+ p {
169
+ text-align: left;
170
+ color: var(--c-primary-500);
171
+ }
172
+
173
+ &:hover{
174
+ opacity: 0.8;
175
+ }
176
+
177
+ &:disabled{
178
+ opacity: 0.6;
179
+ }
180
+
181
+ &.tc-btn-link-primary {
182
+ background: none;
183
+ border: none;
184
+ color: var(--c-primary-500);
185
+ }
186
+
187
+ &.tc-btn-link-warning {
188
+ background: none;
189
+ border: none;
190
+ color: var(--warning);
191
+ }
192
+
193
+ &.tc-btn-link-danger {
194
+ background: none;
195
+ border: none;
196
+ color: var(--danger);
197
+ }
198
+ }
199
+
200
+ .tc-btn:disabled {
201
+ opacity: 0.6;
202
+ cursor: not-allowed;
203
+ }
204
+
205
+ .tc-btn-block{
206
+ width: 100% !important;
207
+ justify-content: center;
208
+ }
209
+
210
+ // ========================================
211
+ // old Button Standard
212
+ // ========================================
213
+
214
+ .btn-new {
215
+ border: none;
216
+ transition: all 0.25s;
217
+ background: var(--tc-gray-100);
218
+ color: var(--tc-gray-500);
219
+ font-size: 12px;
220
+ font-weight: normal;
221
+ border-radius: 30px;
222
+ padding: 10px 25px!important;
223
+ cursor: pointer;
224
+ display: inline-flex;
225
+ align-items: center;
226
+ }
227
+
228
+ .btn-new.active,
229
+ .btn-new.opened,
230
+ .btn-new:hover {
231
+ background: var(--c-primary-500);
232
+ color: var(--white);
233
+ }
234
+
235
+ .btn-new i {
236
+ margin: 0 10px 0 5px;
237
+ }
238
+
239
+ .btn-new i:nth-child(2) {
240
+ margin: 0 0 0 10px;
241
+ }
242
+
243
+ .btn-new-grey {
244
+ border: none;
245
+ transition: all 0.25s;
246
+ background: var(--tc-gray-100) !important;
247
+ color: var(--tc-gray-600) !important;
248
+ font-size: 12px;
249
+ font-weight: normal;
250
+ border-radius: 30px;
251
+ padding: 10px 20px;
252
+ cursor: pointer;
253
+ border: none !important;
254
+ }
255
+
256
+ .btn-new-grey.active,
257
+ .btn-new-grey.opened,
258
+ .btn-new-grey:hover {
259
+ background: var(--c-primary-500)!important;
260
+ color: var(--white) !important;
261
+ }
262
+
263
+ .btn-new-grey i {
264
+ margin: 0 10px 0 5px;
265
+ }
266
+
267
+ .btn-new-grey i:nth-child(2) {
268
+ margin: 0 0 0 10px;
269
+ }
270
+
271
+ .tc-btn-primary,
272
+ .btn-green-validate {
273
+ /*display: inline-flex;*/
274
+ align-items: center;
275
+ background: var(--c-primary-500)!important;
276
+ color: var(--white) !important;
277
+ font-size: 12px;
278
+ font-weight: normal;
279
+ border-radius: 30px;
280
+ cursor: pointer;
281
+ border: none!important;
282
+ transition: all 0.25s;
283
+ }
284
+
285
+ .tc-btn-primary.full {
286
+ width: 100%!important;
287
+ }
288
+
289
+ .tc-btn-primary.full.txt-center,
290
+ .tc-btn-primary.txt-center {
291
+ justify-content: center;
292
+ }
293
+
294
+ .btn-green-validate:disabled {
295
+ background: var(--tc-gray-200) !important;
296
+ }
297
+
298
+ .tc-btn-primary.small {
299
+ padding: 10px 20px;
300
+ }
301
+
302
+ .tc-btn-primary.active,
303
+ .tc-btn-primary.opened,
304
+ .tc-btn-primary:hover {
305
+ background: var(--c-primary-700) !important;
306
+ }
307
+
308
+ .tc-btn-primary i {
309
+ margin: 0 10px 0 5px;
310
+ }
311
+
312
+ .tc-btn-primary i:nth-child(2) {
313
+ margin: 0 0 0 10px;
314
+ }
315
+
316
+ .btn-new-outline {
317
+ background: var(--white) !important;
318
+ color: var(--tc-gray-600);
319
+ font-size: 12px;
320
+ font-weight: normal;
321
+ transition: all 0.25s;
322
+ border: 3px solid var(--tc-gray-100);
323
+ border-radius: 30px;
324
+ padding: 10px 25px;
325
+ cursor: pointer;
326
+
327
+ .btn-new-outline i {
328
+ margin: 0 10px 0 5px;
329
+
330
+ &:nth-child(2) {
331
+ margin: 0 0 0 10px;
332
+ }
333
+ }
334
+ }
335
+
336
+ .btn-new-outline.active,
337
+ .btn-new-outline.opened,
338
+ .btn-new-outline:hover {
339
+ background: var(--tc-gray-100) !important;
340
+ }
341
+
342
+
343
+
344
+ .btn-new-group {
345
+ display: flex;
346
+ flex: 1;
347
+ margin: 20px 0;
348
+ }
349
+
350
+ .btn-new-group.align-left {
351
+ justify-content: flex-start;
352
+ }
353
+
354
+ .btn-new-group.align-right {
355
+ justify-content: flex-end;
356
+ }
357
+
358
+ .btn-new-group .btn-new {
359
+ margin: 0 20px 0 0;
360
+ }
361
+
362
+ .btn-new-group .btn-new:last-child {
363
+ margin: 0;
364
+ }
365
+
366
+ .btn-disabled {
367
+ /*display: inline-flex;*/
368
+ align-items: center;
369
+ background: var(--c-primary-500)!important;
370
+ color: var(--white) !important;
371
+ font-size: 12px;
372
+ font-weight: normal;
373
+ border-radius: 30px;
374
+ padding: 10px 20px;
375
+ border: none!important;
376
+ transition: all 0.25s;
377
+ cursor: pointer;
378
+
379
+ &:disabled {
380
+ background: var(--tc-gray-100) !important;
381
+ color: var(--tc-gray-600) !important;
382
+ cursor: default;
383
+ }
384
+ }
385
+
386
+
387
+ .btn-new-white {
388
+ font-size: 12px;
389
+ font-weight: normal;
390
+
391
+ display: inline-flex;
392
+ align-items: center;
393
+ color: var(--c-primary-500);
394
+ background: var(--white);
395
+ border-radius: 30px;
396
+ padding: 10px 20px;
397
+ cursor: pointer;
398
+ border: none!important;
399
+ transition: all 0.25s;
400
+ }
401
+
402
+ .btn-new-white:hover {
403
+ color: var(--white);
404
+ background: var(--var(--c-primary-500)2);
405
+ }
406
+
407
+ .btn-new-full {
408
+ flex: 1;
409
+ display: flex;
410
+ justify-content: center;
411
+ align-items: center;
412
+ width: 100%;
413
+ }
414
+
415
+
416
+ .btn-group .btn-secondary {
417
+ color: var(--white);
418
+ background-color: var(--c-primary-500);
419
+ border-color: var(--c-primary-500);
420
+ }
421
+
422
+ .btn-group .btn-secondary:hover {
423
+ background-color: var(--c-primary-500)2;
424
+ }
425
+
426
+
427
+ button:focus {
428
+ outline: 0 !important;
429
+ }
430
+
431
+ .btn {
432
+ padding: 10px 20px;
433
+ border-radius: 20px;
434
+ font-size: inherit;
435
+ color: var(--tc-gray-500);
436
+ }
437
+
438
+ .btn:focus {
439
+ box-shadow: none;
440
+ }
441
+
442
+ .btn-xs {
443
+ font-size: 12px;
444
+ padding: 0.2rem 0.4rem;
445
+ }
446
+
447
+ .btn-group-sm > .btn,
448
+ .btn-sm {
449
+ font-size: 12px;
450
+ }
451
+
452
+ .float-e-margins .btn {
453
+ margin-bottom: 5px;
454
+ }
455
+
456
+ .btn-w-m {
457
+ min-width: 120px;
458
+ }
459
+
460
+ .btn-primary.btn-outline {
461
+ color: var(--c-primary-500);
462
+ }
463
+
464
+ .btn-success.btn-outline {
465
+ color: var(--tc-complete);
466
+ }
467
+
468
+ .btn-info.btn-outline {
469
+ color: var(--c-primary-500);
470
+ }
471
+
472
+ .btn-warning.btn-outline {
473
+ color: var(--tc-warning);
474
+ }
475
+
476
+ .btn-danger.btn-outline {
477
+ color: var(--tc-danger);
478
+ }
479
+
480
+ .btn-primary.btn-outline:hover,
481
+ .btn-success.btn-outline:hover,
482
+ .btn-info.btn-outline:hover,
483
+ .btn-warning.btn-outline:hover,
484
+ .btn-danger.btn-outline:hover {
485
+ color: var(--white);
486
+ }
487
+
488
+ .btn {
489
+
490
+ &.active,
491
+ &:active {
492
+ background-image: none;
493
+ outline: 0;
494
+ -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
495
+ box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
496
+ }
497
+ }
498
+
499
+ .btn-primary {
500
+ font-size: 12px;
501
+ color: var(--white);
502
+ background-color: var(--c-primary-500)!important;
503
+ border-color: var(--c-primary-500)!important;
504
+ padding: 10px 20px;
505
+ border-radius: 20px;
506
+
507
+ &:hover,
508
+ &:focus,
509
+ &.focus {
510
+ background-color: var(--c-primary-500)2!important;
511
+ border-color: var(--c-primary-500)2!important;
512
+ color: var(--white) !important;
513
+ }
514
+
515
+ &.disabled,
516
+ &:disabled {
517
+ color: var(--tc-gray-400);
518
+ background-color: var(--tc-gray-500);
519
+ border-color: var(--tc-gray-500);
520
+ }
521
+ }
522
+
523
+
524
+
525
+ .btn-primary:not(:disabled):not(.disabled):active,
526
+ .btn-primary:not(:disabled):not(.disabled).active,
527
+ .show > .btn-primary.dropdown-toggle {
528
+ color: var(--white);
529
+ background-color: #18a689;
530
+ border-color: #18a689;
531
+ }
532
+
533
+ .btn-primary:not(:disabled):not(.disabled):active:focus,
534
+ .btn-primary:not(:disabled):not(.disabled).active:focus,
535
+ .show > .btn-primary.dropdown-toggle:focus {
536
+ -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
537
+ box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
538
+ }
539
+
540
+ .btn-primary.btn-icon i {
541
+ margin: 0 10px 0 0;
542
+ }
543
+
544
+ .btn-success {
545
+ color: var(--white);
546
+ background-color: var(--c-primary-500);
547
+ border-color: var(--c-primary-500);
548
+
549
+ &:hover,
550
+ &:focus,
551
+ &.focus {
552
+ color: var(--white);
553
+ background-color: var(--c-primary-500);
554
+ border-color: var(--c-primary-500);
555
+ }
556
+
557
+ &.disabled,
558
+ &:disabled {
559
+ color: var(--white);
560
+ background-color: #1a7bb9;
561
+ border-color: #1a7bb9;
562
+ }
563
+ }
564
+
565
+ .btn-success:not(:disabled):not(.disabled):active,
566
+ .btn-success:not(:disabled):not(.disabled).active,
567
+ .show > .btn-success.dropdown-toggle {
568
+ color: var(--white);
569
+ background-color: var(--c-primary-500);
570
+ border-color: var(--c-primary-500);
571
+ }
572
+
573
+ .btn-success:not(:disabled):not(.disabled):active:focus,
574
+ .btn-success:not(:disabled):not(.disabled).active:focus,
575
+ .show > .btn-success.dropdown-toggle:focus {
576
+ -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
577
+ box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
578
+ }
579
+
580
+ .btn-info {
581
+ color: var(--white);
582
+ background-color: #23c6c8;
583
+ border-color: #23c6c8;
584
+ }
585
+
586
+ .btn-info:hover,
587
+ .btn-info:focus,
588
+ .btn-info.focus {
589
+ color: var(--white);
590
+ background-color: #21b9bb;
591
+ border-color: #21b9bb;
592
+
593
+ &.disabled,
594
+ &:disabled {
595
+ color: var(--white);
596
+ background-color: #21b9bb;
597
+ border-color: #21b9bb;
598
+ }
599
+ }
600
+
601
+ .btn-info:not(:disabled):not(.disabled):active,
602
+ .btn-info:not(:disabled):not(.disabled).active,
603
+ .show > .btn-info.dropdown-toggle {
604
+ color: var(--white);
605
+ background-color: #21b9bb;
606
+ border-color: #21b9bb;
607
+ }
608
+
609
+ .btn-info:not(:disabled):not(.disabled):active:focus,
610
+ .btn-info:not(:disabled):not(.disabled).active:focus,
611
+ .show > .btn-info.dropdown-toggle:focus {
612
+ -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
613
+ box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
614
+ }
615
+
616
+ .btn-default {
617
+ color: inherit;
618
+ background: white;
619
+ border: 1px solid var(--tc-gray-300);
620
+ font-size: 12px;
621
+
622
+ &:hover,
623
+ &:focus,
624
+ &:active,
625
+ &.active,
626
+ &:active:focus,
627
+ &:active:hover,
628
+ &.active:hover {
629
+ color: inherit;
630
+ border: 1px solid #d2d2d2;
631
+ }
632
+
633
+ &:active,
634
+ &.active {
635
+ box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15) inset;
636
+ }
637
+
638
+ &.disabled,
639
+ &.disabled:hover,
640
+ &.disabled:focus,
641
+ &.disabled:active,
642
+ &.disabled.active,
643
+ &[disabled],
644
+ &[disabled]:hover,
645
+ &[disabled]:focus,
646
+ &[disabled]:active,
647
+ &.active[disabled] {
648
+ color: #cacaca;
649
+ }
650
+ }
651
+
652
+ .open .dropdown-toggle.btn-default,
653
+ .btn-default.active:focus {
654
+ color: inherit;
655
+ border: 1px solid #d2d2d2;
656
+ }
657
+
658
+ .open .dropdown-toggle.btn-default {
659
+ box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15) inset;
660
+ }
661
+
662
+
663
+ fieldset[disabled] .btn-default,
664
+ fieldset[disabled] .btn-default:hover,
665
+ fieldset[disabled] .btn-default:focus,
666
+ fieldset[disabled] .btn-default:active,
667
+ fieldset[disabled] .btn-default.active {
668
+ color: #cacaca;
669
+ }
670
+
671
+ .btn-warning {
672
+ color: var(--white);
673
+ background-color: #f8ac59;
674
+ border-color: #f8ac59;
675
+
676
+ &:hover,
677
+ &:focus,
678
+ &.focus {
679
+ color: var(--white);
680
+ background-color: #f7a54a;
681
+ border-color: #f7a54a;
682
+ }
683
+
684
+ &.disabled,
685
+ &:disabled {
686
+ color: var(--white);
687
+ background-color: #f7a54a;
688
+ border-color: #f7a54a;
689
+ }
690
+
691
+ &:not(:disabled):not(.disabled):active,
692
+ &:not(:disabled):not(.disabled).active {
693
+ color: var(--white);
694
+ background-color: #f7a54a;
695
+ border-color: #f7a54a;
696
+ }
697
+
698
+ &:not(:disabled):not(.disabled):active:focus,
699
+ &:not(:disabled):not(.disabled).active:focus {
700
+ -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
701
+ box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
702
+ }
703
+ }
704
+
705
+ .show > .btn-warning.dropdown-toggle {
706
+ color: var(--white);
707
+ background-color: #f7a54a;
708
+ border-color: #f7a54a;
709
+
710
+ &:focus {
711
+ -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
712
+ box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
713
+ }
714
+ }
715
+
716
+ .btn-danger {
717
+ color: var(--white);
718
+ background-color: #ed5565;
719
+ border-color: #ed5565;
720
+ &:hover,
721
+ &:focus,
722
+ &.focus {
723
+ color: var(--white);
724
+ background-color: #ec4758;
725
+ border-color: #ec4758;
726
+ }
727
+
728
+ &.disabled,
729
+ &:disabled {
730
+ color: var(--white);
731
+ background-color: #ec4758;
732
+ border-color: #ec4758;
733
+ }
734
+
735
+ &:not(:disabled):not(.disabled):active,
736
+ &:not(:disabled):not(.disabled).active {
737
+ color: var(--white);
738
+ background-color: #ec4758;
739
+ border-color: #ec4758;
740
+ }
741
+
742
+ &:not(:disabled):not(.disabled):active:focus,
743
+ &:not(:disabled):not(.disabled).active:focus {
744
+ -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
745
+ box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
746
+ }
747
+ }
748
+
749
+ .show > .btn-danger.dropdown-toggle {
750
+ color: var(--white);
751
+ background-color: #ec4758;
752
+ border-color: #ec4758;
753
+
754
+ &:focus {
755
+ -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
756
+ box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
757
+ }
758
+ }
759
+
760
+
761
+ .btn-link {
762
+ color: inherit;
763
+
764
+ &:hover,
765
+ &:focus,
766
+ &:active,
767
+ &.active {
768
+ color: var(--c-primary-500);
769
+ text-decoration: none;
770
+ }
771
+
772
+ &:active,
773
+ &.active {
774
+ background-image: none;
775
+ box-shadow: none;
776
+ }
777
+
778
+ &.disabled,
779
+ &.disabled:hover,
780
+ &.disabled:focus,
781
+ &.disabled:active,
782
+ &.disabled.active,
783
+ &[disabled],
784
+ &[disabled]:hover,
785
+ &[disabled]:focus,
786
+ &[disabled]:active,
787
+ &.active[disabled] {
788
+ color: #cacaca;
789
+ }
790
+ }
791
+
792
+ .open .dropdown-toggle.btn-link {
793
+ color: var(--c-primary-500);
794
+ text-decoration: none;
795
+ background-image: none;
796
+ box-shadow: none;
797
+ }
798
+
799
+ fieldset[disabled] .btn-link,
800
+ fieldset[disabled] .btn-link:hover,
801
+ fieldset[disabled] .btn-link:focus,
802
+ fieldset[disabled] .btn-link:active,
803
+ fieldset[disabled] .btn-link.active {
804
+ color: #cacaca;
805
+ }
806
+
807
+ .btn-white {
808
+ color: var(--tc-gray-500);
809
+ background: white;
810
+ border: 1px solid #e7eaec;
811
+ padding: 10px 20px;
812
+ border-radius: 30px;
813
+
814
+ &:hover,
815
+ &:focus,
816
+ &:active,
817
+ &.active,
818
+ &:active:focus,
819
+ &:active:hover,
820
+ &.active:hover,
821
+ &.active:focus {
822
+ color: var(--white);
823
+ border: 1px solid var(--c-primary-500);
824
+ background: var(--c-primary-500);
825
+ }
826
+
827
+ &:active,
828
+ &.active {
829
+ box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15) inset;
830
+ }
831
+
832
+ &:active,
833
+ &.active{
834
+ background-image: none;
835
+ }
836
+
837
+ &.disabled,
838
+ &.disabled:hover,
839
+ &.disabled:focus,
840
+ &.disabled:active,
841
+ &.disabled.active,
842
+ &[disabled],
843
+ &[disabled]:hover,
844
+ &[disabled]:focus,
845
+ &[disabled]:active,
846
+ &.active[disabled]{
847
+ color: #cacaca;
848
+ }
849
+ }
850
+
851
+ .open .dropdown-toggle.btn-white {
852
+ color: var(--white);
853
+ border: 1px solid var(--c-primary-500);
854
+ background: var(--c-primary-500);
855
+ background-image: none;
856
+ }
857
+
858
+
859
+ fieldset[disabled] .btn-white,
860
+ fieldset[disabled] .btn-white:hover,
861
+ fieldset[disabled] .btn-white:focus,
862
+ fieldset[disabled] .btn-white:active,
863
+ fieldset[disabled] .btn-white.active {
864
+ color: #cacaca;
865
+ }
866
+
867
+ .btn-outline {
868
+ color: inherit;
869
+ background-color: transparent;
870
+ transition: all .5s;
871
+ }
872
+
873
+ .btn-rounded {
874
+ border-radius: 50px;
875
+ }
876
+
877
+ .btn-large-dim {
878
+ width: 90px;
879
+ height: 90px;
880
+ font-size: 42px;
881
+ }
882
+
883
+ button.dim {
884
+ display: inline-block;
885
+ text-decoration: none;
886
+ text-transform: uppercase;
887
+ text-align: center;
888
+ padding-top: 6px;
889
+ margin-right: 10px;
890
+ position: relative;
891
+ cursor: pointer;
892
+ border-radius: 5px;
893
+ font-weight: 600;
894
+ margin-bottom: 20px !important;
895
+
896
+ &:active {
897
+ top: 3px;
898
+ }
899
+ }
900
+
901
+ button.btn-primary.dim {
902
+ box-shadow: inset 0 0 0 #16987e, 0 5px 0 0 #16987e, 0 10px 5px #999999 !important;
903
+
904
+ &:active {
905
+ box-shadow: inset 0 0 0 #16987e, 0 2px 0 0 #16987e, 0 5px 3px #999999 !important;
906
+ }
907
+ }
908
+
909
+ button.btn-default.dim {
910
+ box-shadow: inset 0 0 0 #b3b3b3, 0 5px 0 0 #b3b3b3, 0 10px 5px #999999 !important;
911
+
912
+ &:active {
913
+ box-shadow: inset 0 0 0 #b3b3b3, 0 2px 0 0 #b3b3b3, 0 5px 3px #999999 !important;
914
+ }
915
+ }
916
+
917
+
918
+ button.btn-warning.dim {
919
+ box-shadow: inset 0 0 0 #f79d3c, 0 5px 0 0 #f79d3c, 0 10px 5px #999999 !important;
920
+
921
+ &:active {
922
+ box-shadow: inset 0 0 0 #f79d3c, 0 2px 0 0 #f79d3c, 0 5px 3px #999999 !important;
923
+ }
924
+ }
925
+
926
+ button.btn-info.dim {
927
+ box-shadow: inset 0 0 0 #1eacae, 0 5px 0 0 #1eacae, 0 10px 5px #999999 !important;
928
+
929
+ &:active {
930
+ box-shadow: inset 0 0 0 #1eacae, 0 2px 0 0 #1eacae, 0 5px 3px #999999 !important;
931
+ }
932
+ }
933
+
934
+ button.btn-success.dim {
935
+ box-shadow: inset 0 0 0 #1872ab, 0 5px 0 0 #1872ab, 0 10px 5px #999999 !important;
936
+
937
+ &:active {
938
+ box-shadow: inset 0 0 0 #1872ab, 0 2px 0 0 #1872ab, 0 5px 3px #999999 !important;
939
+ }
940
+ }
941
+
942
+
943
+ button.btn-danger.dim {
944
+ box-shadow: inset 0 0 0 #ea394c, 0 5px 0 0 #ea394c, 0 10px 5px #999999 !important;
945
+
946
+ &:active {
947
+ box-shadow: inset 0 0 0 #ea394c, 0 2px 0 0 #ea394c, 0 5px 3px #999999 !important;
948
+ }
949
+ }
950
+
951
+
952
+ button.dim {
953
+
954
+ &:before {
955
+ font-size: 50px;
956
+ line-height: 1em;
957
+ font-weight: normal;
958
+ color: var(--white);
959
+ display: block;
960
+ padding-top: 10px;
961
+ }
962
+
963
+ &:active:before {
964
+ top: 7px;
965
+ font-size: 50px;
966
+ }
967
+ }
968
+
969
+
970
+ .btn:focus {
971
+ outline: none !important;
972
+ }
973
+
974
+ .btn-circle {
975
+ width: 30px;
976
+ height: 30px;
977
+ padding: 6px 0;
978
+ border-radius: 10px;
979
+ text-align: center;
980
+ font-size: 12px;
981
+ line-height: 1.42;
982
+ }
983
+
984
+ .btn-circle.btn-lg {
985
+ width: 50px;
986
+ height: 50px;
987
+ padding: 10px 16px;
988
+ border-radius: 25px;
989
+ font-size: 18px;
990
+ line-height: 1.33;
991
+ }
992
+
993
+ .btn-circle.btn-xl {
994
+ width: 70px;
995
+ height: 70px;
996
+ padding: 10px 16px;
997
+ border-radius: 35px;
998
+ font-size: 24px;
999
+ line-height: 1.33;
1000
+ }
1001
+
1002
+ .tc-display-inline-flex{
1003
+ display: inline-flex;
1004
+ }