@dev-tcloud/tcloud-ui 0.1.15 → 0.1.17
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.
- package/esm2020/lib/_modules/tcloud-ui-tab-menu/services/tab-menu.service.mjs +10 -1
- package/esm2020/lib/_modules/tcloud-ui-tab-menu/tcloud-ui-tab-menu.component.mjs +11 -3
- package/fesm2015/dev-tcloud-tcloud-ui.mjs +19 -2
- package/fesm2015/dev-tcloud-tcloud-ui.mjs.map +1 -1
- package/fesm2020/dev-tcloud-tcloud-ui.mjs +19 -2
- package/fesm2020/dev-tcloud-tcloud-ui.mjs.map +1 -1
- package/lib/_modules/tcloud-ui-tab-menu/services/tab-menu.service.d.ts +5 -0
- package/lib/_modules/tcloud-ui-tab-menu/tcloud-ui-tab-menu.component.d.ts +4 -1
- package/package.json +1 -1
- package/scss/components/custom/tab-menu.scss +11 -0
- package/scss/components/styles.scss +1 -1
- package/scss/tcloud/custom/alerts.scss +38 -0
- package/scss/tcloud/custom/buttons.scss +331 -233
- package/scss/tcloud/custom/colors.scss +20 -8
- package/scss/tcloud/custom/mixins.scss +143 -143
- package/scss/tcloud/custom/tcloud-prime.scss +8 -17
- package/scss/tcloud/custom/tcloud-standard.scss +1 -1
- package/scss/tcloud/custom/variables.scss +1 -1
- package/scss/tcloud/styles.scss +1 -0
|
@@ -15,72 +15,92 @@
|
|
|
15
15
|
height: 40px;
|
|
16
16
|
border: 1px solid var(--tc-gray-100);
|
|
17
17
|
|
|
18
|
+
p {
|
|
19
|
+
font-size: 13px;
|
|
20
|
+
color: var(--tc-gray-700);
|
|
21
|
+
}
|
|
18
22
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
+
i {
|
|
24
|
+
margin-right: 6px;
|
|
25
|
+
margin-left: 6px;
|
|
26
|
+
font-size: 16px;
|
|
27
|
+
}
|
|
23
28
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
29
|
+
&:hover {
|
|
30
|
+
color: var(--tc-primary);
|
|
31
|
+
background: var(--tc-gray-50);
|
|
32
|
+
border-color: var(--tc-gray-100);
|
|
33
|
+
}
|
|
28
34
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
&:link { text-decoration: none; }
|
|
35
|
-
&:visited { text-decoration: none; }
|
|
36
|
-
&:hover { text-decoration: none; }
|
|
37
|
-
&:active { text-decoration: none; }
|
|
35
|
+
&:link,
|
|
36
|
+
&:visited,
|
|
37
|
+
&:hover,
|
|
38
|
+
&:active {
|
|
39
|
+
text-decoration: none;
|
|
38
40
|
}
|
|
39
41
|
|
|
40
|
-
|
|
41
|
-
display:
|
|
42
|
+
&.full {
|
|
43
|
+
display: flex;
|
|
44
|
+
align-items: center;
|
|
45
|
+
justify-content: center;
|
|
46
|
+
flex: 1;
|
|
42
47
|
width: 100%;
|
|
43
|
-
|
|
44
|
-
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.tc-btn-block {
|
|
52
|
+
display: block;
|
|
53
|
+
width: 100%;
|
|
54
|
+
text-align: center;
|
|
55
|
+
padding: 10px 25px;
|
|
45
56
|
}
|
|
46
57
|
|
|
47
58
|
.tc-btn:disabled,
|
|
48
59
|
.tc-btn[disabled]{
|
|
49
|
-
|
|
50
|
-
|
|
60
|
+
cursor: no-drop;
|
|
61
|
+
opacity: 0.6;
|
|
51
62
|
}
|
|
52
63
|
|
|
53
|
-
.tc-btn-primary{
|
|
64
|
+
.tc-btn-primary {
|
|
65
|
+
color: var(--white);
|
|
66
|
+
background: var(--tc-primary);
|
|
67
|
+
border-color: var(--tc-primary);
|
|
68
|
+
|
|
69
|
+
&:hover {
|
|
54
70
|
color: var(--white);
|
|
55
|
-
background: var(--tc-
|
|
71
|
+
background: var(--tc-complemt-3);
|
|
56
72
|
border-color: var(--tc-primary);
|
|
73
|
+
}
|
|
57
74
|
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
75
|
+
|
|
76
|
+
&.full {
|
|
77
|
+
display: flex;
|
|
78
|
+
align-items: center;
|
|
79
|
+
justify-content: center;
|
|
80
|
+
flex: 1;
|
|
81
|
+
width: 100%;
|
|
82
|
+
}
|
|
63
83
|
}
|
|
64
84
|
|
|
65
85
|
.tc-btn-link {
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
86
|
+
cursor: pointer;
|
|
87
|
+
padding: 10px;
|
|
88
|
+
background: none;
|
|
89
|
+
color: var(--tc-primary);
|
|
90
|
+
border: none;
|
|
71
91
|
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
92
|
+
p {
|
|
93
|
+
text-align: left;
|
|
94
|
+
color: var(--tc-primary);
|
|
95
|
+
}
|
|
76
96
|
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
97
|
+
&:hover{
|
|
98
|
+
color: var(--tc-complemt-3);
|
|
99
|
+
}
|
|
80
100
|
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
101
|
+
&:disabled{
|
|
102
|
+
color: var(--tc-gray-700);
|
|
103
|
+
}
|
|
84
104
|
}
|
|
85
105
|
|
|
86
106
|
.tc-btn:disabled {
|
|
@@ -162,17 +182,13 @@ padding: 10px 20px;
|
|
|
162
182
|
cursor: pointer;
|
|
163
183
|
border: none!important;
|
|
164
184
|
transition: all 0.25s;
|
|
165
|
-
|
|
166
185
|
}
|
|
167
186
|
|
|
168
187
|
.tc-btn-primary.full {
|
|
169
188
|
width: 100%!important;
|
|
170
189
|
}
|
|
171
190
|
|
|
172
|
-
.tc-btn-primary.full.txt-center
|
|
173
|
-
justify-content: center;
|
|
174
|
-
}
|
|
175
|
-
|
|
191
|
+
.tc-btn-primary.full.txt-center,
|
|
176
192
|
.tc-btn-primary.txt-center {
|
|
177
193
|
justify-content: center;
|
|
178
194
|
}
|
|
@@ -211,11 +227,11 @@ padding: 10px 25px;
|
|
|
211
227
|
cursor: pointer;
|
|
212
228
|
|
|
213
229
|
.btn-new-outline i {
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
230
|
+
margin: 0 10px 0 5px;
|
|
231
|
+
|
|
232
|
+
&:nth-child(2) {
|
|
233
|
+
margin: 0 0 0 10px;
|
|
234
|
+
}
|
|
219
235
|
}
|
|
220
236
|
}
|
|
221
237
|
|
|
@@ -261,23 +277,23 @@ padding: 10px 20px;
|
|
|
261
277
|
border: none!important;
|
|
262
278
|
transition: all 0.25s;
|
|
263
279
|
cursor: pointer;
|
|
264
|
-
}
|
|
265
280
|
|
|
266
|
-
|
|
267
|
-
background: var(--tc-gray-100) !important;
|
|
268
|
-
color: var(--tc-gray-600) !important;
|
|
269
|
-
cursor: default;
|
|
281
|
+
&:disabled {
|
|
282
|
+
background: var(--tc-gray-100) !important;
|
|
283
|
+
color: var(--tc-gray-600) !important;
|
|
284
|
+
cursor: default;
|
|
270
285
|
}
|
|
286
|
+
}
|
|
287
|
+
|
|
271
288
|
|
|
272
289
|
.btn-new-white {
|
|
290
|
+
font-size: 12px;
|
|
291
|
+
font-weight: normal;
|
|
273
292
|
|
|
274
293
|
display: inline-flex;
|
|
275
294
|
align-items: center;
|
|
276
295
|
color: var(--tc-primary);
|
|
277
296
|
background: var(--white);
|
|
278
|
-
|
|
279
|
-
font-size: 12px;
|
|
280
|
-
font-weight: normal;
|
|
281
297
|
border-radius: 30px;
|
|
282
298
|
padding: 10px 20px;
|
|
283
299
|
cursor: pointer;
|
|
@@ -326,13 +342,13 @@ box-shadow: none;
|
|
|
326
342
|
}
|
|
327
343
|
|
|
328
344
|
.btn-xs {
|
|
329
|
-
font-size:
|
|
345
|
+
font-size: 12px;
|
|
330
346
|
padding: 0.2rem 0.4rem;
|
|
331
347
|
}
|
|
332
348
|
|
|
333
349
|
.btn-group-sm > .btn,
|
|
334
350
|
.btn-sm {
|
|
335
|
-
font-size:
|
|
351
|
+
font-size: 12px;
|
|
336
352
|
}
|
|
337
353
|
|
|
338
354
|
.float-e-margins .btn {
|
|
@@ -371,36 +387,42 @@ color: var(--tc-danger);
|
|
|
371
387
|
color: var(--white);
|
|
372
388
|
}
|
|
373
389
|
|
|
374
|
-
.btn
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
-
|
|
379
|
-
|
|
390
|
+
.btn {
|
|
391
|
+
|
|
392
|
+
&.active,
|
|
393
|
+
&:active {
|
|
394
|
+
background-image: none;
|
|
395
|
+
outline: 0;
|
|
396
|
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
397
|
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
398
|
+
}
|
|
380
399
|
}
|
|
381
400
|
|
|
382
401
|
.btn-primary {
|
|
402
|
+
font-size: 12px;
|
|
383
403
|
color: var(--white);
|
|
384
404
|
background-color: var(--tc-primary)!important;
|
|
385
405
|
border-color: var(--tc-primary)!important;
|
|
386
406
|
padding: 10px 20px;
|
|
387
407
|
border-radius: 20px;
|
|
388
|
-
}
|
|
389
408
|
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
background-color: var(--tc-primary)2!important;
|
|
394
|
-
border-color: var(--tc-primary)2!important;
|
|
395
|
-
color: var(--white) !important;
|
|
409
|
+
&:hover,
|
|
410
|
+
&:focus,
|
|
411
|
+
&.focus {
|
|
412
|
+
background-color: var(--tc-primary)2!important;
|
|
413
|
+
border-color: var(--tc-primary)2!important;
|
|
414
|
+
color: var(--white) !important;
|
|
396
415
|
}
|
|
397
416
|
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
color: var(--tc-gray-400);
|
|
401
|
-
background-color: var(--tc-gray-500);
|
|
402
|
-
border-color: var(--tc-gray-500);
|
|
417
|
+
&.disabled,
|
|
418
|
+
&:disabled {
|
|
419
|
+
color: var(--tc-gray-400);
|
|
420
|
+
background-color: var(--tc-gray-500);
|
|
421
|
+
border-color: var(--tc-gray-500);
|
|
403
422
|
}
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
|
|
404
426
|
|
|
405
427
|
.btn-primary:not(:disabled):not(.disabled):active,
|
|
406
428
|
.btn-primary:not(:disabled):not(.disabled).active,
|
|
@@ -409,6 +431,7 @@ color: var(--white);
|
|
|
409
431
|
background-color: #18a689;
|
|
410
432
|
border-color: #18a689;
|
|
411
433
|
}
|
|
434
|
+
|
|
412
435
|
.btn-primary:not(:disabled):not(.disabled):active:focus,
|
|
413
436
|
.btn-primary:not(:disabled):not(.disabled).active:focus,
|
|
414
437
|
.show > .btn-primary.dropdown-toggle:focus {
|
|
@@ -424,20 +447,23 @@ margin: 0 10px 0 0;
|
|
|
424
447
|
color: var(--white);
|
|
425
448
|
background-color: var(--tc-primary);
|
|
426
449
|
border-color: var(--tc-primary);
|
|
450
|
+
|
|
451
|
+
&:hover,
|
|
452
|
+
&:focus,
|
|
453
|
+
&.focus {
|
|
454
|
+
color: var(--white);
|
|
455
|
+
background-color: var(--tc-primary);
|
|
456
|
+
border-color: var(--tc-primary);
|
|
427
457
|
}
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
color: var(--white);
|
|
432
|
-
background-color:
|
|
433
|
-
border-color:
|
|
458
|
+
|
|
459
|
+
&.disabled,
|
|
460
|
+
&:disabled {
|
|
461
|
+
color: var(--white);
|
|
462
|
+
background-color: #1a7bb9;
|
|
463
|
+
border-color: #1a7bb9;
|
|
434
464
|
}
|
|
435
|
-
.btn-success.disabled,
|
|
436
|
-
.btn-success:disabled {
|
|
437
|
-
color: var(--white);
|
|
438
|
-
background-color: #1a7bb9;
|
|
439
|
-
border-color: #1a7bb9;
|
|
440
465
|
}
|
|
466
|
+
|
|
441
467
|
.btn-success:not(:disabled):not(.disabled):active,
|
|
442
468
|
.btn-success:not(:disabled):not(.disabled).active,
|
|
443
469
|
.show > .btn-success.dropdown-toggle {
|
|
@@ -445,30 +471,35 @@ color: var(--white);
|
|
|
445
471
|
background-color: var(--tc-primary);
|
|
446
472
|
border-color: var(--tc-primary);
|
|
447
473
|
}
|
|
474
|
+
|
|
448
475
|
.btn-success:not(:disabled):not(.disabled):active:focus,
|
|
449
476
|
.btn-success:not(:disabled):not(.disabled).active:focus,
|
|
450
477
|
.show > .btn-success.dropdown-toggle:focus {
|
|
451
478
|
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
452
479
|
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
453
480
|
}
|
|
481
|
+
|
|
454
482
|
.btn-info {
|
|
455
483
|
color: var(--white);
|
|
456
484
|
background-color: #23c6c8;
|
|
457
485
|
border-color: #23c6c8;
|
|
458
486
|
}
|
|
487
|
+
|
|
459
488
|
.btn-info:hover,
|
|
460
489
|
.btn-info:focus,
|
|
461
490
|
.btn-info.focus {
|
|
462
491
|
color: var(--white);
|
|
463
492
|
background-color: #21b9bb;
|
|
464
493
|
border-color: #21b9bb;
|
|
494
|
+
|
|
495
|
+
&.disabled,
|
|
496
|
+
&:disabled {
|
|
497
|
+
color: var(--white);
|
|
498
|
+
background-color: #21b9bb;
|
|
499
|
+
border-color: #21b9bb;
|
|
465
500
|
}
|
|
466
|
-
.btn-info.disabled,
|
|
467
|
-
.btn-info:disabled {
|
|
468
|
-
color: var(--white);
|
|
469
|
-
background-color: #21b9bb;
|
|
470
|
-
border-color: #21b9bb;
|
|
471
501
|
}
|
|
502
|
+
|
|
472
503
|
.btn-info:not(:disabled):not(.disabled):active,
|
|
473
504
|
.btn-info:not(:disabled):not(.disabled).active,
|
|
474
505
|
.show > .btn-info.dropdown-toggle {
|
|
@@ -476,44 +507,61 @@ color: var(--white);
|
|
|
476
507
|
background-color: #21b9bb;
|
|
477
508
|
border-color: #21b9bb;
|
|
478
509
|
}
|
|
510
|
+
|
|
479
511
|
.btn-info:not(:disabled):not(.disabled):active:focus,
|
|
480
512
|
.btn-info:not(:disabled):not(.disabled).active:focus,
|
|
481
513
|
.show > .btn-info.dropdown-toggle:focus {
|
|
482
514
|
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
483
515
|
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
484
516
|
}
|
|
517
|
+
|
|
485
518
|
.btn-default {
|
|
486
519
|
color: inherit;
|
|
487
520
|
background: white;
|
|
488
521
|
border: 1px solid var(--tc-gray-300);
|
|
522
|
+
font-size: 12px;
|
|
523
|
+
|
|
524
|
+
&:hover,
|
|
525
|
+
&:focus,
|
|
526
|
+
&:active,
|
|
527
|
+
&.active,
|
|
528
|
+
&:active:focus,
|
|
529
|
+
&:active:hover,
|
|
530
|
+
&.active:hover {
|
|
531
|
+
color: inherit;
|
|
532
|
+
border: 1px solid #d2d2d2;
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
&:active,
|
|
536
|
+
&.active {
|
|
537
|
+
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15) inset;
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
&.disabled,
|
|
541
|
+
&.disabled:hover,
|
|
542
|
+
&.disabled:focus,
|
|
543
|
+
&.disabled:active,
|
|
544
|
+
&.disabled.active,
|
|
545
|
+
&[disabled],
|
|
546
|
+
&[disabled]:hover,
|
|
547
|
+
&[disabled]:focus,
|
|
548
|
+
&[disabled]:active,
|
|
549
|
+
&.active[disabled] {
|
|
550
|
+
color: #cacaca;
|
|
551
|
+
}
|
|
489
552
|
}
|
|
490
|
-
|
|
491
|
-
.btn-default:focus,
|
|
492
|
-
.btn-default:active,
|
|
493
|
-
.btn-default.active,
|
|
553
|
+
|
|
494
554
|
.open .dropdown-toggle.btn-default,
|
|
495
|
-
.btn-default:active:focus,
|
|
496
|
-
.btn-default:active:hover,
|
|
497
|
-
.btn-default.active:hover,
|
|
498
555
|
.btn-default.active:focus {
|
|
499
556
|
color: inherit;
|
|
500
557
|
border: 1px solid #d2d2d2;
|
|
501
558
|
}
|
|
502
|
-
|
|
503
|
-
.btn-default.active,
|
|
559
|
+
|
|
504
560
|
.open .dropdown-toggle.btn-default {
|
|
505
561
|
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15) inset;
|
|
506
562
|
}
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
.btn-default.disabled:focus,
|
|
510
|
-
.btn-default.disabled:active,
|
|
511
|
-
.btn-default.disabled.active,
|
|
512
|
-
.btn-default[disabled],
|
|
513
|
-
.btn-default[disabled]:hover,
|
|
514
|
-
.btn-default[disabled]:focus,
|
|
515
|
-
.btn-default[disabled]:active,
|
|
516
|
-
.btn-default.active[disabled],
|
|
563
|
+
|
|
564
|
+
|
|
517
565
|
fieldset[disabled] .btn-default,
|
|
518
566
|
fieldset[disabled] .btn-default:hover,
|
|
519
567
|
fieldset[disabled] .btn-default:focus,
|
|
@@ -521,101 +569,135 @@ fieldset[disabled] .btn-default:active,
|
|
|
521
569
|
fieldset[disabled] .btn-default.active {
|
|
522
570
|
color: #cacaca;
|
|
523
571
|
}
|
|
572
|
+
|
|
524
573
|
.btn-warning {
|
|
525
574
|
color: var(--white);
|
|
526
575
|
background-color: #f8ac59;
|
|
527
576
|
border-color: #f8ac59;
|
|
577
|
+
|
|
578
|
+
&:hover,
|
|
579
|
+
&:focus,
|
|
580
|
+
&.focus {
|
|
581
|
+
color: var(--white);
|
|
582
|
+
background-color: #f7a54a;
|
|
583
|
+
border-color: #f7a54a;
|
|
528
584
|
}
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
color: var(--white);
|
|
533
|
-
background-color: #f7a54a;
|
|
534
|
-
border-color: #f7a54a;
|
|
585
|
+
|
|
586
|
+
&.disabled,
|
|
587
|
+
&:disabled {
|
|
588
|
+
color: var(--white);
|
|
589
|
+
background-color: #f7a54a;
|
|
590
|
+
border-color: #f7a54a;
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
&:not(:disabled):not(.disabled):active,
|
|
594
|
+
&:not(:disabled):not(.disabled).active {
|
|
595
|
+
color: var(--white);
|
|
596
|
+
background-color: #f7a54a;
|
|
597
|
+
border-color: #f7a54a;
|
|
598
|
+
}
|
|
599
|
+
|
|
600
|
+
&:not(:disabled):not(.disabled):active:focus,
|
|
601
|
+
&:not(:disabled):not(.disabled).active:focus {
|
|
602
|
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
603
|
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
535
604
|
}
|
|
536
|
-
.btn-warning.disabled,
|
|
537
|
-
.btn-warning:disabled {
|
|
538
|
-
color: var(--white);
|
|
539
|
-
background-color: #f7a54a;
|
|
540
|
-
border-color: #f7a54a;
|
|
541
605
|
}
|
|
542
|
-
|
|
543
|
-
.btn-warning:not(:disabled):not(.disabled).active,
|
|
606
|
+
|
|
544
607
|
.show > .btn-warning.dropdown-toggle {
|
|
545
608
|
color: var(--white);
|
|
546
609
|
background-color: #f7a54a;
|
|
547
610
|
border-color: #f7a54a;
|
|
611
|
+
|
|
612
|
+
&:focus {
|
|
613
|
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
614
|
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
548
615
|
}
|
|
549
|
-
.btn-warning:not(:disabled):not(.disabled):active:focus,
|
|
550
|
-
.btn-warning:not(:disabled):not(.disabled).active:focus,
|
|
551
|
-
.show > .btn-warning.dropdown-toggle:focus {
|
|
552
|
-
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
553
|
-
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
554
616
|
}
|
|
617
|
+
|
|
555
618
|
.btn-danger {
|
|
556
619
|
color: var(--white);
|
|
557
620
|
background-color: #ed5565;
|
|
558
621
|
border-color: #ed5565;
|
|
622
|
+
&:hover,
|
|
623
|
+
&:focus,
|
|
624
|
+
&.focus {
|
|
625
|
+
color: var(--white);
|
|
626
|
+
background-color: #ec4758;
|
|
627
|
+
border-color: #ec4758;
|
|
559
628
|
}
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
color: var(--white);
|
|
564
|
-
background-color: #ec4758;
|
|
565
|
-
border-color: #ec4758;
|
|
629
|
+
|
|
630
|
+
&.disabled,
|
|
631
|
+
&:disabled {
|
|
632
|
+
color: var(--white);
|
|
633
|
+
background-color: #ec4758;
|
|
634
|
+
border-color: #ec4758;
|
|
635
|
+
}
|
|
636
|
+
|
|
637
|
+
&:not(:disabled):not(.disabled):active,
|
|
638
|
+
&:not(:disabled):not(.disabled).active {
|
|
639
|
+
color: var(--white);
|
|
640
|
+
background-color: #ec4758;
|
|
641
|
+
border-color: #ec4758;
|
|
642
|
+
}
|
|
643
|
+
|
|
644
|
+
&:not(:disabled):not(.disabled):active:focus,
|
|
645
|
+
&:not(:disabled):not(.disabled).active:focus {
|
|
646
|
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
647
|
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
566
648
|
}
|
|
567
|
-
.btn-danger.disabled,
|
|
568
|
-
.btn-danger:disabled {
|
|
569
|
-
color: var(--white);
|
|
570
|
-
background-color: #ec4758;
|
|
571
|
-
border-color: #ec4758;
|
|
572
649
|
}
|
|
573
650
|
|
|
574
|
-
.btn-danger:not(:disabled):not(.disabled):active,
|
|
575
|
-
.btn-danger:not(:disabled):not(.disabled).active,
|
|
576
651
|
.show > .btn-danger.dropdown-toggle {
|
|
577
652
|
color: var(--white);
|
|
578
653
|
background-color: #ec4758;
|
|
579
654
|
border-color: #ec4758;
|
|
580
|
-
}
|
|
581
655
|
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
586
|
-
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
656
|
+
&:focus {
|
|
657
|
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
658
|
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
587
659
|
}
|
|
660
|
+
}
|
|
661
|
+
|
|
588
662
|
|
|
589
663
|
.btn-link {
|
|
590
664
|
color: inherit;
|
|
665
|
+
|
|
666
|
+
&:hover,
|
|
667
|
+
&:focus,
|
|
668
|
+
&:active,
|
|
669
|
+
&.active {
|
|
670
|
+
color: var(--tc-primary);
|
|
671
|
+
text-decoration: none;
|
|
591
672
|
}
|
|
592
673
|
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
674
|
+
&:active,
|
|
675
|
+
&.active {
|
|
676
|
+
background-image: none;
|
|
677
|
+
box-shadow: none;
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
&.disabled,
|
|
681
|
+
&.disabled:hover,
|
|
682
|
+
&.disabled:focus,
|
|
683
|
+
&.disabled:active,
|
|
684
|
+
&.disabled.active,
|
|
685
|
+
&[disabled],
|
|
686
|
+
&[disabled]:hover,
|
|
687
|
+
&[disabled]:focus,
|
|
688
|
+
&[disabled]:active,
|
|
689
|
+
&.active[disabled] {
|
|
690
|
+
color: #cacaca;
|
|
691
|
+
}
|
|
600
692
|
}
|
|
601
693
|
|
|
602
|
-
.btn-link:active,
|
|
603
|
-
.btn-link.active,
|
|
604
694
|
.open .dropdown-toggle.btn-link {
|
|
695
|
+
color: var(--tc-primary);
|
|
696
|
+
text-decoration: none;
|
|
605
697
|
background-image: none;
|
|
606
698
|
box-shadow: none;
|
|
607
699
|
}
|
|
608
700
|
|
|
609
|
-
.btn-link.disabled,
|
|
610
|
-
.btn-link.disabled:hover,
|
|
611
|
-
.btn-link.disabled:focus,
|
|
612
|
-
.btn-link.disabled:active,
|
|
613
|
-
.btn-link.disabled.active,
|
|
614
|
-
.btn-link[disabled],
|
|
615
|
-
.btn-link[disabled]:hover,
|
|
616
|
-
.btn-link[disabled]:focus,
|
|
617
|
-
.btn-link[disabled]:active,
|
|
618
|
-
.btn-link.active[disabled],
|
|
619
701
|
fieldset[disabled] .btn-link,
|
|
620
702
|
fieldset[disabled] .btn-link:hover,
|
|
621
703
|
fieldset[disabled] .btn-link:focus,
|
|
@@ -630,43 +712,52 @@ background: white;
|
|
|
630
712
|
border: 1px solid #e7eaec;
|
|
631
713
|
padding: 10px 20px;
|
|
632
714
|
border-radius: 30px;
|
|
715
|
+
|
|
716
|
+
&:hover,
|
|
717
|
+
&:focus,
|
|
718
|
+
&:active,
|
|
719
|
+
&.active,
|
|
720
|
+
&:active:focus,
|
|
721
|
+
&:active:hover,
|
|
722
|
+
&.active:hover,
|
|
723
|
+
&.active:focus {
|
|
724
|
+
color: var(--white);
|
|
725
|
+
border: 1px solid var(--tc-primary);
|
|
726
|
+
background: var(--tc-primary);
|
|
633
727
|
}
|
|
634
728
|
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
.btn-white.active,
|
|
639
|
-
.open .dropdown-toggle.btn-white,
|
|
640
|
-
.btn-white:active:focus,
|
|
641
|
-
.btn-white:active:hover,
|
|
642
|
-
.btn-white.active:hover,
|
|
643
|
-
.btn-white.active:focus {
|
|
644
|
-
color: var(--white);
|
|
645
|
-
border: 1px solid var(--tc-primary);
|
|
646
|
-
background: var(--tc-primary);
|
|
729
|
+
&:active,
|
|
730
|
+
&.active {
|
|
731
|
+
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15) inset;
|
|
647
732
|
}
|
|
648
733
|
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
734
|
+
&:active,
|
|
735
|
+
&.active{
|
|
736
|
+
background-image: none;
|
|
737
|
+
}
|
|
738
|
+
|
|
739
|
+
&.disabled,
|
|
740
|
+
&.disabled:hover,
|
|
741
|
+
&.disabled:focus,
|
|
742
|
+
&.disabled:active,
|
|
743
|
+
&.disabled.active,
|
|
744
|
+
&[disabled],
|
|
745
|
+
&[disabled]:hover,
|
|
746
|
+
&[disabled]:focus,
|
|
747
|
+
&[disabled]:active,
|
|
748
|
+
&.active[disabled]{
|
|
749
|
+
color: #cacaca;
|
|
750
|
+
}
|
|
652
751
|
}
|
|
653
752
|
|
|
654
|
-
.btn-white:active,
|
|
655
|
-
.btn-white.active,
|
|
656
753
|
.open .dropdown-toggle.btn-white {
|
|
754
|
+
color: var(--white);
|
|
755
|
+
border: 1px solid var(--tc-primary);
|
|
756
|
+
background: var(--tc-primary);
|
|
657
757
|
background-image: none;
|
|
658
758
|
}
|
|
659
759
|
|
|
660
|
-
|
|
661
|
-
.btn-white.disabled:hover,
|
|
662
|
-
.btn-white.disabled:focus,
|
|
663
|
-
.btn-white.disabled:active,
|
|
664
|
-
.btn-white.disabled.active,
|
|
665
|
-
.btn-white[disabled],
|
|
666
|
-
.btn-white[disabled]:hover,
|
|
667
|
-
.btn-white[disabled]:focus,
|
|
668
|
-
.btn-white[disabled]:active,
|
|
669
|
-
.btn-white.active[disabled],
|
|
760
|
+
|
|
670
761
|
fieldset[disabled] .btn-white,
|
|
671
762
|
fieldset[disabled] .btn-white:hover,
|
|
672
763
|
fieldset[disabled] .btn-white:focus,
|
|
@@ -703,73 +794,80 @@ cursor: pointer;
|
|
|
703
794
|
border-radius: 5px;
|
|
704
795
|
font-weight: 600;
|
|
705
796
|
margin-bottom: 20px !important;
|
|
706
|
-
}
|
|
707
797
|
|
|
708
|
-
|
|
709
|
-
top: 3px;
|
|
798
|
+
&:active {
|
|
799
|
+
top: 3px;
|
|
800
|
+
}
|
|
710
801
|
}
|
|
711
802
|
|
|
712
803
|
button.btn-primary.dim {
|
|
713
804
|
box-shadow: inset 0 0 0 #16987e, 0 5px 0 0 #16987e, 0 10px 5px #999999 !important;
|
|
714
|
-
}
|
|
715
805
|
|
|
716
|
-
|
|
717
|
-
box-shadow: inset 0 0 0 #16987e, 0 2px 0 0 #16987e, 0 5px 3px #999999 !important;
|
|
806
|
+
&:active {
|
|
807
|
+
box-shadow: inset 0 0 0 #16987e, 0 2px 0 0 #16987e, 0 5px 3px #999999 !important;
|
|
808
|
+
}
|
|
718
809
|
}
|
|
719
810
|
|
|
720
811
|
button.btn-default.dim {
|
|
721
812
|
box-shadow: inset 0 0 0 #b3b3b3, 0 5px 0 0 #b3b3b3, 0 10px 5px #999999 !important;
|
|
722
|
-
}
|
|
723
813
|
|
|
724
|
-
|
|
725
|
-
box-shadow: inset 0 0 0 #b3b3b3, 0 2px 0 0 #b3b3b3, 0 5px 3px #999999 !important;
|
|
814
|
+
&:active {
|
|
815
|
+
box-shadow: inset 0 0 0 #b3b3b3, 0 2px 0 0 #b3b3b3, 0 5px 3px #999999 !important;
|
|
816
|
+
}
|
|
726
817
|
}
|
|
727
818
|
|
|
819
|
+
|
|
728
820
|
button.btn-warning.dim {
|
|
729
821
|
box-shadow: inset 0 0 0 #f79d3c, 0 5px 0 0 #f79d3c, 0 10px 5px #999999 !important;
|
|
730
|
-
}
|
|
731
822
|
|
|
732
|
-
|
|
733
|
-
box-shadow: inset 0 0 0 #f79d3c, 0 2px 0 0 #f79d3c, 0 5px 3px #999999 !important;
|
|
823
|
+
&:active {
|
|
824
|
+
box-shadow: inset 0 0 0 #f79d3c, 0 2px 0 0 #f79d3c, 0 5px 3px #999999 !important;
|
|
825
|
+
}
|
|
734
826
|
}
|
|
735
827
|
|
|
736
828
|
button.btn-info.dim {
|
|
737
829
|
box-shadow: inset 0 0 0 #1eacae, 0 5px 0 0 #1eacae, 0 10px 5px #999999 !important;
|
|
738
|
-
}
|
|
739
830
|
|
|
740
|
-
|
|
741
|
-
box-shadow: inset 0 0 0 #1eacae, 0 2px 0 0 #1eacae, 0 5px 3px #999999 !important;
|
|
831
|
+
&:active {
|
|
832
|
+
box-shadow: inset 0 0 0 #1eacae, 0 2px 0 0 #1eacae, 0 5px 3px #999999 !important;
|
|
833
|
+
}
|
|
742
834
|
}
|
|
743
835
|
|
|
744
836
|
button.btn-success.dim {
|
|
745
837
|
box-shadow: inset 0 0 0 #1872ab, 0 5px 0 0 #1872ab, 0 10px 5px #999999 !important;
|
|
746
|
-
}
|
|
747
838
|
|
|
748
|
-
|
|
749
|
-
box-shadow: inset 0 0 0 #1872ab, 0 2px 0 0 #1872ab, 0 5px 3px #999999 !important;
|
|
839
|
+
&:active {
|
|
840
|
+
box-shadow: inset 0 0 0 #1872ab, 0 2px 0 0 #1872ab, 0 5px 3px #999999 !important;
|
|
750
841
|
}
|
|
842
|
+
}
|
|
843
|
+
|
|
751
844
|
|
|
752
845
|
button.btn-danger.dim {
|
|
753
846
|
box-shadow: inset 0 0 0 #ea394c, 0 5px 0 0 #ea394c, 0 10px 5px #999999 !important;
|
|
754
|
-
}
|
|
755
847
|
|
|
756
|
-
|
|
757
|
-
box-shadow: inset 0 0 0 #ea394c, 0 2px 0 0 #ea394c, 0 5px 3px #999999 !important;
|
|
848
|
+
&:active {
|
|
849
|
+
box-shadow: inset 0 0 0 #ea394c, 0 2px 0 0 #ea394c, 0 5px 3px #999999 !important;
|
|
850
|
+
}
|
|
758
851
|
}
|
|
759
852
|
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
853
|
+
|
|
854
|
+
button.dim {
|
|
855
|
+
|
|
856
|
+
&:before {
|
|
857
|
+
font-size: 50px;
|
|
858
|
+
line-height: 1em;
|
|
859
|
+
font-weight: normal;
|
|
860
|
+
color: var(--white);
|
|
861
|
+
display: block;
|
|
862
|
+
padding-top: 10px;
|
|
767
863
|
}
|
|
768
864
|
|
|
769
|
-
|
|
770
|
-
top: 7px;
|
|
771
|
-
font-size: 50px;
|
|
865
|
+
&:active:before {
|
|
866
|
+
top: 7px;
|
|
867
|
+
font-size: 50px;
|
|
772
868
|
}
|
|
869
|
+
}
|
|
870
|
+
|
|
773
871
|
|
|
774
872
|
.btn:focus {
|
|
775
873
|
outline: none !important;
|
|
@@ -782,7 +880,7 @@ padding: 6px 0;
|
|
|
782
880
|
border-radius: 10px;
|
|
783
881
|
text-align: center;
|
|
784
882
|
font-size: 12px;
|
|
785
|
-
line-height: 1.
|
|
883
|
+
line-height: 1.42;
|
|
786
884
|
}
|
|
787
885
|
|
|
788
886
|
.btn-circle.btn-lg {
|