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
|
@@ -17,17 +17,20 @@
|
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
.k-filter-menu .k-button+.k-button,
|
|
20
|
-
.k-button,
|
|
21
20
|
.btn,
|
|
22
21
|
.k-button.k-default,
|
|
23
22
|
.btn.btn-default {
|
|
24
23
|
box-shadow: transparent;
|
|
25
|
-
background:
|
|
24
|
+
background: linear-gradient(180deg, var(--colorPrimary40, #197fdd) 0%, var(--colorPrimary70, #09467f) 100%);
|
|
26
25
|
}
|
|
27
26
|
|
|
28
|
-
.k-button:hover {
|
|
29
|
-
background: var(
|
|
30
|
-
box-shadow: 0px 0px 3px #
|
|
27
|
+
.k-button.k-default:hover {
|
|
28
|
+
background: var(linear-gradient(180deg, var(--colorDefault40, #262c32) 0%, var(--colorDefault70, #15181b) 100%));
|
|
29
|
+
box-shadow: 0px 0px 3px 0px #3a4753;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.k-button:active {
|
|
33
|
+
background: var(--colorDefault50, #252e36);
|
|
31
34
|
}
|
|
32
35
|
|
|
33
36
|
.k-grid-header .k-header {
|
|
@@ -49,7 +52,7 @@
|
|
|
49
52
|
}
|
|
50
53
|
|
|
51
54
|
.k-slider .k-button {
|
|
52
|
-
background:
|
|
55
|
+
background: linear-gradient(180deg, var(--colorDefault40, #262c32) 0%, var(--colorDefault70, #15181b) 100%);
|
|
53
56
|
color: var(--textColorPrimary40, #f0f0f0);
|
|
54
57
|
border-radius: 5px;
|
|
55
58
|
transform: translate(-50%, -50%);
|
|
@@ -65,13 +68,13 @@
|
|
|
65
68
|
}
|
|
66
69
|
|
|
67
70
|
.k-grid .k-pager-numbers .k-state-selected {
|
|
68
|
-
background:
|
|
71
|
+
background: linear-gradient(180deg, var(--colorDefault40, #262c32) 0%, var(--colorDefault70, #15181b) 100%);
|
|
69
72
|
color: var(--textColor40, #f0f0f0);
|
|
70
73
|
border-radius: 5px;
|
|
71
74
|
}
|
|
72
75
|
|
|
73
76
|
.k-button.k-primary {
|
|
74
|
-
background:
|
|
77
|
+
background: linear-gradient(180deg, var(--colorPrimary40, #197fdd) 0%, var(--colorPrimary70, #09467f) 100%);
|
|
75
78
|
}
|
|
76
79
|
|
|
77
80
|
.k-button.k-primary:focus,
|
|
@@ -89,7 +92,7 @@
|
|
|
89
92
|
|
|
90
93
|
.k-grid-header:first-child th.k-header:first-child {
|
|
91
94
|
border-radius: 10px;
|
|
92
|
-
background:
|
|
95
|
+
background: linear-gradient(180deg, var(--colorPrimary40, #197fdd) 0%, var(--colorPrimary70, #09467f) 100%);
|
|
93
96
|
}
|
|
94
97
|
|
|
95
98
|
.k-grid-header th.k-header {
|
|
@@ -115,51 +118,40 @@
|
|
|
115
118
|
}
|
|
116
119
|
|
|
117
120
|
.k-grid-header .k-header {
|
|
118
|
-
background:
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
.k-grid-toolbar:first-child,
|
|
122
|
-
.k-grouping-header+.k-grid-toolbar {
|
|
123
|
-
background: var(--backgroundColor40, #090f13);
|
|
121
|
+
background: linear-gradient(180deg, var(--colorDefault40, #262c32) 0%, var(--colorDefault70, #15181b) 100%);
|
|
124
122
|
}
|
|
125
123
|
|
|
126
124
|
.k-grid-header th.k-header {
|
|
127
|
-
background:
|
|
125
|
+
background: linear-gradient(180deg, var(--colorPrimary40, #197fdd) 0%, var(--colorPrimary70, #09467f) 100%);
|
|
128
126
|
color: var(--textColor40, #f0f0f0);
|
|
129
127
|
border: transparent;
|
|
130
128
|
height: 8px;
|
|
131
129
|
}
|
|
132
130
|
|
|
133
131
|
.k-grid tbody td>.k-grid-delete {
|
|
134
|
-
background:
|
|
132
|
+
background: linear-gradient(180deg, var(--colorDanger40, #f03a3a) 0%, var(--colorDanger70, #832020) 100%);
|
|
135
133
|
}
|
|
136
134
|
|
|
137
135
|
.k-grid tbody td>.k-grid-delete:hover {
|
|
138
|
-
background:
|
|
139
|
-
box-shadow: 0px 0px 3px #
|
|
136
|
+
background: linear-gradient(180deg, var(--colorDanger40, #f03a3a) 0%, var(--colorDanger70, #832020) 100%);
|
|
137
|
+
box-shadow: 0px 0px 3px #de3636;
|
|
140
138
|
}
|
|
141
139
|
|
|
142
140
|
.k-grid table {
|
|
143
141
|
border-spacing: 1px;
|
|
142
|
+
background: var(--backgroundColor, #090f13);
|
|
143
|
+
border: unset;
|
|
144
144
|
}
|
|
145
145
|
|
|
146
146
|
.k-slider-horizontal .k-slider-selection,
|
|
147
147
|
.k-slider-horizontal .k-slider-track {
|
|
148
|
-
background: var(--
|
|
148
|
+
background: var(--textColor40, #f0f0f0);
|
|
149
149
|
height: 10px;
|
|
150
150
|
margin-top: 0px;
|
|
151
151
|
top: 0%;
|
|
152
152
|
border-radius: 20px;
|
|
153
153
|
}
|
|
154
154
|
|
|
155
|
-
.k-slider .k-button {
|
|
156
|
-
background: var(--colorPrimary, linear-gradient(180deg, #197FDD 0%, #08427A 100%));
|
|
157
|
-
color: var(--textColorPrimary40, #f0f0f0);
|
|
158
|
-
border-radius: 5px;
|
|
159
|
-
box-shadow: none;
|
|
160
|
-
top: 1px;
|
|
161
|
-
}
|
|
162
|
-
|
|
163
155
|
.k-draghandle .k-state-focused:link {
|
|
164
156
|
height: initial;
|
|
165
157
|
}
|
|
@@ -170,24 +162,24 @@
|
|
|
170
162
|
}
|
|
171
163
|
|
|
172
164
|
.k-grid .k-pager-numbers .k-state-selected {
|
|
173
|
-
background:
|
|
165
|
+
background: linear-gradient(180deg, var(--colorPrimary40, #197fdd) 0%, var(--colorPrimary70, #09467f) 100%);
|
|
174
166
|
color: var(--textColorPrimary40, #f0f0f0);
|
|
175
167
|
border-radius: 5px;
|
|
176
168
|
border: none;
|
|
177
169
|
}
|
|
178
170
|
|
|
179
171
|
.k-pager-wrap>.k-link>.k-icon {
|
|
180
|
-
color: var(--
|
|
172
|
+
color: var(--colorPrimary60, #125da2);
|
|
181
173
|
}
|
|
182
174
|
|
|
183
175
|
.k-button.k-primary {
|
|
184
|
-
background:
|
|
176
|
+
background: linear-gradient(180deg, var(--colorSuccess40, #2ffc2b) 0%, var(--colorSuccess70, #108d0d) 100%);
|
|
185
177
|
}
|
|
186
178
|
|
|
187
179
|
.k-button.k-primary:focus,
|
|
188
180
|
.k-button.k-primary:hover {
|
|
189
|
-
background:
|
|
190
|
-
box-shadow: 0px 0px 3px #
|
|
181
|
+
background: linear-gradient(180deg, var(--colorSuccess40, #2ffc2b) 0%, var(--colorSuccess70, #108d0d) 100%);
|
|
182
|
+
box-shadow: 0px 0px 3px #2ffc2b;
|
|
191
183
|
}
|
|
192
184
|
|
|
193
185
|
.k-widget.k-tooltip {
|
|
@@ -195,17 +187,120 @@
|
|
|
195
187
|
}
|
|
196
188
|
|
|
197
189
|
.k-widget.k-tooltip.k-slider-tooltip {
|
|
198
|
-
background:
|
|
190
|
+
background: linear-gradient(180deg, var(--colorPrimary40, #197fdd) 0%, var(--colorPrimary70, #09467f) 100%);
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
/*Modais*/
|
|
194
|
+
.modal-content {
|
|
195
|
+
position: relative;
|
|
196
|
+
background: var(--backgroundColor30, #546270);
|
|
197
|
+
color: var(--textColor40, #f0f0f0);
|
|
198
|
+
background-clip: padding-box;
|
|
199
|
+
border: 1px solid #999;
|
|
200
|
+
border: 1px solid rgba(0, 0, 0, .2);
|
|
201
|
+
border-radius: 30px;
|
|
202
|
+
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
|
|
203
|
+
box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
|
|
204
|
+
outline: 0;
|
|
205
|
+
text-align: center;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.modal-title {
|
|
209
|
+
margin: 0;
|
|
210
|
+
line-height: 1.42857143;
|
|
211
|
+
font-weight: 700;
|
|
212
|
+
margin-top: 20px;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.modal-header {
|
|
216
|
+
padding: 15px;
|
|
217
|
+
border-bottom: unset;
|
|
218
|
+
margin-bottom: -10px;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.close {
|
|
222
|
+
color: transparent;
|
|
223
|
+
text-shadow: unset;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
#modalTemplateCancel {
|
|
227
|
+
background: linear-gradient(180deg, var(--colorDanger40, #f03a3a) 0%, var(--colorDanger70, #832020) 100%);
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.modal-footer {
|
|
231
|
+
padding: 15px;
|
|
232
|
+
text-align: right;
|
|
233
|
+
border-top: unset;
|
|
234
|
+
margin-top: 20px;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
.btn:active:focus,
|
|
238
|
+
.btn:focus {
|
|
239
|
+
outline: unset;
|
|
240
|
+
outline-offset: -2px;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
/* Modal Notification*/
|
|
245
|
+
.k-dialog-buttongroup .k-button.k-primary {
|
|
246
|
+
background: linear-gradient(180deg, var(--colorPrimary40, #197fdd) 0%, var(--colorPrimary70, #09467f) 100%);
|
|
247
|
+
color: var(--textColorPrimary40, #f0f0f0);
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
.k-dialog-buttongroup .k-button.k-primary:hover {
|
|
251
|
+
background: linear-gradient(180deg, var(--colorPrimary40, #197fdd) 0%, var(--colorPrimary70, #09467f) 100%);
|
|
252
|
+
box-shadow: 0px 0px 3px 0px #187ad4;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
.k-dialog-buttongroup .k-button.k-primary:active:focus,
|
|
256
|
+
.k-dialog-buttongroup .k-button.k-primary:focus {
|
|
257
|
+
background: var(--colorPrimary70, #09467f);
|
|
258
|
+
box-shadow: unset;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.k-dialog-buttongroup .k-button {
|
|
262
|
+
background: linear-gradient(180deg, var(--colorDanger40, #f03a3a) 0%, var(--colorDanger70, #832020) 100%);
|
|
263
|
+
color: var(--textColorDanger40, #f0f0f0);
|
|
264
|
+
box-shadow: none;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
.k-dialog-buttongroup .k-button:hover {
|
|
268
|
+
background: linear-gradient(180deg, var(--colorDanger40, #f03a3a) 0%, var(--colorDanger70, #832020) 100%);
|
|
269
|
+
box-shadow: 0px 0px 3px 0px #de3636;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
.k-dialog-buttongroup .k-button:active,
|
|
273
|
+
.k-dialog-buttongroup .k-button:selected {
|
|
274
|
+
background: var(--colorDanger60, #7e2121);
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
.k-dialog-buttongroup .k-button:focus {
|
|
278
|
+
background: var(--colorDanger60, #7e2121);
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.k-dialog .k-dialog-buttongroup.k-dialog-button-layout-normal {
|
|
282
|
+
border-radius: 0;
|
|
283
|
+
justify-content: center;
|
|
284
|
+
border: 0;
|
|
285
|
+
margin-bottom: 20px;
|
|
199
286
|
}
|
|
200
287
|
|
|
201
288
|
.k-widget {
|
|
289
|
+
background: var(--backgroundColor30, #546270);
|
|
202
290
|
color: var(--textColor40, #f0f0f0);
|
|
203
291
|
border-bottom: none;
|
|
292
|
+
border-radius: 30px;
|
|
204
293
|
}
|
|
294
|
+
/* End modal*/
|
|
205
295
|
|
|
206
|
-
|
|
207
|
-
|
|
296
|
+
/*Modal mudar senha*/
|
|
297
|
+
.modal .modal-content .list-group-item {
|
|
298
|
+
border: 0;
|
|
299
|
+
padding: 10px 0;
|
|
300
|
+
color: var(--textColorDefault40, #f0f0f0);
|
|
301
|
+
background: transparent;
|
|
208
302
|
}
|
|
303
|
+
/* -----*/
|
|
209
304
|
|
|
210
305
|
.btn.btn-link:focus,
|
|
211
306
|
.btn.btn-link:hover {
|
|
@@ -218,7 +313,7 @@ thead.k-grid-header th.k-header:last-child {
|
|
|
218
313
|
height: 15px;
|
|
219
314
|
padding: 1px;
|
|
220
315
|
margin: 2px;
|
|
221
|
-
background:
|
|
316
|
+
background: linear-gradient(180deg, var(--colorPrimary40, #197fdd) 0%, var(--colorPrimary70, #09467f) 100%);
|
|
222
317
|
border-color: transparent;
|
|
223
318
|
border: none;
|
|
224
319
|
}
|
|
@@ -226,13 +321,13 @@ thead.k-grid-header th.k-header:last-child {
|
|
|
226
321
|
.k-slider-buttons .k-button:focus,
|
|
227
322
|
.k-grid .k-slider .k-button:hover,
|
|
228
323
|
.k-slider .k-button:hover {
|
|
229
|
-
background:
|
|
324
|
+
background: linear-gradient(180deg, var(--colorPrimary40, #197fdd) 0%, var(--colorPrimary70, #09467f) 100%);
|
|
230
325
|
color: var(--textColor40, #f0f0f0);
|
|
231
|
-
box-shadow: 0px 0px 3px #
|
|
326
|
+
box-shadow: 0px 0px 3px #187ad4;
|
|
232
327
|
}
|
|
233
328
|
|
|
234
329
|
.k-slider .k-slider-selection {
|
|
235
|
-
background:
|
|
330
|
+
background: linear-gradient(180deg, var(--colorPrimary40, #197fdd) 0%, var(--colorPrimary70, #09467f) 100%);
|
|
236
331
|
border-radius: 20px 0px 0px 20px;
|
|
237
332
|
top: 2px;
|
|
238
333
|
left: 2px;
|
|
@@ -248,12 +343,22 @@ thead.k-grid-header th.k-header:last-child {
|
|
|
248
343
|
.k-grid tr td {
|
|
249
344
|
border-radius: 10px;
|
|
250
345
|
background: var(--textColor40, #f0f0f0);
|
|
251
|
-
color: var(--backgroundColor, #
|
|
346
|
+
color: var(--backgroundColor, #090f13);
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
.k-grid td:hover {
|
|
350
|
+
background: var(--backgroundColor30, #546270);
|
|
351
|
+
color: var(--textColorDefault40, #f0f0f0);
|
|
352
|
+
border: none;
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
td.k-command-cell:hover {
|
|
356
|
+
background: var(--backgroundColor10, #f0f0f0);
|
|
252
357
|
}
|
|
253
358
|
|
|
254
359
|
.carousel-control .glyphicon-chevron-left,
|
|
255
360
|
.carousel-control .glyphicon-chevron-right {
|
|
256
|
-
background:
|
|
361
|
+
background: linear-gradient(180deg, var(--colorDefault40, #262c32) 0%, var(--colorDefault70, #15181b) 100%);
|
|
257
362
|
color: var(--textColor40, #f0f0f0);
|
|
258
363
|
border-radius: 20px;
|
|
259
364
|
font-size: 20px;
|
|
@@ -262,11 +367,11 @@ thead.k-grid-header th.k-header:last-child {
|
|
|
262
367
|
}
|
|
263
368
|
|
|
264
369
|
.carousel-indicators li {
|
|
265
|
-
border-color:
|
|
370
|
+
border-color: linear-gradient(180deg, var(--colorDefault40, #262c32) 0%, var(--colorDefault70, #15181b) 100%);
|
|
266
371
|
}
|
|
267
372
|
|
|
268
373
|
.carousel-indicators .active {
|
|
269
|
-
background:
|
|
374
|
+
background: linear-gradient(180deg, var(--colorDefault40, #262c32) 0%, var(--colorDefault70, #15181b) 100%);
|
|
270
375
|
}
|
|
271
376
|
|
|
272
377
|
.carousel .carousel-caption h1,
|
|
@@ -293,25 +398,25 @@ label {
|
|
|
293
398
|
|
|
294
399
|
.k-dropdown-wrap .k-input {
|
|
295
400
|
background: var(--textColor40, #f0f0f0);
|
|
296
|
-
|
|
297
|
-
border-radius: 20px;
|
|
401
|
+
border-radius: 0px;
|
|
298
402
|
}
|
|
299
403
|
|
|
300
|
-
.k-
|
|
301
|
-
|
|
302
|
-
|
|
404
|
+
input#cron-crn-enterprise-combobox-773856.k-input.cronSelect {
|
|
405
|
+
border-radius: 0px;
|
|
406
|
+
box-shadow: 0px;
|
|
303
407
|
}
|
|
304
408
|
|
|
305
409
|
.k-webkit .k-pager-numbers .k-current-page .k-link {
|
|
306
|
-
background:
|
|
410
|
+
background: linear-gradient(180deg, var(--colorPrimary40, #197fdd) 0%, var(--colorPrimary70, #09467f) 100%);
|
|
411
|
+
color: var(--texColorPrimary40, #f0f0f0);
|
|
307
412
|
border-color: transparent;
|
|
308
413
|
border-radius: 10px;
|
|
309
414
|
width: auto;
|
|
310
415
|
}
|
|
311
416
|
|
|
312
417
|
.k-webkit .k-pager-numbers .k-current-page .k-link:hover {
|
|
313
|
-
background:
|
|
314
|
-
box-shadow: 0px 0px 3px #
|
|
418
|
+
background: linear-gradient(180deg, var(--colorPrimary40, #197fdd) 0%, var(--colorPrimary70, #09467f) 100%);
|
|
419
|
+
box-shadow: 0px 0px 3px #187ad4;
|
|
315
420
|
}
|
|
316
421
|
|
|
317
422
|
.k-autocomplete.k-state-default .k-input {
|
|
@@ -325,15 +430,14 @@ label {
|
|
|
325
430
|
}
|
|
326
431
|
|
|
327
432
|
.k-pager-sizes .k-dropdown-wrap .k-input {
|
|
328
|
-
background:
|
|
433
|
+
background: linear-gradient(180deg, var(--colorPrimary40, #197fdd) 0%, var(--colorPrimary70, #09467f) 100%);
|
|
329
434
|
color: var(--texColorPrimary40, #f0f0f0);
|
|
330
435
|
border-color: transparent;
|
|
331
436
|
border-radius: 10px;
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
border-radius: 10px;
|
|
437
|
+
text-indent: initial;
|
|
438
|
+
margin-left: -3px;
|
|
439
|
+
width: auto;
|
|
440
|
+
text-align: center;
|
|
337
441
|
}
|
|
338
442
|
|
|
339
443
|
.k-pager-wrap .k-pager-refresh {
|
|
@@ -363,14 +467,29 @@ label {
|
|
|
363
467
|
border-bottom: none;
|
|
364
468
|
}
|
|
365
469
|
|
|
470
|
+
.k-dropdown-wrap.k-state-default.k-state-hover {
|
|
471
|
+
background: var(--backgroundColor10, #f0f0f0);
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
|
|
366
475
|
.k-popup {
|
|
367
|
-
background: var(--
|
|
476
|
+
background: var(--backgroundColor30, #546270);
|
|
477
|
+
color: var(--textColorDefault40, #f0f0f0);
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
.k-popup .k-list .k-item {
|
|
481
|
+
color: var(--textColorDefault40, #f0f0f0);
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
.k-popup .k-list .k-item:hover {
|
|
485
|
+
color: var(--textColorTexts, #14202a);
|
|
368
486
|
}
|
|
369
487
|
|
|
370
488
|
.k-popup .k-list .k-state-focused {
|
|
371
|
-
|
|
372
|
-
background: var(--backgroundColor, #14202A);
|
|
489
|
+
background: linear-gradient(180deg, var(--colorPrimary40, #197fdd) 0%, var(--colorPrimary70, #09467f) 100%);
|
|
373
490
|
color: var(--textColor40, #f0f0f0);
|
|
491
|
+
box-shadow: none;
|
|
492
|
+
border: unset;
|
|
374
493
|
}
|
|
375
494
|
|
|
376
495
|
.k-list>.k-state-hover {
|
|
@@ -385,6 +504,7 @@ label {
|
|
|
385
504
|
|
|
386
505
|
.k-autocomplete.k-state-default {
|
|
387
506
|
border-bottom: none;
|
|
507
|
+
border-radius: 20px;
|
|
388
508
|
}
|
|
389
509
|
|
|
390
510
|
cron-grid .k-tooltip span:before {
|
|
@@ -416,16 +536,82 @@ cron-grid .k-tooltip span:before {
|
|
|
416
536
|
background: var(--backgroundColor30, #546270);
|
|
417
537
|
}
|
|
418
538
|
|
|
419
|
-
.navbar-nav>li>a
|
|
420
|
-
{
|
|
539
|
+
.navbar-nav>li>a {
|
|
421
540
|
color: var(--textColor40, #f0f0f0);
|
|
422
541
|
}
|
|
423
542
|
|
|
424
|
-
|
|
543
|
+
|
|
425
544
|
.k-dropdown-wrap.k-state-defaul:focus,
|
|
426
|
-
.k-dropdown-wrap,
|
|
427
545
|
.k-dropdown-wrap.k-state-defaul:hover,
|
|
428
|
-
.k-dropdown-wrap,
|
|
429
546
|
.k-dropdown-wrap.k-state-defaul:active {
|
|
430
547
|
background: transparent;
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
.k-pager-nav.k-pager-first+.k-link {
|
|
551
|
+
border-right: unset;
|
|
552
|
+
}
|
|
553
|
+
|
|
554
|
+
.k-pager-wrap .k-link.k-pager-last {
|
|
555
|
+
border-right-width: unset;
|
|
556
|
+
border-right-style: unset;
|
|
557
|
+
}
|
|
558
|
+
|
|
559
|
+
.k-state-default>.k-select {
|
|
560
|
+
display: flex;
|
|
561
|
+
align-items: center;
|
|
562
|
+
justify-content: center;
|
|
563
|
+
background: var(--backgroundColor10, #f0f0f0);
|
|
564
|
+
color: var(--texColorPrimary40, #f0f0f0);
|
|
565
|
+
border-radius: 0px;
|
|
566
|
+
}
|
|
567
|
+
|
|
568
|
+
.k-pager-wrap .k-link {
|
|
569
|
+
border-color: unset;
|
|
570
|
+
border: unset;
|
|
571
|
+
background: var(--textColorDefault40, #f0f0f0);
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
.k-slider .k-button {
|
|
575
|
+
background: linear-gradient(180deg, var(--colorPrimary40, #197fdd) 0%, var(--colorPrimary70, #09467f) 100%);
|
|
576
|
+
color: var(--textColorDefault40, #f0f0f0);
|
|
577
|
+
border-radius: 5px;
|
|
578
|
+
box-shadow: none;
|
|
579
|
+
top: 3px;
|
|
580
|
+
}
|
|
581
|
+
|
|
582
|
+
.k-i-arrow-end-right:before,
|
|
583
|
+
.k-i-arrow-end-left:before,
|
|
584
|
+
.k-i-arrow-60-down:before {
|
|
585
|
+
color: var(--colorPrimary60, #125da2);
|
|
586
|
+
}
|
|
587
|
+
|
|
588
|
+
.k-pager-wrap.k-grid-pager.k-widget.k-floatwrap {
|
|
589
|
+
background: var(--backgroundCOlor10, #f0f0f0);
|
|
590
|
+
border-radius: 10px;
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
.ng-scope.k-grid.k-widget.k-display-block.k-editable {
|
|
594
|
+
background: transparent;
|
|
595
|
+
border: unset;
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
.k-select {
|
|
599
|
+
background: var(--backgroundColor10, #f0f0f0);
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
.k-button.k-button-icontext.k-grid-cancel {
|
|
603
|
+
background: linear-gradient(180deg, var(--colorDanger40, #f03a3a) 0%, var(--colorDanger70, #832020) 100%);
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
thead.k-grid-header th.k-header:last-child {
|
|
607
|
+
border-radius: 10px;
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
.k-i-clock:before {
|
|
611
|
+
color: var(--colorPrimary70, #09467f);
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
.k-scheduler-footer .k-icon {
|
|
615
|
+
background: var(--backbgroundColor10, #f0f0f0);
|
|
616
|
+
border-radius: 20px;
|
|
431
617
|
}
|
|
@@ -3,13 +3,13 @@
|
|
|
3
3
|
}
|
|
4
4
|
|
|
5
5
|
.navbar {
|
|
6
|
-
background: linear-gradient(180deg, #
|
|
6
|
+
background: linear-gradient(180deg, var(--colorDefault40, #262c32) 0%, var(--colorDefault70, #15181b) 100%);
|
|
7
7
|
border-bottom: none;
|
|
8
8
|
text-transform: uppercase;
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
.navbar-inverse {
|
|
12
|
-
background: linear-gradient(180deg, #
|
|
12
|
+
background: linear-gradient(180deg, var(--colorDefault40, #262c32) 0%, var(--colorDefault70, #15181b) 100%);
|
|
13
13
|
border: none
|
|
14
14
|
}
|
|
15
15
|
|
|
@@ -38,21 +38,23 @@
|
|
|
38
38
|
|
|
39
39
|
.navbar-default #navbar .navbar-nav li .dropdown-menu li a:hover,
|
|
40
40
|
.navbar-default #navbar2 .navbar-nav li .dropdown-menu li a:hover {
|
|
41
|
-
color: var(--textColorDefault40, #
|
|
42
|
-
background:
|
|
43
|
-
border-radius:
|
|
41
|
+
color: var(--textColorDefault40, #f0f0f0);
|
|
42
|
+
background: var(--backgroundColor30, #546270);
|
|
43
|
+
border-radius: 0px;
|
|
44
44
|
}
|
|
45
45
|
|
|
46
46
|
.dropdown-menu {
|
|
47
47
|
color: var(--textColor40, #f0f0f0);
|
|
48
48
|
font-size: var(--textMediumSize, 16px);
|
|
49
|
-
background: var(--
|
|
49
|
+
background: var(--backgroundColor10, #f0f0f0);
|
|
50
50
|
border-radius: 5px;
|
|
51
51
|
}
|
|
52
52
|
|
|
53
53
|
.navbar-default #navbar .navbar-nav li .dropdown-menu a,
|
|
54
54
|
.navbar-default #navbar2 .navbar-nav li .dropdown-menu a {
|
|
55
|
-
color: var(--
|
|
55
|
+
color: var(--textColorTexts, #14202a);
|
|
56
|
+
background: var(--textColor40, #f0f0f0);
|
|
57
|
+
border-radius: 10px;
|
|
56
58
|
margin: 0;
|
|
57
59
|
}
|
|
58
60
|
|
|
@@ -115,7 +117,6 @@
|
|
|
115
117
|
}
|
|
116
118
|
|
|
117
119
|
/* Dynamic Menu */
|
|
118
|
-
|
|
119
120
|
.navbar-nav>li>a {
|
|
120
121
|
color: var(--textColor40, #f0f0f0);
|
|
121
122
|
border-radius: 5px;
|
|
@@ -146,12 +147,12 @@
|
|
|
146
147
|
}
|
|
147
148
|
|
|
148
149
|
.dropdown-menu>li>a {
|
|
149
|
-
color: var(--
|
|
150
|
+
color: var(--textColorTexts, #14202a);
|
|
150
151
|
}
|
|
151
152
|
|
|
152
153
|
.dropdown-menu>li>a:focus,
|
|
153
154
|
.dropdown-menu>li>a:hover {
|
|
154
|
-
color: var(--
|
|
155
|
-
background: var(--
|
|
156
|
-
border-radius:
|
|
155
|
+
color: var(--textColorDefault40, #f0f0f0);
|
|
156
|
+
background: var(--backgroundColor30, #546270);
|
|
157
|
+
border-radius: 0px;
|
|
157
158
|
}
|