cronapp-framework-js 3.0.0-SP.3 → 3.0.0-SP.30
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/components/crn-dynamic-menu.components.json +0 -21
- package/components/crn-enterprise-combobox-multiple.components.json +6 -0
- package/components/crn-navbar.components.json +1 -1
- package/components/templates/Component_Container/crn-eight-four-container.template.html +2 -2
- package/components/templates/Component_Container/crn-four-eight-container.template.html +2 -2
- package/components/templates/Component_Container/crn-one-container.template.html +1 -1
- package/components/templates/Component_Container/crn-three-container.template.html +3 -3
- package/components/templates/Component_Container/crn-three-six-three-container.template.html +3 -3
- package/components/templates/Component_Container/crn-two-container.template.html +2 -2
- package/components/templates/cron-autocomplete.designtime.html +2 -2
- package/components/templates/cron-combobox-multiple.template.html +1 -1
- package/css/themes/custom/krypton/custom-krypton.css +925 -233
- package/css/themes/custom/krypton/grid-krypton.css +252 -66
- package/css/themes/custom/krypton/navbar-krypton.css +13 -12
- package/css/themes/custom/krypton/panel-krypton.css +29 -26
- package/css/themes/custom/material/navbar-material.css +2 -0
- package/css/themes/custom/material-round/custom-material-round.css +186 -34
- package/css/themes/custom/material-round/grid-material-round.css +174 -18
- package/css/themes/custom/navigator/custom-navigator.css +47 -20
- package/css/themes/custom/theme-general/menu-vertical-retratil.css +34 -21
- package/css/themes/custom/theme-general/menu.css +4 -0
- package/dist/components/templates/Component_Container/crn-eight-four-container.template.html +1 -1
- package/dist/components/templates/Component_Container/crn-four-eight-container.template.html +1 -1
- package/dist/components/templates/Component_Container/crn-one-container.template.html +1 -1
- package/dist/components/templates/Component_Container/crn-three-container.template.html +1 -1
- package/dist/components/templates/Component_Container/crn-three-six-three-container.template.html +1 -1
- package/dist/components/templates/Component_Container/crn-two-container.template.html +1 -1
- package/dist/components/templates/cron-autocomplete.designtime.html +1 -1
- package/dist/components/templates/cron-combobox-multiple.template.html +1 -1
- package/dist/css/themes/custom/krypton/custom-krypton.css +1 -1
- package/dist/css/themes/custom/krypton/grid-krypton.css +1 -1
- package/dist/css/themes/custom/krypton/navbar-krypton.css +1 -1
- package/dist/css/themes/custom/krypton/panel-krypton.css +1 -1
- package/dist/css/themes/custom/material/navbar-material.css +1 -1
- package/dist/css/themes/custom/material-round/custom-material-round.css +1 -1
- package/dist/css/themes/custom/material-round/grid-material-round.css +1 -1
- package/dist/css/themes/custom/navigator/custom-navigator.css +1 -1
- package/dist/css/themes/custom/theme-general/menu-vertical-retratil.css +1 -1
- package/dist/css/themes/custom/theme-general/menu.css +1 -1
- package/dist/js/app.js +1 -1
- package/dist/js/controllers.js +1 -1
- package/dist/js/directives.js +10 -10
- package/dist/js/reports/reports.service.js +1 -1
- package/dist/js/upload.service.js +1 -1
- package/js/app.js +5 -4
- package/js/controllers.js +40 -19
- package/js/directives.js +75 -14
- package/js/reports/reports.service.js +5 -5
- package/js/upload.service.js +7 -4
- package/package.json +1 -1
- package/postupdate.json +6 -0
|
@@ -2,21 +2,24 @@
|
|
|
2
2
|
background: var(--backgroundColor40, #14202a);
|
|
3
3
|
box-shadow: none;
|
|
4
4
|
border-color: transparent;
|
|
5
|
-
border-radius:
|
|
5
|
+
border-radius: 5px;
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
.panel-footer {
|
|
9
9
|
color: var(--backgroundColor40, #14202a);
|
|
10
|
-
background: var(--
|
|
10
|
+
background: var(--backgroundColor60, #ced0d2);
|
|
11
11
|
border: transparent;
|
|
12
|
-
border-radius:
|
|
12
|
+
border-radius: 5px;
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
.panel-body .lead {
|
|
16
16
|
margin-bottom: 0;
|
|
17
17
|
font-size: var(--textNormalSize, 10px);
|
|
18
|
-
border-radius:
|
|
18
|
+
border-radius: 5px;
|
|
19
|
+
}
|
|
19
20
|
|
|
21
|
+
.panel-heading {
|
|
22
|
+
border-bottom: unset;
|
|
20
23
|
}
|
|
21
24
|
|
|
22
25
|
.panel-body {
|
|
@@ -25,90 +28,90 @@
|
|
|
25
28
|
margin: 1px 0;
|
|
26
29
|
border: transparent;
|
|
27
30
|
background: var(--textColor40, #f0f0f0);
|
|
28
|
-
border-radius:
|
|
31
|
+
border-radius: 5px;
|
|
29
32
|
color: var(--backgroundColor40, #14202a);
|
|
30
33
|
}
|
|
31
34
|
|
|
32
35
|
.panel-group .panel-heading.heading-arrow {
|
|
33
|
-
border-radius:
|
|
36
|
+
border-radius: 5px;
|
|
34
37
|
}
|
|
35
38
|
|
|
36
39
|
/* Default */
|
|
37
40
|
.panel-default .panel-heading {
|
|
38
41
|
color: var(--textColor40, #f0f0f0);
|
|
39
|
-
background:
|
|
42
|
+
background: linear-gradient(180deg, var(--colorDefault40, #262c32) 0%, var(--colorDefault70, #15181b) 100%);
|
|
40
43
|
border-color: transparent;
|
|
41
|
-
border-radius:
|
|
44
|
+
border-radius: 5px;
|
|
42
45
|
}
|
|
43
46
|
|
|
44
47
|
/* Primary */
|
|
45
48
|
.panel-primary>.panel-heading {
|
|
46
49
|
color: var(--textColor40, #f0f0f0);
|
|
47
|
-
background:
|
|
50
|
+
background: linear-gradient(180deg, var(--colorPrimary40, #197fdd) 0%, var(--colorPrimary70, #09467f) 100%);
|
|
48
51
|
border-color: transparent;
|
|
49
|
-
border-radius:
|
|
52
|
+
border-radius: 5px;
|
|
50
53
|
}
|
|
51
54
|
|
|
52
55
|
/* Success */
|
|
53
56
|
.panel-success>.panel-heading {
|
|
54
57
|
color: var(--textColor40, #f0f0f0);
|
|
55
|
-
background:
|
|
58
|
+
background: linear-gradient(180deg, var(--colorSuccess40, #2ffc2b) 0%, var(--colorSuccess70, #108d0d) 100%);
|
|
56
59
|
border-color: transparent;
|
|
57
|
-
border-radius:
|
|
60
|
+
border-radius: 5px;
|
|
58
61
|
}
|
|
59
62
|
|
|
60
63
|
/* Info */
|
|
61
64
|
.panel-info>.panel-heading {
|
|
62
65
|
color: var(--textColor40, #f0f0f0);
|
|
63
|
-
background:
|
|
66
|
+
background: linear-gradient(180deg, var(--colorCalm40, #44e1d8) 0%, var(--colorCalm70, #077988) 100%);
|
|
64
67
|
border-color: transparent;
|
|
65
|
-
border-radius:
|
|
68
|
+
border-radius: 5px;
|
|
66
69
|
}
|
|
67
70
|
|
|
68
71
|
/* Warning */
|
|
69
72
|
.panel-warning>.panel-heading {
|
|
70
73
|
color: var(--textColor40, #f0f0f0);
|
|
71
|
-
background:
|
|
74
|
+
background: linear-gradient(180deg, var(--colorWarning40, #f58d11) 0%, var(--colorWarning70, #864d09) 100%);
|
|
72
75
|
border-color: transparent;
|
|
73
|
-
border-radius:
|
|
76
|
+
border-radius: 5px;
|
|
74
77
|
}
|
|
75
78
|
|
|
76
79
|
/* Danger */
|
|
77
80
|
.panel-danger>.panel-heading {
|
|
78
81
|
color: var(--textColorDanger40, #fffef9);
|
|
79
|
-
background:
|
|
82
|
+
background: linear-gradient(180deg, var(--colorDanger40, #f03a3a) 0%, var(--colorDanger70, #832020) 100%);
|
|
80
83
|
border-color: transparent;
|
|
81
|
-
border-radius:
|
|
84
|
+
border-radius: 5px;
|
|
82
85
|
}
|
|
83
86
|
|
|
84
87
|
/* Light */
|
|
85
88
|
.panel-light>.panel-heading {
|
|
86
89
|
color: var(--textColor40, #f0f0f0);
|
|
87
|
-
background:
|
|
90
|
+
background: linear-gradient(180deg, var(--colorLight40, #8da0b2) 0%, var(--colorLight70, #4d5861) 100%);
|
|
88
91
|
border-color: transparent;
|
|
89
|
-
border-radius:
|
|
92
|
+
border-radius: 5px;
|
|
90
93
|
}
|
|
91
94
|
|
|
92
95
|
/* Stable */
|
|
93
96
|
.panel-stable>.panel-heading {
|
|
94
97
|
color: var(--textColor40, #f0f0f0);
|
|
95
|
-
background:
|
|
98
|
+
background: linear-gradient(180deg, var(--colorStable40, #818181) 0%, var(--colorStable70, #3e4042) 100%);
|
|
96
99
|
border-color: transparent;
|
|
97
|
-
border-radius:
|
|
100
|
+
border-radius: 5px;
|
|
98
101
|
}
|
|
99
102
|
|
|
100
103
|
/* Royal */
|
|
101
104
|
.panel-royal>.panel-heading {
|
|
102
105
|
color: var(--textColor40, #f0f0f0);
|
|
103
|
-
background:
|
|
106
|
+
background: linear-gradient(180deg, var(--colorRoyal40, #0e3760) 0%, var(--colorRoyal70, #1a2e43) 100%);
|
|
104
107
|
border-color: transparent;
|
|
105
|
-
border-radius:
|
|
108
|
+
border-radius: 5px;
|
|
106
109
|
}
|
|
107
110
|
|
|
108
111
|
/* Dark */
|
|
109
112
|
.panel-dark>.panel-heading {
|
|
110
113
|
color: var(--textColor40, #f0f0f0);
|
|
111
|
-
background:
|
|
114
|
+
background: linear-gradient(180deg, var(--colorDark40, #000000) 0%, var(--colorDark70, #0f1e2e) 100%);
|
|
112
115
|
border-color: transparent;
|
|
113
|
-
border-radius:
|
|
116
|
+
border-radius: 5px;
|
|
114
117
|
}
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
--menuItemIconWidth: 25px;
|
|
45
45
|
|
|
46
46
|
/* Background */
|
|
47
|
-
--backgroundColor10: #
|
|
47
|
+
--backgroundColor10: #fffef9;
|
|
48
48
|
--backgroundColor20: #f8f8f8;
|
|
49
49
|
--backgroundColor30: #f5f5f5;
|
|
50
50
|
--backgroundColor40: #f2f2f2;
|
|
@@ -199,7 +199,7 @@
|
|
|
199
199
|
--colorLight40: #eadede;
|
|
200
200
|
--colorLight50: #cdc2c2;
|
|
201
201
|
--colorLight60: #dcc8c8;
|
|
202
|
-
--colorLight70: #
|
|
202
|
+
--colorLight70: #cebaba;
|
|
203
203
|
--textColorLight10: #252525;
|
|
204
204
|
--textColorLight20: #313131;
|
|
205
205
|
--textColorLight30: #3b3b3b;
|
|
@@ -241,26 +241,26 @@
|
|
|
241
241
|
--textColorDark70: #fffffd;
|
|
242
242
|
|
|
243
243
|
/* Color - Neutral (web e mobile) */
|
|
244
|
-
--colorNeutral00: #
|
|
245
|
-
--colorNeutral10: #
|
|
246
|
-
--colorNeutral20: #
|
|
247
|
-
--colorNeutral30: #
|
|
248
|
-
--colorNeutral40: #
|
|
249
|
-
--colorNeutral50: #
|
|
250
|
-
--colorNeutral60: #
|
|
251
|
-
--colorNeutral70: #
|
|
244
|
+
--colorNeutral00: #ffffff;
|
|
245
|
+
--colorNeutral10: #f1f1f1;
|
|
246
|
+
--colorNeutral20: #e3e3e3;
|
|
247
|
+
--colorNeutral30: #d5d5d5;
|
|
248
|
+
--colorNeutral40: #c7c7c7;
|
|
249
|
+
--colorNeutral50: #b9b9b9;
|
|
250
|
+
--colorNeutral60: #acacac;
|
|
251
|
+
--colorNeutral70: #9e9e9e;
|
|
252
252
|
--colorNeutral80: #909090;
|
|
253
253
|
--colorNeutral90: #828282;
|
|
254
254
|
--colorNeutral100: #747474;
|
|
255
255
|
--colorNeutral110: #666666;
|
|
256
|
-
--colorNeutral120: #
|
|
256
|
+
--colorNeutral120: #5d5d5d;
|
|
257
257
|
--colorNeutral130: #535353;
|
|
258
|
-
--colorNeutral140: #
|
|
258
|
+
--colorNeutral140: #4a4a4a;
|
|
259
259
|
--colorNeutral150: #414141;
|
|
260
260
|
--colorNeutral160: #383838;
|
|
261
|
-
--colorNeutral170: #
|
|
261
|
+
--colorNeutral170: #2e2e2e;
|
|
262
262
|
--colorNeutral180: #252525;
|
|
263
|
-
--colorNeutral190: #
|
|
263
|
+
--colorNeutral190: #1c1c1c;
|
|
264
264
|
--colorNeutral200: #131313;
|
|
265
265
|
--colorNeutral210: #090909;
|
|
266
266
|
--colorNeutral220: #000000;
|
|
@@ -416,7 +416,49 @@
|
|
|
416
416
|
border-radius: var(--borderRadiusExtraSmall, 10px);
|
|
417
417
|
}
|
|
418
418
|
|
|
419
|
+
.btn.btn-primary {
|
|
420
|
+
background: var(--colorPrimary40, #68afd9);
|
|
421
|
+
border-color: transparent;
|
|
422
|
+
color: var(--textColorPrimary40, #fffef9);
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
.btn.btn-success:active {
|
|
426
|
+
background: var(--colorSuccess70, #365c3b);
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
.btn.btn-info:active {
|
|
430
|
+
background: var(--colorCalm60, #6593ae);
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
.k-button.k-warning.active,
|
|
434
|
+
.k-button.k-warning:active,
|
|
435
|
+
.btn.btn-warning.active,
|
|
436
|
+
.btn.btn-warning:active {
|
|
437
|
+
background: var(--colorWarning60, #ab5e3d);
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
.btn.btn-stable:active {
|
|
441
|
+
background: var(--colorStable70, #717171);
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
.btn.btn-light:hover {
|
|
445
|
+
color: var(--textColorLight40, #434343);
|
|
446
|
+
background: var(--colorLight60, #dcc8c8);
|
|
447
|
+
border-color: transparent;
|
|
448
|
+
outline: none;
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
.btn.btn-light:active {
|
|
452
|
+
background: var(--colorLight70, #cebaba);
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
.btn.btn-royal:active {
|
|
456
|
+
background: var(--colorRoyal70, #1a0e2b);
|
|
457
|
+
}
|
|
419
458
|
|
|
459
|
+
.btn.btn-dark:active {
|
|
460
|
+
background: var(--colorDark70, #1c1c1c);
|
|
461
|
+
}
|
|
420
462
|
|
|
421
463
|
.k-button.active,
|
|
422
464
|
.k-button:active,
|
|
@@ -467,6 +509,10 @@ textarea.k-textbox:hover {
|
|
|
467
509
|
margin: 0;
|
|
468
510
|
}
|
|
469
511
|
|
|
512
|
+
.k-widget.k-multiselect {
|
|
513
|
+
background: transparent;
|
|
514
|
+
}
|
|
515
|
+
|
|
470
516
|
.cardinput {
|
|
471
517
|
padding: 0;
|
|
472
518
|
}
|
|
@@ -516,7 +562,6 @@ input.k-textbox:hover:focus,
|
|
|
516
562
|
}
|
|
517
563
|
|
|
518
564
|
/* Date and Hour */
|
|
519
|
-
|
|
520
565
|
.bootstrap-datetimepicker-widget .timepicker-hour,
|
|
521
566
|
.bootstrap-datetimepicker-widget .timepicker-minute,
|
|
522
567
|
.bootstrap-datetimepicker-widget .timepicker-second {
|
|
@@ -619,8 +664,10 @@ input .k-textbox {
|
|
|
619
664
|
}
|
|
620
665
|
|
|
621
666
|
.login-view .reset-password {
|
|
622
|
-
text-align:
|
|
623
|
-
|
|
667
|
+
text-align: end;
|
|
668
|
+
width: 100%;
|
|
669
|
+
max-width: 600px;
|
|
670
|
+
right: 12px;
|
|
624
671
|
}
|
|
625
672
|
|
|
626
673
|
.login-view input.k-textbox {
|
|
@@ -656,7 +703,6 @@ textarea.k-textbox {
|
|
|
656
703
|
background: var(--backgroundColor, #f2f2f2);
|
|
657
704
|
}
|
|
658
705
|
|
|
659
|
-
#modalCookies p,
|
|
660
706
|
#modalCookies label,
|
|
661
707
|
.privacy-view .modal-cookies h1 {
|
|
662
708
|
color: var(--textColor40, #434343);
|
|
@@ -667,12 +713,7 @@ textarea.k-textbox {
|
|
|
667
713
|
filter: brightness(0) invert(1);
|
|
668
714
|
}
|
|
669
715
|
|
|
670
|
-
.navbar-brand>img {
|
|
671
|
-
filter: brightness(0) invert(1)
|
|
672
|
-
}
|
|
673
|
-
|
|
674
716
|
/*Backgrounds login*/
|
|
675
|
-
|
|
676
717
|
.bg-login #container-second {
|
|
677
718
|
background: var(--colorDefault40, #442b69);
|
|
678
719
|
}
|
|
@@ -729,7 +770,6 @@ label.labelCollapsibleMenu {
|
|
|
729
770
|
}
|
|
730
771
|
|
|
731
772
|
/*Links Colors*/
|
|
732
|
-
|
|
733
773
|
.color-default {
|
|
734
774
|
color: var(--colorDefault40, #442b69);
|
|
735
775
|
}
|
|
@@ -775,6 +815,14 @@ label.labelCollapsibleMenu {
|
|
|
775
815
|
color: var(--colorWarning50, #dc7144);
|
|
776
816
|
}
|
|
777
817
|
|
|
818
|
+
.color-danger {
|
|
819
|
+
color: var(--colorDanger40, #e34646);
|
|
820
|
+
}
|
|
821
|
+
|
|
822
|
+
.color-danger:hover {
|
|
823
|
+
color: var(--colorDanger60, #a63333);
|
|
824
|
+
}
|
|
825
|
+
|
|
778
826
|
.color-light {
|
|
779
827
|
color: var(--colorLight40, #eadede);
|
|
780
828
|
}
|
|
@@ -851,7 +899,6 @@ label.labelCollapsibleMenu {
|
|
|
851
899
|
}
|
|
852
900
|
|
|
853
901
|
/* Lista Opção*/
|
|
854
|
-
|
|
855
902
|
.k-radio-label:after,
|
|
856
903
|
.k-radio:checked+.k-radio-label:after,
|
|
857
904
|
.option-default .k-radio-label:after,
|
|
@@ -893,7 +940,6 @@ label.labelCollapsibleMenu {
|
|
|
893
940
|
.option-info .k-radio-label:after,
|
|
894
941
|
.option-info .k-radio:checked+.k-radio-label:after {
|
|
895
942
|
background: var(--colorCalm40, #8ac8ee);
|
|
896
|
-
|
|
897
943
|
}
|
|
898
944
|
|
|
899
945
|
.option-info .k-radio:checked+.k-radio-label:before,
|
|
@@ -965,9 +1011,7 @@ label.labelCollapsibleMenu {
|
|
|
965
1011
|
background: var(--colorDark40, #343434);
|
|
966
1012
|
}
|
|
967
1013
|
|
|
968
|
-
|
|
969
1014
|
/*Checkbox*/
|
|
970
|
-
|
|
971
1015
|
/*Default*/
|
|
972
1016
|
.k-checkbox:checked+.k-checkbox-label:before,
|
|
973
1017
|
.k-checkbox:indeterminate+.k-checkbox-label:before,
|
|
@@ -1064,7 +1108,21 @@ label.labelCollapsibleMenu {
|
|
|
1064
1108
|
|
|
1065
1109
|
/* Button dynamic image*/
|
|
1066
1110
|
.dynamic-image-container .btn {
|
|
1067
|
-
background: var(--colorDefault40);
|
|
1111
|
+
background: var(--colorDefault40, #442b69);
|
|
1112
|
+
}
|
|
1113
|
+
|
|
1114
|
+
.dynamic-image-container {
|
|
1115
|
+
border-style: dashed;
|
|
1116
|
+
border: 1px dashed var(--colorDefault40, #442b69);
|
|
1117
|
+
border-radius: var(--borderRadiusSmallest, 5px);
|
|
1118
|
+
padding: 20px;
|
|
1119
|
+
width: 100%;
|
|
1120
|
+
height: 100%;
|
|
1121
|
+
display: flex;
|
|
1122
|
+
flex-direction: column;
|
|
1123
|
+
justify-content: center;
|
|
1124
|
+
flex-wrap: wrap;
|
|
1125
|
+
text-align: center;
|
|
1068
1126
|
}
|
|
1069
1127
|
|
|
1070
1128
|
.dynamic-image-container .btn:focus,
|
|
@@ -1077,7 +1135,6 @@ label.labelCollapsibleMenu {
|
|
|
1077
1135
|
}
|
|
1078
1136
|
|
|
1079
1137
|
/*Buttons Multiselect*/
|
|
1080
|
-
|
|
1081
1138
|
.k-multiselect .k-button {
|
|
1082
1139
|
border: unset;
|
|
1083
1140
|
}
|
|
@@ -1193,7 +1250,6 @@ label.labelCollapsibleMenu {
|
|
|
1193
1250
|
}
|
|
1194
1251
|
|
|
1195
1252
|
/*Agendador*/
|
|
1196
|
-
|
|
1197
1253
|
.k-scheduler .k-today.k-state-selected,
|
|
1198
1254
|
.k-scheduler-navigation .k-nav-prev .k-link,
|
|
1199
1255
|
.k-scheduler .k-state-selected>.k-link,
|
|
@@ -1315,7 +1371,6 @@ cron-scheduler .k-link:link,
|
|
|
1315
1371
|
}
|
|
1316
1372
|
|
|
1317
1373
|
/* Button edit form*/
|
|
1318
|
-
|
|
1319
1374
|
.k-edit-form-container .k-edit-buttons .k-scheduler-canceltimezone,
|
|
1320
1375
|
.k-edit-form-container .k-edit-buttons .k-scheduler-cancel,
|
|
1321
1376
|
.k-button.k-danger,
|
|
@@ -1383,7 +1438,6 @@ span.k-datetimepicker .k-select+.k-select {
|
|
|
1383
1438
|
}
|
|
1384
1439
|
|
|
1385
1440
|
/*Widget*/
|
|
1386
|
-
|
|
1387
1441
|
.k-window .k-window-titlebar.k-header,
|
|
1388
1442
|
.k-edit-form-container .k-edit-buttons {
|
|
1389
1443
|
background: var(--textColorDefault40, #fffef9);
|
|
@@ -1453,11 +1507,65 @@ span.k-datetimepicker .k-select+.k-select {
|
|
|
1453
1507
|
}
|
|
1454
1508
|
|
|
1455
1509
|
/*Modais*/
|
|
1510
|
+
.modal-title {
|
|
1511
|
+
margin: 0;
|
|
1512
|
+
line-height: 1.42857143;
|
|
1513
|
+
text-align: center;
|
|
1514
|
+
color: var(--textColor40, #434343);
|
|
1515
|
+
font-weight: 700;
|
|
1516
|
+
}
|
|
1517
|
+
|
|
1518
|
+
.modal-content {
|
|
1519
|
+
border-radius: 20px;
|
|
1520
|
+
background: var(--backgroundColor10, #fffef9);
|
|
1521
|
+
}
|
|
1522
|
+
|
|
1523
|
+
.modal-body {
|
|
1524
|
+
position: relative;
|
|
1525
|
+
padding: 15px;
|
|
1526
|
+
text-align: center;
|
|
1527
|
+
color: var(--textColor40, #434343);
|
|
1528
|
+
}
|
|
1456
1529
|
|
|
1457
1530
|
.cronapp-icon.cronapp-error {
|
|
1458
1531
|
color: var(--colorDanger40, #e34646);
|
|
1459
1532
|
}
|
|
1460
1533
|
|
|
1534
|
+
.k-dialog-buttongroup .k-button {
|
|
1535
|
+
background: var(--colorDanger40, #e34646);
|
|
1536
|
+
color: var(--textColorDanger40, #fffef9);
|
|
1537
|
+
}
|
|
1538
|
+
|
|
1539
|
+
.k-dialog-buttongroup .k-button:hover,
|
|
1540
|
+
.k-dialog-buttongroup .k-button:focus {
|
|
1541
|
+
background: var(--colorDanger50, #d43131);
|
|
1542
|
+
color: var(--textColorDanger50, #fffef9);
|
|
1543
|
+
box-shadow: unset;
|
|
1544
|
+
}
|
|
1545
|
+
|
|
1546
|
+
.k-dialog-buttongroup .k-button:active {
|
|
1547
|
+
background: var(--colorDanger70, #7c2626);
|
|
1548
|
+
}
|
|
1549
|
+
|
|
1550
|
+
#modalTemplateCancel.btn.btn-secondary:active {
|
|
1551
|
+
background: var(--colorDefault70, #25183a);
|
|
1552
|
+
border: unset;
|
|
1553
|
+
}
|
|
1554
|
+
|
|
1555
|
+
.modal-footer .btn+.btn {
|
|
1556
|
+
margin-bottom: 0;
|
|
1557
|
+
margin-left: 5px;
|
|
1558
|
+
background: var(--colorDanger40, #e34646);
|
|
1559
|
+
}
|
|
1560
|
+
|
|
1561
|
+
.modal-footer .btn+.btn:hover {
|
|
1562
|
+
background: var(--colorDanger50, #d43131);
|
|
1563
|
+
}
|
|
1564
|
+
|
|
1565
|
+
.modal-footer .btn+.btn:active {
|
|
1566
|
+
background: var(--colorDanger70, #7c2626);
|
|
1567
|
+
}
|
|
1568
|
+
|
|
1461
1569
|
#modalBodyConfirmDialog .title {
|
|
1462
1570
|
font-size: var(--textMediumSize, 18px);
|
|
1463
1571
|
font-weight: 700;
|
|
@@ -1465,6 +1573,12 @@ span.k-datetimepicker .k-select+.k-select {
|
|
|
1465
1573
|
color: var(--textColor40, #434343);
|
|
1466
1574
|
}
|
|
1467
1575
|
|
|
1576
|
+
.modal .modal-content .list-group-item {
|
|
1577
|
+
border: 0;
|
|
1578
|
+
padding: 10px 0;
|
|
1579
|
+
text-align: justify;
|
|
1580
|
+
}
|
|
1581
|
+
|
|
1468
1582
|
.k-dialog.k-dialog-titleless .k-content {
|
|
1469
1583
|
box-sizing: content-box;
|
|
1470
1584
|
background: var(--textColorDefault40, #fffef9);
|
|
@@ -1475,7 +1589,6 @@ span.k-datetimepicker .k-select+.k-select {
|
|
|
1475
1589
|
color: var(--colorDefault40, #442b69);
|
|
1476
1590
|
}
|
|
1477
1591
|
|
|
1478
|
-
.k-scheduler-edit-form .k-edit-field .k-button:active,
|
|
1479
1592
|
.k-edit-form-container .k-edit-buttons .k-primary:active,
|
|
1480
1593
|
.k-scheduler-edit-form .k-edit-field .k-button.active,
|
|
1481
1594
|
.k-edit-form-container .k-edit-buttons .k-primary.active,
|
|
@@ -1508,4 +1621,43 @@ button.btn.k-button.btn-block.btn-danger.btn-fab {
|
|
|
1508
1621
|
border-color: transparent;
|
|
1509
1622
|
color: var(--textColorDanger40, #fffef9);
|
|
1510
1623
|
border-radius: 20px;
|
|
1624
|
+
}
|
|
1625
|
+
|
|
1626
|
+
/*Fonts*/
|
|
1627
|
+
.h5 {
|
|
1628
|
+
font-size: var(--textNormalSize, 12px);
|
|
1629
|
+
color: var(--textColor40, #434343);
|
|
1630
|
+
}
|
|
1631
|
+
|
|
1632
|
+
p {
|
|
1633
|
+
font-size: var(--textNormalSize, 12px);
|
|
1634
|
+
color: var(--textColor40, #434343);
|
|
1635
|
+
}
|
|
1636
|
+
|
|
1637
|
+
/*Modal cookies*/
|
|
1638
|
+
.privacy-view .modal-cookies .form-group {
|
|
1639
|
+
margin-bottom: 0;
|
|
1640
|
+
margin-top: 20px;
|
|
1641
|
+
text-align: justify;
|
|
1642
|
+
}
|
|
1643
|
+
|
|
1644
|
+
#modalCookies .list-group p {
|
|
1645
|
+
margin-top: 5px;
|
|
1646
|
+
text-align: justify;
|
|
1647
|
+
}
|
|
1648
|
+
|
|
1649
|
+
.privacy-view .modal-cookies .modal-header .close span {
|
|
1650
|
+
font-size: var(--textMediumSize, 16px);
|
|
1651
|
+
color: var(--textColor40, #434343);
|
|
1652
|
+
padding: 0 10px;
|
|
1653
|
+
}
|
|
1654
|
+
|
|
1655
|
+
#modalCookies p {
|
|
1656
|
+
text-align: justify;
|
|
1657
|
+
color: var(--textColor40, #434343);
|
|
1658
|
+
}
|
|
1659
|
+
|
|
1660
|
+
span.k-widget.k-dropdown.cronDynamicSelect,
|
|
1661
|
+
span.k-widget.k-combobox.cronSelect.k-combobox-clearable {
|
|
1662
|
+
border-radius: 20px;
|
|
1511
1663
|
}
|