cronapp-framework-js 2.9.3 → 2.9.4
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-datepicker.components.json +5 -0
- package/components/crn-datetimepicker.components.json +5 -0
- package/components/crn-enterprise-combobox.components.json +19 -2
- package/components/crn-infinite-scroll.components.json +29 -0
- package/components/crn-navbar.components.json +33 -1
- package/components/crn-textinputicon.components.json +0 -26
- package/components/templates/date.template.html +2 -2
- package/components/templates/textinputicon.template.html +1 -1
- package/components/upload/upload.html +1 -1
- package/css/app.css +4 -0
- package/css/themes/custom/aquamarine/custom-aquamarine.css +2 -20
- package/css/themes/custom/cerulean/custom-cerulean.css +1 -28
- package/css/themes/custom/cosmo/custom-cosmo.css +0 -27
- package/css/themes/custom/cyborg/custom-cyborg.css +0 -27
- package/css/themes/custom/cyborg/navbar-cyborg.css +6 -0
- package/css/themes/custom/darkly/custom-darkly.css +0 -25
- package/css/themes/custom/dsgov/form-dsgov.css +0 -19
- package/css/themes/custom/flatly/custom-flatly.css +2 -22
- package/css/themes/custom/fuse/custom-fuse.css +6 -33
- package/css/themes/custom/journal/custom-journal.css +2 -28
- package/css/themes/custom/lumen/custom-lumen.css +0 -43
- package/css/themes/custom/lumen/navbar-lumen.css +9 -0
- package/css/themes/custom/paper/custom-paper.css +0 -30
- package/css/themes/custom/paper/navbar-paper.css +11 -0
- package/css/themes/custom/readable/custom-readable.css +0 -27
- package/css/themes/custom/sandstone/custom-sandstone.css +0 -26
- package/css/themes/custom/simplex/custom-simplex.css +0 -27
- package/css/themes/custom/slate/custom-slate.css +33 -33
- package/css/themes/custom/spacelab/custom-spacelab.css +0 -27
- package/css/themes/custom/superhero/custom-superhero.css +0 -27
- package/css/themes/custom/theme-general/forms.css +7 -42
- package/css/themes/custom/theme-general/menu-vertical-retratil.css +130 -0
- package/css/themes/custom/theme-general/theme-general.css +1 -0
- package/css/themes/custom/united/custom-united.css +0 -22
- package/css/themes/custom/united/navbar-united.css +9 -0
- package/css/themes/custom/yeti/custom-yeti.css +0 -28
- package/css/themes/custom/yeti/navbar-yeti.css +9 -0
- package/dist/components/templates/date.template.html +1 -1
- package/dist/components/templates/textinputicon.template.html +1 -1
- package/dist/css/app.css +1 -1
- package/dist/css/themes/custom/aquamarine/custom-aquamarine.css +1 -1
- package/dist/css/themes/custom/cerulean/custom-cerulean.css +1 -1
- package/dist/css/themes/custom/cosmo/custom-cosmo.css +1 -1
- package/dist/css/themes/custom/cyborg/custom-cyborg.css +1 -1
- package/dist/css/themes/custom/cyborg/navbar-cyborg.css +1 -1
- package/dist/css/themes/custom/darkly/custom-darkly.css +1 -1
- package/dist/css/themes/custom/dsgov/form-dsgov.css +1 -1
- package/dist/css/themes/custom/flatly/custom-flatly.css +1 -1
- package/dist/css/themes/custom/fuse/custom-fuse.css +1 -1
- package/dist/css/themes/custom/journal/custom-journal.css +1 -1
- package/dist/css/themes/custom/lumen/custom-lumen.css +1 -1
- package/dist/css/themes/custom/lumen/navbar-lumen.css +1 -1
- package/dist/css/themes/custom/paper/custom-paper.css +1 -1
- package/dist/css/themes/custom/paper/navbar-paper.css +1 -1
- package/dist/css/themes/custom/readable/custom-readable.css +1 -1
- package/dist/css/themes/custom/sandstone/custom-sandstone.css +1 -1
- package/dist/css/themes/custom/simplex/custom-simplex.css +1 -1
- package/dist/css/themes/custom/slate/custom-slate.css +1 -1
- package/dist/css/themes/custom/spacelab/custom-spacelab.css +1 -1
- package/dist/css/themes/custom/superhero/custom-superhero.css +1 -1
- package/dist/css/themes/custom/theme-general/forms.css +1 -1
- package/dist/css/themes/custom/theme-general/menu-vertical-retratil.css +1 -0
- package/dist/css/themes/custom/theme-general/theme-general.css +1 -1
- package/dist/css/themes/custom/united/custom-united.css +1 -1
- package/dist/css/themes/custom/united/navbar-united.css +1 -1
- package/dist/css/themes/custom/yeti/custom-yeti.css +1 -1
- package/dist/css/themes/custom/yeti/navbar-yeti.css +1 -1
- package/dist/img/cron-icon/crn-infinite-scroll.svg +1 -0
- package/dist/js/app.js +1 -1
- package/dist/js/controllers.js +1 -1
- package/dist/js/directives.js +18 -2
- package/img/cron-icon/crn-infinite-scroll.svg +1 -0
- package/js/app.js +2 -1
- package/js/controllers.js +2 -2
- package/js/directives.js +184 -19
- package/package.json +1 -1
|
@@ -25,12 +25,24 @@
|
|
|
25
25
|
}
|
|
26
26
|
},
|
|
27
27
|
"childrenProperties": [
|
|
28
|
+
{
|
|
29
|
+
"name": "no-results-message",
|
|
30
|
+
"selector": "cron-select",
|
|
31
|
+
"displayName_pt_BR": "Texto quando não tem resultados",
|
|
32
|
+
"displayName_en_US": "Text when there are no results",
|
|
33
|
+
"type": "text"
|
|
34
|
+
},
|
|
28
35
|
{
|
|
29
36
|
"name": "ng-change",
|
|
30
37
|
"selector": "cron-select",
|
|
31
38
|
"displayName_pt_BR": "Ao Alterar",
|
|
32
39
|
"displayName_en_US": "On Change",
|
|
33
|
-
"type": "event"
|
|
40
|
+
"type": "event",
|
|
41
|
+
"eventFields" : [
|
|
42
|
+
"selected" ,
|
|
43
|
+
"selectedKey",
|
|
44
|
+
"selectedValue"
|
|
45
|
+
]
|
|
34
46
|
},
|
|
35
47
|
{
|
|
36
48
|
"name": "cron-disabled",
|
|
@@ -44,7 +56,12 @@
|
|
|
44
56
|
"selector": "cron-select",
|
|
45
57
|
"displayName_pt_BR": "Ao Selecionar",
|
|
46
58
|
"displayName_en_US": "On Select",
|
|
47
|
-
"type": "event"
|
|
59
|
+
"type": "event",
|
|
60
|
+
"eventFields" : [
|
|
61
|
+
"selected" ,
|
|
62
|
+
"selectedKey",
|
|
63
|
+
"selectedValue"
|
|
64
|
+
]
|
|
48
65
|
},
|
|
49
66
|
{
|
|
50
67
|
"name": "ng-close",
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "crn-infinite-scroll",
|
|
3
|
+
"text_pt_BR": "Scroll infinito",
|
|
4
|
+
"text_en_US": "Infinite Scroll",
|
|
5
|
+
"image": "/node_modules/cronapp-framework-js/img/cron-icon/crn-infinite-scroll.svg",
|
|
6
|
+
"description": "Estrutura de paginação invisível",
|
|
7
|
+
"description_en_US": "Invisible paging structure",
|
|
8
|
+
"category": [
|
|
9
|
+
"LAYOUTS", "LISTS"
|
|
10
|
+
],
|
|
11
|
+
"template": "<crn-infinite-scroll crn-datasource=\"\"></crn-infinite-scroll>",
|
|
12
|
+
"designTimeHTML": "<img alt=\"chart\" style=\"height: 20px;\" src=\"node_modules/cronapp-framework-js/img/cron-icon/crn-infinite-scroll.svg\"/>",
|
|
13
|
+
"designTimeSelector": "crn-infinite-scroll",
|
|
14
|
+
"properties": {
|
|
15
|
+
"id": {
|
|
16
|
+
"order": 1
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"childrenProperties": [
|
|
20
|
+
{
|
|
21
|
+
"name": "crn-datasource",
|
|
22
|
+
"selector": "crn-infinite-scroll",
|
|
23
|
+
"displayName_pt_BR": "Fonte de dados",
|
|
24
|
+
"displayName_en_US": "Datasource",
|
|
25
|
+
"type": "pageDatasource",
|
|
26
|
+
"onDisplay": "javascript:function() { return arguments[0].replace('vars.',''); }"
|
|
27
|
+
}
|
|
28
|
+
]
|
|
29
|
+
}
|
|
@@ -18,11 +18,19 @@
|
|
|
18
18
|
"xattr-class": {
|
|
19
19
|
"order": 998,
|
|
20
20
|
"fixed": true,
|
|
21
|
-
"onSave": "javascript:function(){
|
|
21
|
+
"onSave": "javascript:function(){ let parent=this.currentObject.parent(),menuVertical=parent.find(\"#main-nav-bar\"),uiView=parent.find(\"[ui-view]\");arguments[0].indexOf(\"horizontal\")>-1?(uiView.removeClass(\"main-view-vertical\").removeClass(\"main-view-retratil\").addClass(\"main-view-horizontal\"),menuVertical.removeClass(\"crn-navigator-retratil\").removeClass(\"collapsible-menu-hide\"),parent.find(\".main-title\").removeClass(\"hide\"),parent.find(\"#checkCollapsibleMenu\").remove(),parent.find(\".labelCollapsibleMenu\").remove()):arguments[0].indexOf(\"retratil\")>-1?(uiView.removeClass(\"main-view-horizontal\").removeClass(\"main-view-vertical\").addClass(\"main-view-vertical\").addClass(\"main-view-retratil\"),parent.find(\".main-title\").addClass(\"hide\"),menuVertical.addClass(\"collapsible-menu-hide\"),menuVertical[0].insertAdjacentHTML(\"beforebegin\",'<input type=\"checkbox\" id=\"checkCollapsibleMenu\"><label for=\"checkCollapsibleMenu\" class=\"labelCollapsibleMenu\"><i class=\"glyphicon glyphicon-menu-right\" id=\"iconCollapsibleMenu\"></i></label>')):arguments[0].indexOf(\"vertical\")>-1&&(uiView.removeClass(\"main-view-horizontal\").removeClass(\"main-view-retratil\").addClass(\"main-view-vertical\"),menuVertical.removeClass(\"crn-navigator-retratil\").removeClass(\"collapsible-menu-hide\"),parent.find(\".main-title\").removeClass(\"hide\"),parent.find(\"#checkCollapsibleMenu\").remove(),parent.find(\".labelCollapsibleMenu\").remove()); return arguments[0]; }",
|
|
22
22
|
"displayName_pt_BR": "Posição",
|
|
23
23
|
"displayName_en_US": "Position",
|
|
24
24
|
"selector": "div"
|
|
25
25
|
},
|
|
26
|
+
"menu-type": {
|
|
27
|
+
"order": 999,
|
|
28
|
+
"fixed": true,
|
|
29
|
+
"onSave": "javascript:function(){ let icon=this.currentObject.parent().find(\"#iconCollapsibleMenu\"); arguments[0].indexOf(\"hamburguer\")>-1?icon.removeClass(\"glyphicon-menu-right\").addClass(\"glyphicon-menu-hamburger\"):arguments[0].indexOf(\"arrow\")>-1&&icon.removeClass(\"glyphicon-menu-hamburger\").addClass(\"glyphicon-menu-right\"); return arguments[0]; }",
|
|
30
|
+
"displayName_pt_BR": "Tipo de menu retrátil",
|
|
31
|
+
"displayName_en_US": "Collapsible menu type",
|
|
32
|
+
"selector": "div"
|
|
33
|
+
},
|
|
26
34
|
"id": {
|
|
27
35
|
"order": 2
|
|
28
36
|
}
|
|
@@ -40,6 +48,30 @@
|
|
|
40
48
|
{
|
|
41
49
|
"key": "crn-navigator-vertical",
|
|
42
50
|
"value": "Vertical"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"key": "crn-navigator-retratil crn-navigator-vertical",
|
|
54
|
+
"value_pt_BR": "Vertical Retrátil",
|
|
55
|
+
"value_en_US": "Collapsible menu"
|
|
56
|
+
}
|
|
57
|
+
]
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"name": "menu-type",
|
|
61
|
+
"type": "options",
|
|
62
|
+
"target": "class",
|
|
63
|
+
"values": [
|
|
64
|
+
{
|
|
65
|
+
"key": "menu-type-hamburguer",
|
|
66
|
+
"value_pt_BR": "Hambúrguer",
|
|
67
|
+
"value_en_US": "Hamburger",
|
|
68
|
+
"icon": "mdi mdi-menu"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"key": "menu-type-arrow",
|
|
72
|
+
"value_pt_BR": "Seta",
|
|
73
|
+
"value_en_US": "Arrow",
|
|
74
|
+
"icon": "mdi mdi-chevron-right"
|
|
43
75
|
}
|
|
44
76
|
]
|
|
45
77
|
}
|
|
@@ -40,33 +40,7 @@
|
|
|
40
40
|
"text_en_US": "Icon"
|
|
41
41
|
}
|
|
42
42
|
],
|
|
43
|
-
"attributesForPreview": [
|
|
44
|
-
{
|
|
45
|
-
"name": "layout-template",
|
|
46
|
-
"type": "btngroup",
|
|
47
|
-
"target": "class",
|
|
48
|
-
"values": [
|
|
49
|
-
{
|
|
50
|
-
"key": "layout-template-classic",
|
|
51
|
-
"value_pt_BR": "Clássico",
|
|
52
|
-
"value_en_US": "Classic"
|
|
53
|
-
},
|
|
54
|
-
{
|
|
55
|
-
"key": "layout-template-modern",
|
|
56
|
-
"value_pt_BR": "Moderno",
|
|
57
|
-
"value_en_US": "Modern"
|
|
58
|
-
}
|
|
59
|
-
]
|
|
60
|
-
}
|
|
61
|
-
],
|
|
62
43
|
"childrenProperties": [
|
|
63
|
-
{
|
|
64
|
-
"name": "layout-template",
|
|
65
|
-
"displayName_pt_BR": "Modelo de layout",
|
|
66
|
-
"displayName_en_US": "Layout template",
|
|
67
|
-
"order": 1,
|
|
68
|
-
"selector": "div.input-group"
|
|
69
|
-
},
|
|
70
44
|
{
|
|
71
45
|
"name": "class",
|
|
72
46
|
"selector": "i",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
<div class="form-group">
|
|
2
|
-
<label for="
|
|
3
|
-
<input type="date" mask="" mask-placeholder="" ng-required="false" ng-model="vars.date${
|
|
2
|
+
<label for="date-${COMPONENTID}">Label</label>
|
|
3
|
+
<input type="date" mask="" mask-placeholder="" ng-required="false" ng-model="vars.date${RANDOM}" class="form-control k-textbox" id="date-${COMPONENTID}">
|
|
4
4
|
</div>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<div>
|
|
2
2
|
<label class="form-group" for="inputButton-${RANDOM}">Label</label>
|
|
3
|
-
<div class="input-group
|
|
3
|
+
<div class="input-group">
|
|
4
4
|
<span class="k-button">
|
|
5
5
|
<i class="glyphicon glyphicon-search" aria-hidden="true"></i>
|
|
6
6
|
</span>
|
package/css/app.css
CHANGED
|
@@ -1264,7 +1264,7 @@ thead.k-grid-header th.k-header:last-child {
|
|
|
1264
1264
|
.k-scheduler-navigation .k-nav-prev .k-link:hover,
|
|
1265
1265
|
.k-scheduler div.k-scheduler-footer .k-link:hover,
|
|
1266
1266
|
.k-scheduler div.k-scheduler-footer ul li:hover,
|
|
1267
|
-
.k-scheduler-edit-form .k-edit-field .k-button:hover
|
|
1267
|
+
.k-scheduler-edit-form .k-edit-field .k-button:hover{
|
|
1268
1268
|
color: var(--colorDefault40, #2ca4a8);
|
|
1269
1269
|
box-shadow: none;
|
|
1270
1270
|
background: var(--colorDefault20, #b1d3d5);
|
|
@@ -1491,24 +1491,6 @@ div[data-component^='crn-slider'] .form-control {
|
|
|
1491
1491
|
border-color: var(--textColorLight40, #444444);
|
|
1492
1492
|
}
|
|
1493
1493
|
|
|
1494
|
-
#cron-breadcrumbs
|
|
1494
|
+
#cron-breadcrumbs{
|
|
1495
1495
|
background: transparent;
|
|
1496
|
-
}
|
|
1497
|
-
|
|
1498
|
-
/* Input with icon */
|
|
1499
|
-
.layout-template-modern {
|
|
1500
|
-
background: var(--textColorDefault40, #ffffff);
|
|
1501
|
-
border-radius: var(--borderRadiusSmall, 15px);
|
|
1502
|
-
border: 1px solid var(--colorLight50, #c2c2c2);
|
|
1503
|
-
padding: 0;
|
|
1504
|
-
}
|
|
1505
|
-
|
|
1506
|
-
.layout-template-modern:focus-within {
|
|
1507
|
-
border: 1px solid var(--colorLight50, #c2c2c2);
|
|
1508
|
-
background: var(--textColorDefault40, #ffffff);
|
|
1509
|
-
}
|
|
1510
|
-
|
|
1511
|
-
.layout-template-modern input.k-textbox:hover,
|
|
1512
|
-
.layout-template-modern input.k-textbox {
|
|
1513
|
-
padding-left: 0;
|
|
1514
1496
|
}
|
|
@@ -886,7 +886,7 @@ td.k-state-focused.k-state-selected {
|
|
|
886
886
|
}
|
|
887
887
|
|
|
888
888
|
.cardinput,
|
|
889
|
-
.form-control
|
|
889
|
+
.form-control{
|
|
890
890
|
border-color: var(--textColor20, #b8b8b8);
|
|
891
891
|
}
|
|
892
892
|
|
|
@@ -966,31 +966,4 @@ td.k-state-focused.k-state-selected {
|
|
|
966
966
|
|
|
967
967
|
.k-window-titlebar {
|
|
968
968
|
background: transparent;
|
|
969
|
-
}
|
|
970
|
-
|
|
971
|
-
/* Input with icon */
|
|
972
|
-
.layout-template-modern {
|
|
973
|
-
background: transparent;
|
|
974
|
-
border-radius: var(--borderRadiusSmallest, 4px);
|
|
975
|
-
border: 1px solid var(--textColor20, #b8b8b8);
|
|
976
|
-
padding: 0;
|
|
977
|
-
}
|
|
978
|
-
|
|
979
|
-
.layout-template-modern:focus-within {
|
|
980
|
-
border: 1px solid var(--colorPrimary30, #82bded);
|
|
981
|
-
background: transparent;
|
|
982
|
-
outline: 0;
|
|
983
|
-
box-shadow: inset 0 1px 1px transparent, 0 0 8px var(--colorPrimary30, #82bded);
|
|
984
|
-
}
|
|
985
|
-
|
|
986
|
-
.layout-template-modern input.k-textbox:hover,
|
|
987
|
-
.layout-template-modern input.k-textbox {
|
|
988
|
-
padding-left: 0;
|
|
989
|
-
box-shadow: none;
|
|
990
|
-
}
|
|
991
|
-
|
|
992
|
-
.layout-template-modern .k-button:hover,
|
|
993
|
-
.layout-template-modern .k-button {
|
|
994
|
-
color: var(--colorPrimary40, #3b448e);
|
|
995
|
-
border: 0;
|
|
996
969
|
}
|
|
@@ -1161,31 +1161,4 @@ td.k-state-focused.k-state-selected {
|
|
|
1161
1161
|
|
|
1162
1162
|
.cardinput {
|
|
1163
1163
|
padding: 0;
|
|
1164
|
-
}
|
|
1165
|
-
|
|
1166
|
-
/* Input with icon */
|
|
1167
|
-
.layout-template-modern {
|
|
1168
|
-
background: transparent;
|
|
1169
|
-
border-radius: var(--borderRadiusNone, 0);
|
|
1170
|
-
border: 1px solid var(--textColor10, #d7d7d7);
|
|
1171
|
-
padding: 0;
|
|
1172
|
-
}
|
|
1173
|
-
|
|
1174
|
-
.layout-template-modern:focus-within {
|
|
1175
|
-
background: transparent;
|
|
1176
|
-
border-color: var(--colorPrimary30, #82bded);
|
|
1177
|
-
outline: 0;
|
|
1178
|
-
box-shadow: inset 0 1px 1px transparent, 0 0 8px var(--colorPrimary30, #82bded);
|
|
1179
|
-
}
|
|
1180
|
-
|
|
1181
|
-
.layout-template-modern input.k-textbox:hover,
|
|
1182
|
-
.layout-template-modern input.k-textbox {
|
|
1183
|
-
padding-left: 0;
|
|
1184
|
-
box-shadow: none;
|
|
1185
|
-
}
|
|
1186
|
-
|
|
1187
|
-
.layout-template-modern .k-button:hover,
|
|
1188
|
-
.layout-template-modern .k-button {
|
|
1189
|
-
color: var(--colorDefault40, #3b448e);
|
|
1190
|
-
padding: 6px 10px;
|
|
1191
1164
|
}
|
|
@@ -1318,31 +1318,4 @@ td.k-state-focused.k-state-selected {
|
|
|
1318
1318
|
|
|
1319
1319
|
.k-scheduler .k-scheduler-toolbar ul .k-nav-current.k-state-hover a {
|
|
1320
1320
|
background: transparent;
|
|
1321
|
-
}
|
|
1322
|
-
|
|
1323
|
-
/* Input with icon */
|
|
1324
|
-
.layout-template-modern {
|
|
1325
|
-
background: var(--colorNeutral00, #ffffff);
|
|
1326
|
-
border-radius: var(--borderRadiusSmallest, 4px);
|
|
1327
|
-
border: 1px solid var(--textColor10, #d7d7d7);
|
|
1328
|
-
padding: 0;
|
|
1329
|
-
}
|
|
1330
|
-
|
|
1331
|
-
.layout-template-modern:focus-within {
|
|
1332
|
-
background: var(--colorNeutral00, #ffffff);
|
|
1333
|
-
border-color: var(--colorPrimary30, #82bded);
|
|
1334
|
-
outline: 0;
|
|
1335
|
-
box-shadow: inset 0 1px 1px transparent, 0 0 8px var(--colorPrimary30, #82bded);
|
|
1336
|
-
}
|
|
1337
|
-
|
|
1338
|
-
.layout-template-modern input.k-textbox:hover,
|
|
1339
|
-
.layout-template-modern input.k-textbox {
|
|
1340
|
-
padding-left: 0;
|
|
1341
|
-
box-shadow: none;
|
|
1342
|
-
}
|
|
1343
|
-
|
|
1344
|
-
.layout-template-modern .k-button:hover,
|
|
1345
|
-
.layout-template-modern .k-button {
|
|
1346
|
-
color: var(--colorDefault40, #3b448e);
|
|
1347
|
-
padding: 6px 10px;
|
|
1348
1321
|
}
|
|
@@ -107,4 +107,10 @@ img.user-avatar[src="node_modules/cronapp-framework-js/dist/img/img-user.svg"] {
|
|
|
107
107
|
box-shadow: none;
|
|
108
108
|
border: 0;
|
|
109
109
|
}
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
/* Collapsible menu */
|
|
113
|
+
label.labelCollapsibleMenu {
|
|
114
|
+
height: var(--textBigSize, 34px);
|
|
115
|
+
width: var(--textBigSize, 34px);
|
|
110
116
|
}
|
|
@@ -1229,29 +1229,4 @@ td.k-state-focused.k-state-selected,
|
|
|
1229
1229
|
|
|
1230
1230
|
.bootstrap-datetimepicker-widget.dropdown-menu.top:after {
|
|
1231
1231
|
border-top-color: var(--colorNeutral00, #ffffff)
|
|
1232
|
-
}
|
|
1233
|
-
|
|
1234
|
-
/* Input with icon */
|
|
1235
|
-
.layout-template-modern {
|
|
1236
|
-
background: var(--colorNeutral00, #ffffff);
|
|
1237
|
-
border-radius: var(--borderRadiusSmallest, 4px);
|
|
1238
|
-
border: 1px solid var(--textColor30, #858585);
|
|
1239
|
-
padding: 0;
|
|
1240
|
-
}
|
|
1241
|
-
|
|
1242
|
-
.layout-template-modern:focus-within {
|
|
1243
|
-
background: var(--colorNeutral00, #ffffff);
|
|
1244
|
-
border-color: var(--textColor30, #858585);
|
|
1245
|
-
outline: 0;
|
|
1246
|
-
}
|
|
1247
|
-
|
|
1248
|
-
.layout-template-modern input.k-textbox:hover,
|
|
1249
|
-
.layout-template-modern input.k-textbox {
|
|
1250
|
-
padding-left: 0;
|
|
1251
|
-
box-shadow: none;
|
|
1252
|
-
}
|
|
1253
|
-
|
|
1254
|
-
div[data-component^='crn-textinputicon'] .layout-template-modern .k-button,
|
|
1255
|
-
div[data-component^='crn-textinputicon'] .layout-template-modern .k-button:hover {
|
|
1256
|
-
color: var(--colorDefault40, #3b448e);
|
|
1257
1232
|
}
|
|
@@ -361,23 +361,4 @@ div[id^="crn-textinputicon"] .input-group .k-button {
|
|
|
361
361
|
|
|
362
362
|
#starter div[id^="crn-form"] input {
|
|
363
363
|
margin-bottom: 4px;
|
|
364
|
-
}
|
|
365
|
-
|
|
366
|
-
/* Input with icon */
|
|
367
|
-
.layout-template-modern:focus-within {
|
|
368
|
-
border: 1px solid var(--colorNeutral90, #828282);
|
|
369
|
-
background: var(--backgroundColor40, #ffffff);
|
|
370
|
-
}
|
|
371
|
-
|
|
372
|
-
.layout-template-modern input.k-textbox {
|
|
373
|
-
padding-left: 5px;
|
|
374
|
-
}
|
|
375
|
-
|
|
376
|
-
.layout-template-modern.input-group .k-button {
|
|
377
|
-
padding: 0px 14px;
|
|
378
|
-
}
|
|
379
|
-
|
|
380
|
-
div[id^="crn-textinputicon"] .input-group.layout-template-modern .k-button:hover,
|
|
381
|
-
div[id^="crn-textinputicon"] .input-group.layout-template-modern .k-button {
|
|
382
|
-
color: var(--colorDefault40, #3b448e);
|
|
383
364
|
}
|
|
@@ -302,7 +302,7 @@
|
|
|
302
302
|
--borderBtnStable: transparent;
|
|
303
303
|
--borderBtnRoyal: transparent;
|
|
304
304
|
--borderBtnDark: transparent;
|
|
305
|
-
|
|
305
|
+
|
|
306
306
|
/* Components - Text color */
|
|
307
307
|
--colorDefault: var(--colorDefault40, #798d8f);
|
|
308
308
|
--colorPrimary: var(--colorPrimary40, #2c3e50);
|
|
@@ -1003,26 +1003,6 @@ textarea.k-textbox,
|
|
|
1003
1003
|
border-color: var(--textColor40, #393939);
|
|
1004
1004
|
}
|
|
1005
1005
|
|
|
1006
|
-
.cardinput
|
|
1007
|
-
padding: 0;
|
|
1008
|
-
}
|
|
1009
|
-
|
|
1010
|
-
/* Input with icon */
|
|
1011
|
-
.layout-template-modern {
|
|
1012
|
-
background: var(--colorNeutral00, #ffffff);
|
|
1013
|
-
border-radius: var(--borderRadiusSmallest, 4px);
|
|
1014
|
-
border: 2px solid var(--colorDefault10, #dfe3e3);
|
|
1006
|
+
.cardinput{
|
|
1015
1007
|
padding: 0;
|
|
1016
|
-
}
|
|
1017
|
-
|
|
1018
|
-
.layout-template-modern:focus-within {
|
|
1019
|
-
background: var(--colorNeutral00, #ffffff);
|
|
1020
|
-
border: 2px solid var(--textColor40, #393939);
|
|
1021
|
-
outline: 0;
|
|
1022
|
-
}
|
|
1023
|
-
|
|
1024
|
-
.layout-template-modern input.k-textbox:hover,
|
|
1025
|
-
.layout-template-modern input.k-textbox {
|
|
1026
|
-
padding-left: 0;
|
|
1027
|
-
box-shadow: none;
|
|
1028
1008
|
}
|
|
@@ -420,7 +420,7 @@
|
|
|
420
420
|
color: var(--textColor40, #383838);
|
|
421
421
|
}
|
|
422
422
|
|
|
423
|
-
.color-info:hover
|
|
423
|
+
.color-info:hover{
|
|
424
424
|
color: var(--textColor40, #383838);
|
|
425
425
|
}
|
|
426
426
|
|
|
@@ -543,8 +543,8 @@ div[data-component="crn-accordion"] .title {
|
|
|
543
543
|
.bg-login #container-second p {
|
|
544
544
|
color: var(--textColorDefault40, #ffffff);
|
|
545
545
|
}
|
|
546
|
-
|
|
547
|
-
|
|
546
|
+
#crn-botao-cadastre
|
|
547
|
+
.login-view .crn-button-signup-register,
|
|
548
548
|
.login-view .btn.btn-default {
|
|
549
549
|
background: var(--colorPrimary40, #4f46e5);
|
|
550
550
|
border-color: transparent;
|
|
@@ -922,7 +922,7 @@ textarea.k-textbox {
|
|
|
922
922
|
margin-left: 0;
|
|
923
923
|
}
|
|
924
924
|
|
|
925
|
-
.cardinput input.k-textbox
|
|
925
|
+
.cardinput input.k-textbox{
|
|
926
926
|
height: auto;
|
|
927
927
|
}
|
|
928
928
|
|
|
@@ -1240,7 +1240,7 @@ div[data-component="crn-grid"] .k-grid-header th.k-header {
|
|
|
1240
1240
|
color: var(--textColor40, #383838);
|
|
1241
1241
|
}
|
|
1242
1242
|
|
|
1243
|
-
.panel-info .panel-heading h1
|
|
1243
|
+
.panel-info .panel-heading h1{
|
|
1244
1244
|
color: var(--textColor40, #383838);
|
|
1245
1245
|
}
|
|
1246
1246
|
|
|
@@ -1248,33 +1248,6 @@ div[data-component="crn-grid"] .k-grid-header th.k-header {
|
|
|
1248
1248
|
border-color: var(--textColor20, #b2b2b2);
|
|
1249
1249
|
}
|
|
1250
1250
|
|
|
1251
|
-
#cron-breadcrumbs
|
|
1251
|
+
#cron-breadcrumbs{
|
|
1252
1252
|
background: transparent;
|
|
1253
|
-
}
|
|
1254
|
-
|
|
1255
|
-
/* Input with icon */
|
|
1256
|
-
.layout-template-modern {
|
|
1257
|
-
background: var(--colorNeutral00, #ffffff);
|
|
1258
|
-
border-radius: 5px;
|
|
1259
|
-
border: 1px solid var(--colorLight60, #bbbbbb);
|
|
1260
|
-
padding: 0;
|
|
1261
|
-
min-height: 43px;
|
|
1262
|
-
}
|
|
1263
|
-
|
|
1264
|
-
.layout-template-modern:focus-within {
|
|
1265
|
-
border: 1px solid var(--colorLight60, #bbbbbb);
|
|
1266
|
-
background: var(--colorNeutral00, #ffffff);
|
|
1267
|
-
}
|
|
1268
|
-
|
|
1269
|
-
.layout-template-modern input.k-textbox {
|
|
1270
|
-
padding-left: 5px;
|
|
1271
|
-
}
|
|
1272
|
-
|
|
1273
|
-
.layout-template-modern .k-button:hover,
|
|
1274
|
-
.layout-template-modern .k-button {
|
|
1275
|
-
color: var(--colorDefault40, #3b448e);
|
|
1276
|
-
}
|
|
1277
|
-
|
|
1278
|
-
.layout-template-modern.input-group .k-button {
|
|
1279
|
-
padding: 0px 14px;
|
|
1280
1253
|
}
|
|
@@ -269,7 +269,7 @@
|
|
|
269
269
|
--colorNeutral210: #090909;
|
|
270
270
|
--colorNeutral220: #000000;
|
|
271
271
|
|
|
272
|
-
/* === Variables used exclusively in the color palette property === */
|
|
272
|
+
/* === Variables used exclusively in the color palette property === */
|
|
273
273
|
/* Components - Button */
|
|
274
274
|
--btnLink: var(--colorPrimary40, #eb6864);
|
|
275
275
|
--btnDefault: var(--colorDefault40, #2ca4a8);
|
|
@@ -477,7 +477,7 @@ a:hover {
|
|
|
477
477
|
border-width: 0;
|
|
478
478
|
}
|
|
479
479
|
|
|
480
|
-
.bg-login #container-first #crn-botao-signup:hover
|
|
480
|
+
.bg-login #container-first #crn-botao-signup:hover{
|
|
481
481
|
color: var(--colorDefault30, #8689af);
|
|
482
482
|
}
|
|
483
483
|
|
|
@@ -1060,30 +1060,4 @@ input::placeholder,
|
|
|
1060
1060
|
|
|
1061
1061
|
.cardinput {
|
|
1062
1062
|
padding: 0;
|
|
1063
|
-
}
|
|
1064
|
-
|
|
1065
|
-
/* Input with icon */
|
|
1066
|
-
.layout-template-modern {
|
|
1067
|
-
background: var(--colorNeutral00, #ffffff);
|
|
1068
|
-
border-radius: var(--borderRadiusSmallest, 4px);
|
|
1069
|
-
border: 1px solid #cccccc;
|
|
1070
|
-
padding: 0;
|
|
1071
|
-
}
|
|
1072
|
-
|
|
1073
|
-
.layout-template-modern:focus-within {
|
|
1074
|
-
background: var(--colorNeutral00, #ffffff);
|
|
1075
|
-
border-color: var(--colorCalm30, #82bded);
|
|
1076
|
-
outline: 0;
|
|
1077
|
-
box-shadow: inset 0 1px 1px transparent, 0 0 8px var(--colorCalm30, #82bded);
|
|
1078
|
-
}
|
|
1079
|
-
|
|
1080
|
-
.layout-template-modern input.k-textbox:hover,
|
|
1081
|
-
.layout-template-modern input.k-textbox {
|
|
1082
|
-
padding-left: 0;
|
|
1083
|
-
box-shadow: none;
|
|
1084
|
-
}
|
|
1085
|
-
|
|
1086
|
-
.layout-template-modern .k-button,
|
|
1087
|
-
.layout-template-modern .k-button:hover {
|
|
1088
|
-
border: 0;
|
|
1089
1063
|
}
|
|
@@ -710,7 +710,6 @@ h6,
|
|
|
710
710
|
#crn-botao-cadastre {
|
|
711
711
|
color: var(--colorDefault70, #838383);
|
|
712
712
|
}
|
|
713
|
-
|
|
714
713
|
.bg-login #container-first #crn-botao-signup:hover,
|
|
715
714
|
.bg-login #crn-botao-cadastre:focus,
|
|
716
715
|
.bg-login #crn-botao-cadastre:hover {
|
|
@@ -1147,46 +1146,4 @@ td.k-state-focused {
|
|
|
1147
1146
|
.k-popup .k-list .k-state-focused {
|
|
1148
1147
|
box-shadow: inset 0 0 2px 0 var(--colorPrimary30, #7daecc), inset 0 0 7px 0 var(--colorPrimary40, #158cba);
|
|
1149
1148
|
background: transparent;
|
|
1150
|
-
}
|
|
1151
|
-
|
|
1152
|
-
.cardinput {
|
|
1153
|
-
border-style: solid;
|
|
1154
|
-
border-width: 2px 1px 1px 1px;
|
|
1155
|
-
border-color: var(--backgroundColor50, #dfdfdf);
|
|
1156
|
-
border-radius: var(--borderRadiusSmallest, 4px);
|
|
1157
|
-
padding: 0;
|
|
1158
|
-
}
|
|
1159
|
-
|
|
1160
|
-
.cardinput button i {
|
|
1161
|
-
color: var(--colorDefault60, #3b448e);
|
|
1162
|
-
font-size: var(--textNormalSize, 14px);
|
|
1163
|
-
}
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
/* Input with icon */
|
|
1167
|
-
.layout-template-modern {
|
|
1168
|
-
background: transparent;
|
|
1169
|
-
border-radius: var(--borderRadiusSmallest, 4px);
|
|
1170
|
-
padding: 0;
|
|
1171
|
-
border-style: solid;
|
|
1172
|
-
border-width: 2px 1px 1px 1px;
|
|
1173
|
-
border-color: var(--backgroundColor50, #dfdfdf);
|
|
1174
|
-
}
|
|
1175
|
-
|
|
1176
|
-
.layout-template-modern:focus-within {
|
|
1177
|
-
background: transparent;
|
|
1178
|
-
border-color: var(--textColor40, #393939);
|
|
1179
|
-
outline: 0;
|
|
1180
|
-
}
|
|
1181
|
-
|
|
1182
|
-
.layout-template-modern input.k-textbox:hover,
|
|
1183
|
-
.layout-template-modern input.k-textbox {
|
|
1184
|
-
padding-left: 0;
|
|
1185
|
-
box-shadow: none;
|
|
1186
|
-
}
|
|
1187
|
-
|
|
1188
|
-
.layout-template-modern .k-button,
|
|
1189
|
-
.layout-template-modern .k-button:hover {
|
|
1190
|
-
border: 0;
|
|
1191
|
-
color: var(--colorDefault60, #3b448e);
|
|
1192
1149
|
}
|