@unifiedsoftware/styles 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/css/fci-styles.css +3 -3
- package/css/fci-styles.min.css +1 -1
- package/fci-styles.scss +3279 -0
- package/package.json +3 -1
package/fci-styles.scss
ADDED
|
@@ -0,0 +1,3279 @@
|
|
|
1
|
+
*,
|
|
2
|
+
*::before,
|
|
3
|
+
*::after {
|
|
4
|
+
box-sizing: border-box;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
body {
|
|
8
|
+
background-color: white !important;
|
|
9
|
+
font-family: 'Inter', sans-serif !important;
|
|
10
|
+
font-size: 80% !important;
|
|
11
|
+
padding: 0px !important;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.light-scroll::-webkit-scrollbar,
|
|
15
|
+
.k-textarea.light-scroll textarea::-webkit-scrollbar {
|
|
16
|
+
width: 5px !important;
|
|
17
|
+
height: 5px !important;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.light-scroll::-webkit-scrollbar-thumb,
|
|
21
|
+
.k-textarea.light-scroll textarea::-webkit-scrollbar-thumb {
|
|
22
|
+
border-radius: 20px;
|
|
23
|
+
background-color: rgba(0, 0, 0, 0.15);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.light-scroll::-webkit-scrollbar-track,
|
|
27
|
+
.k-textarea.light-scroll textarea::-webkit-scrollbar-track {
|
|
28
|
+
background: hsla(0, 0%, 100%, 0.1);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.alert-dismissible {
|
|
32
|
+
padding-right: 2rem !important;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.alert {
|
|
36
|
+
font-size: 0.8rem !important;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.alert .close {
|
|
40
|
+
font-size: 1.2rem !important;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.form-check-input {
|
|
44
|
+
margin-top: 0.25rem !important;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.form-check .form-check-label {
|
|
48
|
+
margin-left: 1.5rem !important;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.main-panel {
|
|
52
|
+
min-height: calc(100vh - 0px) !important;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.input-password {
|
|
56
|
+
width: 50px !important;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.text-sm {
|
|
60
|
+
font-size: 0.8rem;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.nav-link {
|
|
64
|
+
cursor: pointer;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
a.link-blue,
|
|
68
|
+
a.link-blue:hover,
|
|
69
|
+
a.link-blue:visited,
|
|
70
|
+
a.link-blue:link,
|
|
71
|
+
a.link-blue:focus {
|
|
72
|
+
color: #5285ef;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
header.topbar {
|
|
76
|
+
z-index: 1000 !important;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.skin-red-dark .left-sidebar .user-pro-body a.link {
|
|
80
|
+
color: white !important;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.badge-inverse-green {
|
|
84
|
+
background: rgba(25, 216, 149, 0.3);
|
|
85
|
+
color: #19d895;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.badge-secondary {
|
|
89
|
+
background-color: #c4c9ce;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.badge-green {
|
|
93
|
+
color: #fff;
|
|
94
|
+
background-color: #288e40;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.badge-red {
|
|
98
|
+
color: #fff;
|
|
99
|
+
background-color: #f53a3a;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.badge-blue {
|
|
103
|
+
color: #fff;
|
|
104
|
+
background-color: #1a5da5;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.badge-lightblue {
|
|
108
|
+
color: #fff;
|
|
109
|
+
background-color: #17a2b8;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.text-priority-highest {
|
|
113
|
+
color: #ce0000;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.text-priority-high {
|
|
117
|
+
color: #ea4444;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.text-priority-medium {
|
|
121
|
+
color: #ea7d24;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.text-priority-low {
|
|
125
|
+
color: #2a8735;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.text-priority-lowest {
|
|
129
|
+
color: #55a557;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.btn-sm {
|
|
133
|
+
font-size: 0.7rem !important;
|
|
134
|
+
padding: 0.1rem 0.3rem !important;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.btn-rounded {
|
|
138
|
+
font-size: 0.7rem !important;
|
|
139
|
+
padding: 0.1rem 0.4rem !important;
|
|
140
|
+
border-radius: 50%;
|
|
141
|
+
border-color: transparent;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.btn-rounded:hover {
|
|
145
|
+
color: white;
|
|
146
|
+
background-color: rgba(152, 26, 89, 0.5);
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.btn-primary {
|
|
150
|
+
color: #fff;
|
|
151
|
+
background-color: #92190e !important;
|
|
152
|
+
border-color: #92190e;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.btn-primary:not(:disabled):hover,
|
|
156
|
+
.btn-primary:not(:disabled):active,
|
|
157
|
+
.btn-primary:not(:disabled):visited,
|
|
158
|
+
.btn-primary:not(:disabled):focus,
|
|
159
|
+
.btn-primary:not(:disabled):not(.disabled).active,
|
|
160
|
+
.btn-primary:not(:disabled):not(.disabled):active,
|
|
161
|
+
.show > .btn-primary.dropdown-toggle {
|
|
162
|
+
color: #fff;
|
|
163
|
+
background-color: #981a59;
|
|
164
|
+
border-color: #610935;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
a.disabled,
|
|
168
|
+
a.disabled:hover {
|
|
169
|
+
cursor: default;
|
|
170
|
+
opacity: 0.65;
|
|
171
|
+
color: darkgrey !important;
|
|
172
|
+
background-color: #fff !important;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.btn.disabled,
|
|
176
|
+
.btn:disabled {
|
|
177
|
+
cursor: inherit;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.app-loading {
|
|
181
|
+
position: fixed;
|
|
182
|
+
top: 0;
|
|
183
|
+
left: 0;
|
|
184
|
+
right: 0;
|
|
185
|
+
bottom: 0;
|
|
186
|
+
z-index: 1640;
|
|
187
|
+
background: #000;
|
|
188
|
+
display: flex;
|
|
189
|
+
justify-content: center;
|
|
190
|
+
align-items: center;
|
|
191
|
+
opacity: 0.55;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
.app-loading > h4 {
|
|
195
|
+
position: inherit;
|
|
196
|
+
margin-top: 4rem;
|
|
197
|
+
font-size: 1.2rem;
|
|
198
|
+
color: #fff;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
div.card-header h4 {
|
|
202
|
+
margin-top: 2px;
|
|
203
|
+
margin-bottom: 0;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
div.card-body > table {
|
|
207
|
+
margin-bottom: 0;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
table {
|
|
211
|
+
font-size: 0.82rem;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
table td,
|
|
215
|
+
table th {
|
|
216
|
+
padding: 0.4rem !important;
|
|
217
|
+
overflow: hidden;
|
|
218
|
+
white-space: nowrap;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
table th {
|
|
222
|
+
text-align: center !important;
|
|
223
|
+
font-weight: 500 !important;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
label.control-label {
|
|
227
|
+
margin-bottom: 0.4rem;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.text-bold {
|
|
231
|
+
font-weight: 600;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
.form-group {
|
|
235
|
+
margin-bottom: 0.5rem;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
.border-light {
|
|
239
|
+
border-color: rgba(0, 0, 0, 0.1) !important;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
hr.separator {
|
|
243
|
+
margin-top: 3px;
|
|
244
|
+
margin-bottom: 3px;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
.card-loading {
|
|
248
|
+
position: absolute;
|
|
249
|
+
top: 0;
|
|
250
|
+
left: 0;
|
|
251
|
+
right: 0;
|
|
252
|
+
bottom: 0;
|
|
253
|
+
z-index: 9;
|
|
254
|
+
background: #000;
|
|
255
|
+
display: flex;
|
|
256
|
+
justify-content: center;
|
|
257
|
+
align-items: center;
|
|
258
|
+
opacity: 0.35;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.card-loading > h4 {
|
|
262
|
+
position: inherit;
|
|
263
|
+
margin-top: 4rem;
|
|
264
|
+
font-size: 1.2rem;
|
|
265
|
+
color: #fff;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
.card {
|
|
269
|
+
border: 1px solid rgba(0, 0, 0, 0.125);
|
|
270
|
+
border-radius: 0.25rem;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.card-header span {
|
|
274
|
+
font-size: 12px;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
.card .card-body {
|
|
278
|
+
padding: 1rem 1rem;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.card-body > .form-group:last-child {
|
|
282
|
+
margin-bottom: 0.3rem !important;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
.card-footer > button,
|
|
286
|
+
.card-footer > a.btn {
|
|
287
|
+
margin: 0 0.25em;
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
.react-confirm-alert-overlay {
|
|
291
|
+
background: rgba(0, 0, 0, 0.55) !important;
|
|
292
|
+
z-index: 1000;
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
.card-image {
|
|
296
|
+
border: 1px solid rgba(0, 0, 0, 0.125);
|
|
297
|
+
border-radius: 0.25rem;
|
|
298
|
+
padding: 0.5rem;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
.card-header .card-header-tabs {
|
|
302
|
+
list-style: none;
|
|
303
|
+
top: 0;
|
|
304
|
+
right: 0;
|
|
305
|
+
position: absolute;
|
|
306
|
+
margin: 0;
|
|
307
|
+
padding: 0;
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
.card-states .map {
|
|
311
|
+
height: 100%;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
.card-states .card-header .card-header-tabs > li {
|
|
315
|
+
float: left;
|
|
316
|
+
padding: 0 15px;
|
|
317
|
+
border-left-width: 1px;
|
|
318
|
+
border-left-style: solid;
|
|
319
|
+
border-left-color: inherit;
|
|
320
|
+
height: 42px;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
.card-states .card-header .card-header-tabs > li > div {
|
|
324
|
+
margin-top: 6px;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
.card-payments .card-header .card-header-tabs > li {
|
|
328
|
+
height: 66px;
|
|
329
|
+
padding: 0 15px;
|
|
330
|
+
border-left-width: 1px;
|
|
331
|
+
border-left-style: solid;
|
|
332
|
+
border-left-color: inherit;
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
.card-payments .card-header .card-header-tabs > li > .dropdown > button {
|
|
336
|
+
margin-top: 17px;
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
.card-actions .btn-action::after {
|
|
340
|
+
display: none !important;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
.card a.dropdown-item {
|
|
344
|
+
font-size: 0.875rem !important;
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
.dropdown-item:hover,
|
|
348
|
+
.dropdown-item:focus,
|
|
349
|
+
.dropdown-item:active {
|
|
350
|
+
color: #16181b !important;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
.card-dashboard.card-full-screen {
|
|
354
|
+
bottom: 0;
|
|
355
|
+
left: 10px;
|
|
356
|
+
position: fixed;
|
|
357
|
+
top: 10px;
|
|
358
|
+
right: 10px;
|
|
359
|
+
z-index: 1048;
|
|
360
|
+
background-color: #ffffff;
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
.card-dashboard.card-full-screen .card-body {
|
|
364
|
+
overflow-y: auto;
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
.card-no-shadow {
|
|
368
|
+
box-shadow: none !important;
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
.btn-light {
|
|
372
|
+
color: #212529 !important;
|
|
373
|
+
background-color: transparent !important;
|
|
374
|
+
border-color: #d3d9df !important;
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
.custom-file-label {
|
|
378
|
+
overflow: hidden !important;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
.custom-file-label::after {
|
|
382
|
+
content: 'Change Photo' !important;
|
|
383
|
+
background-color: #03a9f3 !important;
|
|
384
|
+
border-color: #03a9f3 !important;
|
|
385
|
+
color: #fff !important;
|
|
386
|
+
border-radius: 0.25rem;
|
|
387
|
+
z-index: 1000;
|
|
388
|
+
width: 100%;
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
.page-link {
|
|
392
|
+
color: #03a9f3 !important;
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
.page-item.active .page-link {
|
|
396
|
+
z-index: 3;
|
|
397
|
+
cursor: default;
|
|
398
|
+
color: #fff !important;
|
|
399
|
+
background-color: #03a9f3 !important;
|
|
400
|
+
border-color: #03a9f3 !important;
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
.mega-dropdown.customize-column {
|
|
404
|
+
position: relative !important;
|
|
405
|
+
width: inherit !important;
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
.mega-dropdown.customize-column ul li {
|
|
409
|
+
list-style: none;
|
|
410
|
+
margin: 0 !important;
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
.mega-dropdown.customize-column .dropdown-menu {
|
|
414
|
+
z-index: 12;
|
|
415
|
+
width: 370px;
|
|
416
|
+
padding: 10px !important;
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
.mega-dropdown.customize-column .list-group {
|
|
420
|
+
max-height: 220px;
|
|
421
|
+
overflow-x: auto;
|
|
422
|
+
border: 1px solid rgba(0, 0, 0, 0.125);
|
|
423
|
+
border-bottom-right-radius: 0.25rem;
|
|
424
|
+
border-bottom-left-radius: 0.25rem;
|
|
425
|
+
border-top-right-radius: 0.25rem;
|
|
426
|
+
border-top-left-radius: 0.25rem;
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
.mega-dropdown.customize-column .list-group-item {
|
|
430
|
+
border: none;
|
|
431
|
+
border-radius: 0;
|
|
432
|
+
border-bottom: 1px solid rgba(0, 0, 0, 0.125);
|
|
433
|
+
padding: 0.4rem 0.7rem;
|
|
434
|
+
font-size: 0.82rem;
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
.mega-dropdown.customize-column .list-group-item.active:hover {
|
|
438
|
+
background-color: #03a9f3 !important;
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
.mega-dropdown.customize-column .list-group-item:last-child {
|
|
442
|
+
border: none;
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
.dropdown .dropdown-menu .dropdown-item {
|
|
446
|
+
font-size: 0.875rem;
|
|
447
|
+
padding: 0.25rem 1.5rem;
|
|
448
|
+
cursor: pointer;
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
.k-grid-header-wrap table,
|
|
452
|
+
.k-grid-table-wrap table,
|
|
453
|
+
.k-grid-footer-wrap table {
|
|
454
|
+
width: 100% !important;
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
.k-grid-header .k-header {
|
|
458
|
+
vertical-align: middle;
|
|
459
|
+
border-color: #eee !important;
|
|
460
|
+
border-width: 0.2px !important;
|
|
461
|
+
font-family: 'Inter', sans-serif !important;
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
.k-grid-header .k-header > .k-link {
|
|
465
|
+
overflow: auto;
|
|
466
|
+
text-overflow: inherit;
|
|
467
|
+
margin: 0;
|
|
468
|
+
padding: 0 6px;
|
|
469
|
+
text-overflow: ellipsis;
|
|
470
|
+
overflow: hidden;
|
|
471
|
+
white-space: normal;
|
|
472
|
+
}
|
|
473
|
+
.k-grid-header-wrap:hover {
|
|
474
|
+
background-color: white !important;
|
|
475
|
+
}
|
|
476
|
+
.k-grid-header:hover,
|
|
477
|
+
.k-header:hover {
|
|
478
|
+
background-color: white !important;
|
|
479
|
+
}
|
|
480
|
+
.k-table-row {
|
|
481
|
+
}
|
|
482
|
+
.k-table-thead:hover {
|
|
483
|
+
background-color: white !important;
|
|
484
|
+
}
|
|
485
|
+
.k-cell-inner:hover {
|
|
486
|
+
background-color: white !important;
|
|
487
|
+
}
|
|
488
|
+
.k-link:hover {
|
|
489
|
+
background-color: white !important;
|
|
490
|
+
}
|
|
491
|
+
.no-k-link:hover {
|
|
492
|
+
background-color: #990000 !important;
|
|
493
|
+
}
|
|
494
|
+
|
|
495
|
+
.k-grid-content.k-virtual-content table {
|
|
496
|
+
min-width: 100% !important;
|
|
497
|
+
box-sizing: border-box;
|
|
498
|
+
font-family: 'Inter', sans-serif !important;
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
.k-grid th {
|
|
502
|
+
text-overflow: initial !important;
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
.k-grid .k-hierarchy-cell > .k-icon {
|
|
506
|
+
padding: 0;
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
.k-detail-row:hover {
|
|
510
|
+
background-color: #fff !important;
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
/*.k-detail-row .k-grid thead tr:hover {
|
|
514
|
+
background-color: #3a4b54 !important;
|
|
515
|
+
}*/
|
|
516
|
+
|
|
517
|
+
.k-detail-row .k-grid-content {
|
|
518
|
+
min-height: initial !important;
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
a.k-link:not([href]):not([tabindex]) {
|
|
522
|
+
color: #2f4f4f;
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
.k-widget.k-grid {
|
|
526
|
+
margin-bottom: 0;
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
.k-grid-header-wrap,
|
|
530
|
+
.k-grid-container,
|
|
531
|
+
.k-grid-pager {
|
|
532
|
+
font-size: 12px;
|
|
533
|
+
background-color: white !important;
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
.k-grid-header-wrap {
|
|
537
|
+
border: none;
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
.k-grid-content {
|
|
541
|
+
min-height: 500px;
|
|
542
|
+
max-height: 500px;
|
|
543
|
+
overflow-y: auto;
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
.k-animation-container {
|
|
547
|
+
z-index: 1050 !important;
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
/******************** Comment ********************/
|
|
551
|
+
.comment-card {
|
|
552
|
+
display: grid;
|
|
553
|
+
grid-gap: 0.5rem;
|
|
554
|
+
grid-template: 'comment-card-avatar-area comment-card-content-area' / auto 1fr;
|
|
555
|
+
margin-bottom: 1rem;
|
|
556
|
+
position: relative;
|
|
557
|
+
}
|
|
558
|
+
|
|
559
|
+
.comment-card-add {
|
|
560
|
+
grid-area: comment-card-add-area;
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
.comment-card-avatar {
|
|
564
|
+
grid-area: comment-card-avatar-area;
|
|
565
|
+
}
|
|
566
|
+
|
|
567
|
+
.comment-card-avatar > img {
|
|
568
|
+
border-radius: 50%;
|
|
569
|
+
width: 1.65rem;
|
|
570
|
+
height: 1.65rem;
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
.comment-card-btn-label {
|
|
574
|
+
color: var(--gray-light);
|
|
575
|
+
font-weight: bold;
|
|
576
|
+
cursor: pointer;
|
|
577
|
+
padding: 0;
|
|
578
|
+
border: 0;
|
|
579
|
+
background: inherit;
|
|
580
|
+
}
|
|
581
|
+
|
|
582
|
+
.comment-card-btn-label:hover {
|
|
583
|
+
color: var(--primary);
|
|
584
|
+
transition: all 0.5s;
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
.comment-card-content {
|
|
588
|
+
grid-area: comment-card-content-area;
|
|
589
|
+
}
|
|
590
|
+
|
|
591
|
+
.comment-card-content > div {
|
|
592
|
+
margin-top: 0.25rem;
|
|
593
|
+
}
|
|
594
|
+
|
|
595
|
+
.comment-card-content > div:first-child {
|
|
596
|
+
margin-top: 0;
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
.comment-card-date:hover {
|
|
600
|
+
cursor: pointer;
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
.comment-card-list {
|
|
604
|
+
grid-area: comment-card-list-area;
|
|
605
|
+
height: auto;
|
|
606
|
+
margin: 0.25rem 0 0.25rem 0;
|
|
607
|
+
max-height: 220px;
|
|
608
|
+
overflow: auto;
|
|
609
|
+
}
|
|
610
|
+
|
|
611
|
+
.comment-card-list .comment-card:last-child {
|
|
612
|
+
margin-bottom: 0;
|
|
613
|
+
}
|
|
614
|
+
|
|
615
|
+
.comment-card-row {
|
|
616
|
+
display: flex;
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
.comment-card-row > * {
|
|
620
|
+
overflow-wrap: break-word;
|
|
621
|
+
margin-left: 0.5rem;
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
.comment-card-row > *:first-child {
|
|
625
|
+
margin-left: 0;
|
|
626
|
+
}
|
|
627
|
+
|
|
628
|
+
.comment-container {
|
|
629
|
+
display: grid;
|
|
630
|
+
grid-template: 'comment-card-list-area' 'comment-card-add-area' / auto;
|
|
631
|
+
position: relative;
|
|
632
|
+
margin: 0 0 0.5rem 0;
|
|
633
|
+
}
|
|
634
|
+
|
|
635
|
+
.comment-container-reverse {
|
|
636
|
+
grid-template: 'comment-card-add-area' 'comment-card-list-area' / auto;
|
|
637
|
+
}
|
|
638
|
+
/*************************************************/
|
|
639
|
+
.image-grouped > div:hover {
|
|
640
|
+
z-index: 10;
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
.table-noscroll .k-grid-content {
|
|
644
|
+
min-height: 31px;
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
.table-dashboard .k-grid-content {
|
|
648
|
+
overflow-y: scroll;
|
|
649
|
+
min-height: 124px;
|
|
650
|
+
height: 124px;
|
|
651
|
+
}
|
|
652
|
+
|
|
653
|
+
.table-vendor {
|
|
654
|
+
max-width: 1031px;
|
|
655
|
+
margin: 0 auto;
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
span.k-icon.k-i-more-vertical {
|
|
659
|
+
margin-top: -2px !important;
|
|
660
|
+
margin-right: -5px !important;
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
a > span.k-icon {
|
|
664
|
+
margin-top: 2px !important;
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
.k-grid a.btn {
|
|
668
|
+
color: #fff;
|
|
669
|
+
text-decoration: initial;
|
|
670
|
+
}
|
|
671
|
+
|
|
672
|
+
.list-group-item.active {
|
|
673
|
+
background-color: #03a9f3 !important;
|
|
674
|
+
}
|
|
675
|
+
|
|
676
|
+
.nav-link {
|
|
677
|
+
color: #936;
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
/* Kendo Styles*/
|
|
681
|
+
.k-grid-header {
|
|
682
|
+
background-color: #fff;
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
.k-grid .k-alt {
|
|
686
|
+
background-color: #f5eaf0;
|
|
687
|
+
}
|
|
688
|
+
|
|
689
|
+
.k-grid tbody tr:hover,
|
|
690
|
+
.k-grid tbody tr.k-state-hover {
|
|
691
|
+
background-color: rgb(234, 205, 220);
|
|
692
|
+
}
|
|
693
|
+
|
|
694
|
+
.k-pager-wrap .k-link,
|
|
695
|
+
.k-pager-wrap .k-pager-nav {
|
|
696
|
+
color: #3a4b54;
|
|
697
|
+
background-color: #fff;
|
|
698
|
+
border-color: transparent;
|
|
699
|
+
border-width: 1px;
|
|
700
|
+
border-style: solid;
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
.k-pager-numbers .k-state-selected,
|
|
704
|
+
.k-pager-numbers .k-state-selected:hover {
|
|
705
|
+
border-color: #92190e !important;
|
|
706
|
+
color: #fff;
|
|
707
|
+
background-color: white !important;
|
|
708
|
+
}
|
|
709
|
+
|
|
710
|
+
.k-autocomplete.form-control-sm {
|
|
711
|
+
font-size: 0.85rem;
|
|
712
|
+
}
|
|
713
|
+
|
|
714
|
+
.k-autocomplete.form-control-sm .k-input {
|
|
715
|
+
min-height: 20px;
|
|
716
|
+
height: calc(1.5em + 0.5rem + 2px);
|
|
717
|
+
padding: 0.25rem 0.5rem;
|
|
718
|
+
font-size: 0.76563rem;
|
|
719
|
+
line-height: 1.5;
|
|
720
|
+
border-radius: 0.2rem;
|
|
721
|
+
}
|
|
722
|
+
|
|
723
|
+
.form-control-sm {
|
|
724
|
+
padding: 0px !important;
|
|
725
|
+
}
|
|
726
|
+
|
|
727
|
+
.k-autocomplete .k-i-close {
|
|
728
|
+
top: 3px !important;
|
|
729
|
+
}
|
|
730
|
+
|
|
731
|
+
.k-numerictextbox .k-input {
|
|
732
|
+
text-align: inherit;
|
|
733
|
+
}
|
|
734
|
+
|
|
735
|
+
.k-numerictextbox .k-input:focus {
|
|
736
|
+
outline: none !important;
|
|
737
|
+
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
|
|
738
|
+
border-radius: inherit;
|
|
739
|
+
}
|
|
740
|
+
|
|
741
|
+
.k-picker-wrap.k-state-default {
|
|
742
|
+
height: 32.5px;
|
|
743
|
+
}
|
|
744
|
+
|
|
745
|
+
.k-picker-wrap.k-state-default .k-input {
|
|
746
|
+
font-size: 0.8rem;
|
|
747
|
+
}
|
|
748
|
+
|
|
749
|
+
.k-textarea-resize-none .k-input {
|
|
750
|
+
resize: none;
|
|
751
|
+
}
|
|
752
|
+
|
|
753
|
+
.label-edit {
|
|
754
|
+
background-color: #e4e7eb;
|
|
755
|
+
border-color: #e4e7eb;
|
|
756
|
+
cursor: pointer;
|
|
757
|
+
}
|
|
758
|
+
|
|
759
|
+
.label-edit:hover {
|
|
760
|
+
background-color: #ced3db;
|
|
761
|
+
border-color: #c7cdd5;
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
.mapael .map {
|
|
765
|
+
position: relative;
|
|
766
|
+
}
|
|
767
|
+
|
|
768
|
+
.mapael .mapTooltip {
|
|
769
|
+
position: absolute;
|
|
770
|
+
background-color: #474c4b;
|
|
771
|
+
opacity: 0.7;
|
|
772
|
+
filter: alpha(opacity=70);
|
|
773
|
+
border-radius: 10px;
|
|
774
|
+
padding: 10px;
|
|
775
|
+
z-index: 1000;
|
|
776
|
+
max-width: 200px;
|
|
777
|
+
display: none;
|
|
778
|
+
color: #fff;
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
.tab-content-custom {
|
|
782
|
+
padding: 1.25rem;
|
|
783
|
+
margin-top: -1px;
|
|
784
|
+
border: 1px solid #e9ecef;
|
|
785
|
+
border-radius: 0.25rem;
|
|
786
|
+
}
|
|
787
|
+
|
|
788
|
+
.data-label {
|
|
789
|
+
font-size: 0.8rem;
|
|
790
|
+
}
|
|
791
|
+
|
|
792
|
+
.data-display {
|
|
793
|
+
color: #5285ef;
|
|
794
|
+
text-align: left;
|
|
795
|
+
font-size: 0.8rem;
|
|
796
|
+
}
|
|
797
|
+
|
|
798
|
+
.footer {
|
|
799
|
+
font-size: 11px;
|
|
800
|
+
}
|
|
801
|
+
|
|
802
|
+
.accent-purple {
|
|
803
|
+
color: #993366;
|
|
804
|
+
}
|
|
805
|
+
|
|
806
|
+
.accent-grey {
|
|
807
|
+
color: #666666;
|
|
808
|
+
}
|
|
809
|
+
|
|
810
|
+
.top-cell-border {
|
|
811
|
+
height: 5px;
|
|
812
|
+
background-image: url('/images/ico_corner.gif');
|
|
813
|
+
background-repeat: no-repeat;
|
|
814
|
+
}
|
|
815
|
+
|
|
816
|
+
.well {
|
|
817
|
+
min-height: 20px;
|
|
818
|
+
padding: 12px 15px;
|
|
819
|
+
margin-bottom: 20px;
|
|
820
|
+
background-color: #f5f5f5;
|
|
821
|
+
border: 1px solid #e3e3e3;
|
|
822
|
+
border-radius: 4px;
|
|
823
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
|
|
824
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
|
|
825
|
+
}
|
|
826
|
+
|
|
827
|
+
.image-profile-selected {
|
|
828
|
+
border: 3px solid !important;
|
|
829
|
+
border-radius: 50%;
|
|
830
|
+
}
|
|
831
|
+
|
|
832
|
+
@media (max-width: 767px) {
|
|
833
|
+
.mega-dropdown .dropdown-menu {
|
|
834
|
+
height: initial;
|
|
835
|
+
width: 180px !important;
|
|
836
|
+
}
|
|
837
|
+
|
|
838
|
+
.nav-tabs .nav-item {
|
|
839
|
+
max-width: 46px;
|
|
840
|
+
}
|
|
841
|
+
|
|
842
|
+
.nav-tabs .nav-link {
|
|
843
|
+
overflow: hidden;
|
|
844
|
+
white-space: nowrap;
|
|
845
|
+
text-overflow: ellipsis;
|
|
846
|
+
font-size: 11.5px;
|
|
847
|
+
}
|
|
848
|
+
|
|
849
|
+
.nav-link,
|
|
850
|
+
.navbar {
|
|
851
|
+
padding: 2px 4px !important;
|
|
852
|
+
}
|
|
853
|
+
}
|
|
854
|
+
|
|
855
|
+
@media (min-width: 992px) {
|
|
856
|
+
.modal-lg,
|
|
857
|
+
.modal-xl {
|
|
858
|
+
max-width: 900px !important;
|
|
859
|
+
}
|
|
860
|
+
}
|
|
861
|
+
|
|
862
|
+
.card {
|
|
863
|
+
margin-bottom: 1.5rem;
|
|
864
|
+
}
|
|
865
|
+
|
|
866
|
+
.page-header {
|
|
867
|
+
margin: -1rem 0 1rem 0;
|
|
868
|
+
}
|
|
869
|
+
|
|
870
|
+
.breadcrumb {
|
|
871
|
+
padding: 0;
|
|
872
|
+
}
|
|
873
|
+
|
|
874
|
+
.form-label-sm {
|
|
875
|
+
font-size: inherit !important;
|
|
876
|
+
}
|
|
877
|
+
|
|
878
|
+
.form-control {
|
|
879
|
+
color: #495057 !important;
|
|
880
|
+
}
|
|
881
|
+
|
|
882
|
+
.form-control-sm {
|
|
883
|
+
height: 1.875rem !important;
|
|
884
|
+
}
|
|
885
|
+
|
|
886
|
+
.modal-header .close {
|
|
887
|
+
padding: 0 !important;
|
|
888
|
+
margin-top: 0.1rem !important;
|
|
889
|
+
margin-right: 0.1rem !important;
|
|
890
|
+
}
|
|
891
|
+
|
|
892
|
+
.popover-modal .popover {
|
|
893
|
+
z-index: 1600 !important;
|
|
894
|
+
}
|
|
895
|
+
|
|
896
|
+
.grid-info {
|
|
897
|
+
font-size: 8pt;
|
|
898
|
+
font-style: oblique;
|
|
899
|
+
color: #993366;
|
|
900
|
+
font-family: tahoma, verdana, arial, helvetica;
|
|
901
|
+
font-weight: bold;
|
|
902
|
+
}
|
|
903
|
+
|
|
904
|
+
.k-grid-header .k-header > .k-link > .k-icon.k-i-sort-desc-sm,
|
|
905
|
+
.k-grid-header .k-header > .k-link > .k-icon.k-i-sort-asc-sm {
|
|
906
|
+
margin-left: 3px !important;
|
|
907
|
+
}
|
|
908
|
+
|
|
909
|
+
input:focus {
|
|
910
|
+
outline: auto !important;
|
|
911
|
+
outline-color: gray !important;
|
|
912
|
+
outline-width: 1px !important;
|
|
913
|
+
}
|
|
914
|
+
|
|
915
|
+
/* ================================= */
|
|
916
|
+
/* Report Styles */
|
|
917
|
+
/* ================================= */
|
|
918
|
+
.report {
|
|
919
|
+
background-color: white;
|
|
920
|
+
padding: 30px;
|
|
921
|
+
}
|
|
922
|
+
|
|
923
|
+
.report-header:after {
|
|
924
|
+
content: '';
|
|
925
|
+
display: table;
|
|
926
|
+
clear: both;
|
|
927
|
+
}
|
|
928
|
+
|
|
929
|
+
.report-title {
|
|
930
|
+
background: url('/images/dimension.png');
|
|
931
|
+
border-top: 1px solid #5d6975;
|
|
932
|
+
border-bottom: 1px solid #5d6975;
|
|
933
|
+
line-height: 1.4em;
|
|
934
|
+
font-weight: normal;
|
|
935
|
+
text-align: center;
|
|
936
|
+
font-size: 2.4em;
|
|
937
|
+
color: #5d6975;
|
|
938
|
+
margin: 0;
|
|
939
|
+
}
|
|
940
|
+
|
|
941
|
+
.report-body {
|
|
942
|
+
padding: 30px 0;
|
|
943
|
+
}
|
|
944
|
+
|
|
945
|
+
.report-footer {
|
|
946
|
+
color: #5d6975;
|
|
947
|
+
font-size: 0.8rem;
|
|
948
|
+
padding: 8px 0 0 0;
|
|
949
|
+
border-top: 1px solid #c1ced9;
|
|
950
|
+
}
|
|
951
|
+
/* ================================= */
|
|
952
|
+
|
|
953
|
+
.important-display-block {
|
|
954
|
+
display: block !important;
|
|
955
|
+
}
|
|
956
|
+
|
|
957
|
+
.important-width-0 {
|
|
958
|
+
width: 0px !important;
|
|
959
|
+
}
|
|
960
|
+
|
|
961
|
+
.important-left-0 {
|
|
962
|
+
left: 0 !important;
|
|
963
|
+
}
|
|
964
|
+
|
|
965
|
+
.important-width-100-percent {
|
|
966
|
+
width: 100% !important;
|
|
967
|
+
}
|
|
968
|
+
|
|
969
|
+
.title-charts {
|
|
970
|
+
font-size: 1rem;
|
|
971
|
+
font-weight: 500;
|
|
972
|
+
}
|
|
973
|
+
|
|
974
|
+
.subtitle-charts {
|
|
975
|
+
font-size: 0.8rem;
|
|
976
|
+
}
|
|
977
|
+
|
|
978
|
+
/* ================================= */
|
|
979
|
+
/* Login Page */
|
|
980
|
+
/* ================================= */
|
|
981
|
+
|
|
982
|
+
.auth .row .col-lg-4 {
|
|
983
|
+
background-color: #800001;
|
|
984
|
+
}
|
|
985
|
+
|
|
986
|
+
.input-group {
|
|
987
|
+
background: white;
|
|
988
|
+
}
|
|
989
|
+
|
|
990
|
+
.form-check-label {
|
|
991
|
+
margin-left: 0px;
|
|
992
|
+
}
|
|
993
|
+
|
|
994
|
+
/*
|
|
995
|
+
.form-check .form-check-label{
|
|
996
|
+
color: white !important;
|
|
997
|
+
}
|
|
998
|
+
.auth form .auth-link {
|
|
999
|
+
color: white;
|
|
1000
|
+
}
|
|
1001
|
+
.row, .col-lg-4.auth .auth-form-transparent {
|
|
1002
|
+
color: white;
|
|
1003
|
+
}*/
|
|
1004
|
+
.auth-form-transparent .brand-logo img {
|
|
1005
|
+
width: 300px !important;
|
|
1006
|
+
}
|
|
1007
|
+
|
|
1008
|
+
.loginfont {
|
|
1009
|
+
color: white;
|
|
1010
|
+
}
|
|
1011
|
+
|
|
1012
|
+
/* Modal Detail */
|
|
1013
|
+
/*.modal-detail.modal-lg .modal-header .close {
|
|
1014
|
+
padding: .6rem 1rem !important;
|
|
1015
|
+
}*/
|
|
1016
|
+
|
|
1017
|
+
@media (min-width: 1200px) {
|
|
1018
|
+
.modal-detail.modal-lg,
|
|
1019
|
+
.modal-detail.modal-xl {
|
|
1020
|
+
max-width: 1200px;
|
|
1021
|
+
}
|
|
1022
|
+
}
|
|
1023
|
+
|
|
1024
|
+
@media (min-width: 992px) and (max-width: 1199px) {
|
|
1025
|
+
.modal-lg,
|
|
1026
|
+
.modal-xl {
|
|
1027
|
+
max-width: 1200px;
|
|
1028
|
+
}
|
|
1029
|
+
|
|
1030
|
+
.modal-detail.modal-lg,
|
|
1031
|
+
.modal-detail.modal-xl {
|
|
1032
|
+
max-width: 80%;
|
|
1033
|
+
}
|
|
1034
|
+
}
|
|
1035
|
+
|
|
1036
|
+
@media (min-width: 576px) and (max-width: 991px) {
|
|
1037
|
+
.modal-detail.modal-lg,
|
|
1038
|
+
.modal-detail.modal-xl {
|
|
1039
|
+
max-width: 90%;
|
|
1040
|
+
}
|
|
1041
|
+
}
|
|
1042
|
+
|
|
1043
|
+
/* Btn Green */
|
|
1044
|
+
.btn-green {
|
|
1045
|
+
color: #fff !important;
|
|
1046
|
+
background-color: #5cb85c !important;
|
|
1047
|
+
border-color: #4cae4c !important;
|
|
1048
|
+
}
|
|
1049
|
+
/* =========== */
|
|
1050
|
+
|
|
1051
|
+
/*
|
|
1052
|
+
.k-widget.k-datepicker {
|
|
1053
|
+
margin-top: -.8rem !important;
|
|
1054
|
+
}
|
|
1055
|
+
*/
|
|
1056
|
+
|
|
1057
|
+
.k-grid-edit-cell > .k-widget.k-datepicker,
|
|
1058
|
+
.k-widget.k-datepicker.k-datepicker-block {
|
|
1059
|
+
margin-top: 0 !important;
|
|
1060
|
+
}
|
|
1061
|
+
|
|
1062
|
+
/*.k-grid {
|
|
1063
|
+
border: 1px solid #ccc;
|
|
1064
|
+
}*/
|
|
1065
|
+
|
|
1066
|
+
.k-grid td.k-state-selected,
|
|
1067
|
+
.k-grid tr {
|
|
1068
|
+
color: darkslategray !important;
|
|
1069
|
+
background-color: #fff !important;
|
|
1070
|
+
border: 1px solid white !important;
|
|
1071
|
+
}
|
|
1072
|
+
|
|
1073
|
+
tr:nth-child(even) > td {
|
|
1074
|
+
background-color: #eee;
|
|
1075
|
+
border: 1px solid transparent !important;
|
|
1076
|
+
}
|
|
1077
|
+
tbody > tr:hover {
|
|
1078
|
+
background-color: rgba(0, 0, 0, 0.125) !important;
|
|
1079
|
+
}
|
|
1080
|
+
tr:nth-child(odd) > td {
|
|
1081
|
+
border: 1px solid transparent !important;
|
|
1082
|
+
}
|
|
1083
|
+
|
|
1084
|
+
tr {
|
|
1085
|
+
border: 1px solid #eee !important;
|
|
1086
|
+
}
|
|
1087
|
+
|
|
1088
|
+
tr > td {
|
|
1089
|
+
border-bottom: 1px solid #eee !important;
|
|
1090
|
+
}
|
|
1091
|
+
|
|
1092
|
+
textarea.form-control-sm {
|
|
1093
|
+
height: auto !important;
|
|
1094
|
+
}
|
|
1095
|
+
|
|
1096
|
+
.board-col {
|
|
1097
|
+
outline: none;
|
|
1098
|
+
}
|
|
1099
|
+
|
|
1100
|
+
.kanbanHeight {
|
|
1101
|
+
position: relative;
|
|
1102
|
+
padding-top: 5px;
|
|
1103
|
+
}
|
|
1104
|
+
|
|
1105
|
+
.board-backdrop {
|
|
1106
|
+
position: absolute;
|
|
1107
|
+
top: 0;
|
|
1108
|
+
left: 0;
|
|
1109
|
+
right: 0;
|
|
1110
|
+
bottom: 0;
|
|
1111
|
+
z-index: 100;
|
|
1112
|
+
opacity: 0.35;
|
|
1113
|
+
background: #b0b0b0;
|
|
1114
|
+
margin-left: -5px;
|
|
1115
|
+
margin-right: -5px;
|
|
1116
|
+
margin-bottom: -5px;
|
|
1117
|
+
border-bottom-left-radius: 4px;
|
|
1118
|
+
border-bottom-right-radius: 4px;
|
|
1119
|
+
}
|
|
1120
|
+
|
|
1121
|
+
.email-wrapper .mail-sidebar {
|
|
1122
|
+
border-right: 1px solid #dee2e6;
|
|
1123
|
+
}
|
|
1124
|
+
|
|
1125
|
+
.email-wrapper .mail-sidebar .menu-bar .menu-items li {
|
|
1126
|
+
padding: 0 !important;
|
|
1127
|
+
}
|
|
1128
|
+
|
|
1129
|
+
.email-wrapper .mail-sidebar .menu-bar .menu-items li a {
|
|
1130
|
+
width: 100% !important;
|
|
1131
|
+
padding: 0.4rem 0.5rem !important;
|
|
1132
|
+
}
|
|
1133
|
+
|
|
1134
|
+
.list-wrapper ul li.todo-list-item {
|
|
1135
|
+
padding: 0.4rem 0.5rem !important;
|
|
1136
|
+
justify-content: space-between !important;
|
|
1137
|
+
align-content: center !important;
|
|
1138
|
+
outline: none !important;
|
|
1139
|
+
background-color: #ffffff;
|
|
1140
|
+
}
|
|
1141
|
+
|
|
1142
|
+
.list-wrapper ul li.todo-list-item.disabled {
|
|
1143
|
+
color: #9f9f9f;
|
|
1144
|
+
}
|
|
1145
|
+
|
|
1146
|
+
.list-wrapper .action {
|
|
1147
|
+
cursor: pointer;
|
|
1148
|
+
font-size: 1.438rem;
|
|
1149
|
+
font-weight: 600;
|
|
1150
|
+
line-height: 20px;
|
|
1151
|
+
text-align: center;
|
|
1152
|
+
}
|
|
1153
|
+
|
|
1154
|
+
.modal-content,
|
|
1155
|
+
.modal-content p,
|
|
1156
|
+
.modal-content ul,
|
|
1157
|
+
.modal-content .btn,
|
|
1158
|
+
.modal-content .form-control-sm,
|
|
1159
|
+
.modal-content .k-textarea textarea {
|
|
1160
|
+
font-size: 0.8rem;
|
|
1161
|
+
}
|
|
1162
|
+
|
|
1163
|
+
.modal-content .k-textarea textarea {
|
|
1164
|
+
padding: 0.25rem 0.5rem;
|
|
1165
|
+
}
|
|
1166
|
+
|
|
1167
|
+
.modal-content .label {
|
|
1168
|
+
font-weight: 500 !important;
|
|
1169
|
+
}
|
|
1170
|
+
|
|
1171
|
+
.k-animation-container .k-popup {
|
|
1172
|
+
font-size: 0.8rem !important;
|
|
1173
|
+
}
|
|
1174
|
+
|
|
1175
|
+
.k-combobox.form-control-sm .k-dropdown-wrap,
|
|
1176
|
+
.k-combobox.form-control-sm .k-icon.k-i-close {
|
|
1177
|
+
height: calc(100% + 2px);
|
|
1178
|
+
}
|
|
1179
|
+
|
|
1180
|
+
.card-confirm {
|
|
1181
|
+
margin-bottom: 0;
|
|
1182
|
+
}
|
|
1183
|
+
|
|
1184
|
+
.card-confirm,
|
|
1185
|
+
.card-confirm .btn {
|
|
1186
|
+
font-size: 0.8rem;
|
|
1187
|
+
}
|
|
1188
|
+
|
|
1189
|
+
.card-confirm .card-title {
|
|
1190
|
+
font-size: 16px !important;
|
|
1191
|
+
margin-bottom: 0 !important;
|
|
1192
|
+
line-height: 1.5 !important;
|
|
1193
|
+
}
|
|
1194
|
+
|
|
1195
|
+
.bg-fci-primary {
|
|
1196
|
+
background-color: #990000 !important;
|
|
1197
|
+
}
|
|
1198
|
+
|
|
1199
|
+
.bg-fci-secondary {
|
|
1200
|
+
background-color: #cc9900 !important;
|
|
1201
|
+
}
|
|
1202
|
+
|
|
1203
|
+
.bg-fci-silver {
|
|
1204
|
+
background-color: #d0cfcf !important;
|
|
1205
|
+
}
|
|
1206
|
+
|
|
1207
|
+
.bg-fci-warning {
|
|
1208
|
+
background-color: #cd9b1e !important;
|
|
1209
|
+
}
|
|
1210
|
+
|
|
1211
|
+
.bg-fci-success {
|
|
1212
|
+
background-color: #288e40 !important;
|
|
1213
|
+
}
|
|
1214
|
+
|
|
1215
|
+
.bg-fci-info {
|
|
1216
|
+
background-color: #8862e0 !important;
|
|
1217
|
+
}
|
|
1218
|
+
|
|
1219
|
+
.badge-fci-primary {
|
|
1220
|
+
background-color: #990000 !important;
|
|
1221
|
+
}
|
|
1222
|
+
|
|
1223
|
+
.badge-fci-warning {
|
|
1224
|
+
background-color: #cd9b1e !important;
|
|
1225
|
+
}
|
|
1226
|
+
|
|
1227
|
+
.badge-fci-success {
|
|
1228
|
+
background-color: #288e40 !important;
|
|
1229
|
+
}
|
|
1230
|
+
|
|
1231
|
+
.badge-fci-info {
|
|
1232
|
+
background-color: #8862e0 !important;
|
|
1233
|
+
}
|
|
1234
|
+
|
|
1235
|
+
.badge-fci-primary,
|
|
1236
|
+
.badge-fci-warning,
|
|
1237
|
+
.badge-fci-success,
|
|
1238
|
+
.badge-fci-info {
|
|
1239
|
+
color: #fff !important;
|
|
1240
|
+
}
|
|
1241
|
+
|
|
1242
|
+
.step-label-content {
|
|
1243
|
+
display: flex;
|
|
1244
|
+
justify-content: space-around;
|
|
1245
|
+
position: relative;
|
|
1246
|
+
z-index: 10;
|
|
1247
|
+
margin-bottom: -18px;
|
|
1248
|
+
}
|
|
1249
|
+
|
|
1250
|
+
.step-label {
|
|
1251
|
+
width: 30px;
|
|
1252
|
+
height: 30px;
|
|
1253
|
+
border-radius: 50%;
|
|
1254
|
+
display: flex;
|
|
1255
|
+
justify-content: center;
|
|
1256
|
+
align-items: center;
|
|
1257
|
+
font-size: 18px;
|
|
1258
|
+
font-weight: bold;
|
|
1259
|
+
}
|
|
1260
|
+
|
|
1261
|
+
.step-selected {
|
|
1262
|
+
color: white;
|
|
1263
|
+
background-color: #990000;
|
|
1264
|
+
}
|
|
1265
|
+
|
|
1266
|
+
.step-complete {
|
|
1267
|
+
color: white;
|
|
1268
|
+
background-color: #cc9900;
|
|
1269
|
+
}
|
|
1270
|
+
|
|
1271
|
+
.step-incomplete {
|
|
1272
|
+
color: black;
|
|
1273
|
+
background-color: #d0cfcf;
|
|
1274
|
+
}
|
|
1275
|
+
|
|
1276
|
+
.data-number {
|
|
1277
|
+
text-align: right !important;
|
|
1278
|
+
}
|
|
1279
|
+
|
|
1280
|
+
.btn-fcicolor-primary {
|
|
1281
|
+
color: #fff;
|
|
1282
|
+
background-color: #981a59;
|
|
1283
|
+
border-color: #7d2f56;
|
|
1284
|
+
}
|
|
1285
|
+
|
|
1286
|
+
.text-bigger {
|
|
1287
|
+
font-size: 1.6rem !important;
|
|
1288
|
+
}
|
|
1289
|
+
|
|
1290
|
+
.list-group-item.board-columns.active {
|
|
1291
|
+
border-color: #3a4b54 !important;
|
|
1292
|
+
background-color: #3a4b54 !important;
|
|
1293
|
+
}
|
|
1294
|
+
|
|
1295
|
+
.list-group-item:not(.board-columns):hover {
|
|
1296
|
+
background-color: #f1f1f1 !important;
|
|
1297
|
+
}
|
|
1298
|
+
|
|
1299
|
+
.list-group-item.selected {
|
|
1300
|
+
background-color: #f1f1f1 !important;
|
|
1301
|
+
}
|
|
1302
|
+
|
|
1303
|
+
.table-checkbox {
|
|
1304
|
+
width: 18px !important;
|
|
1305
|
+
}
|
|
1306
|
+
|
|
1307
|
+
.table-checkbox .form-check-label {
|
|
1308
|
+
width: 18px !important;
|
|
1309
|
+
}
|
|
1310
|
+
|
|
1311
|
+
.table-checkbox .form-check-label input[type='checkbox'] + .input-helper:before {
|
|
1312
|
+
width: 18px !important;
|
|
1313
|
+
border: 2px solid #c4c9ce !important;
|
|
1314
|
+
background: #dcdcdc !important;
|
|
1315
|
+
}
|
|
1316
|
+
|
|
1317
|
+
.table-checkbox .form-check-label.bg-blue input[type='checkbox']:checked + .input-helper:before {
|
|
1318
|
+
border: 2px solid #1a5da5 !important;
|
|
1319
|
+
background: #1a5da5 !important;
|
|
1320
|
+
}
|
|
1321
|
+
|
|
1322
|
+
.table-checkbox .form-check-label.bg-green input[type='checkbox']:checked + .input-helper:before {
|
|
1323
|
+
border: 2px solid #288e40 !important;
|
|
1324
|
+
background: #288e40 !important;
|
|
1325
|
+
}
|
|
1326
|
+
|
|
1327
|
+
.table-checkbox .form-check-label.bg-lightblue input[type='checkbox']:checked + .input-helper:before {
|
|
1328
|
+
border: 2px solid #17a2b8 !important;
|
|
1329
|
+
background: #17a2b8 !important;
|
|
1330
|
+
}
|
|
1331
|
+
|
|
1332
|
+
.k-textbox.form-control-sm {
|
|
1333
|
+
padding: 0.25rem 0.5rem !important;
|
|
1334
|
+
}
|
|
1335
|
+
|
|
1336
|
+
.k-widget.k-treeview {
|
|
1337
|
+
padding: 0 !important;
|
|
1338
|
+
}
|
|
1339
|
+
|
|
1340
|
+
ul.k-treeview-lines {
|
|
1341
|
+
margin-bottom: 0 !important;
|
|
1342
|
+
}
|
|
1343
|
+
|
|
1344
|
+
ul.k-treeview-lines {
|
|
1345
|
+
padding: 0 !important;
|
|
1346
|
+
}
|
|
1347
|
+
|
|
1348
|
+
.no-tree li.k-item.k-treeview-item {
|
|
1349
|
+
padding: 0 !important;
|
|
1350
|
+
}
|
|
1351
|
+
|
|
1352
|
+
li.k-item.k-treeview-item span.k-in,
|
|
1353
|
+
li.k-item.k-treeview-item span.k-in.k-state-focused {
|
|
1354
|
+
padding: 0 !important;
|
|
1355
|
+
border: none !important;
|
|
1356
|
+
box-shadow: none !important;
|
|
1357
|
+
background-color: transparent !important;
|
|
1358
|
+
}
|
|
1359
|
+
|
|
1360
|
+
.list-permissions .k-animation-container {
|
|
1361
|
+
z-index: inherit !important;
|
|
1362
|
+
}
|
|
1363
|
+
|
|
1364
|
+
.radio-check {
|
|
1365
|
+
margin-top: 0px !important;
|
|
1366
|
+
}
|
|
1367
|
+
|
|
1368
|
+
.list-permissions li.k-item.k-treeview-item {
|
|
1369
|
+
line-height: 1.7;
|
|
1370
|
+
}
|
|
1371
|
+
|
|
1372
|
+
.list-permissions li.k-item.k-treeview-item .k-checkbox {
|
|
1373
|
+
margin-left: 3px;
|
|
1374
|
+
}
|
|
1375
|
+
|
|
1376
|
+
.card {
|
|
1377
|
+
border: 1px solid rgba(0, 0, 0, 0.125) !important;
|
|
1378
|
+
}
|
|
1379
|
+
|
|
1380
|
+
.bg-green {
|
|
1381
|
+
background-color: #449d44 !important;
|
|
1382
|
+
}
|
|
1383
|
+
|
|
1384
|
+
.bg-red {
|
|
1385
|
+
background-color: #c9302c !important;
|
|
1386
|
+
}
|
|
1387
|
+
|
|
1388
|
+
.bg-yellow {
|
|
1389
|
+
background-color: #ffaf00 !important;
|
|
1390
|
+
}
|
|
1391
|
+
|
|
1392
|
+
.bg-orange {
|
|
1393
|
+
background-color: #ff5e00 !important;
|
|
1394
|
+
}
|
|
1395
|
+
|
|
1396
|
+
.bg-black {
|
|
1397
|
+
background-color: #000000 !important;
|
|
1398
|
+
}
|
|
1399
|
+
|
|
1400
|
+
.bg-gray {
|
|
1401
|
+
background-color: #9fa1a2 !important;
|
|
1402
|
+
}
|
|
1403
|
+
|
|
1404
|
+
.bg-lightgray {
|
|
1405
|
+
background-color: #dfdfdf !important;
|
|
1406
|
+
}
|
|
1407
|
+
|
|
1408
|
+
.bg-blue {
|
|
1409
|
+
background-color: #004e8c !important;
|
|
1410
|
+
}
|
|
1411
|
+
|
|
1412
|
+
.bg-lightblue {
|
|
1413
|
+
background-color: #2196f3 !important;
|
|
1414
|
+
}
|
|
1415
|
+
|
|
1416
|
+
.bg-lightyellow {
|
|
1417
|
+
background-color: rgba(225, 174, 48, 0.3) !important;
|
|
1418
|
+
}
|
|
1419
|
+
|
|
1420
|
+
.bg-white {
|
|
1421
|
+
background-color: #ffffff !important;
|
|
1422
|
+
}
|
|
1423
|
+
|
|
1424
|
+
.date-myview .k-widget.k-datepicker {
|
|
1425
|
+
margin-top: 0 !important;
|
|
1426
|
+
}
|
|
1427
|
+
|
|
1428
|
+
.k-input,
|
|
1429
|
+
.k-textbox {
|
|
1430
|
+
font-size: 0.8rem !important;
|
|
1431
|
+
}
|
|
1432
|
+
|
|
1433
|
+
.circle {
|
|
1434
|
+
width: 20px;
|
|
1435
|
+
height: 20px;
|
|
1436
|
+
border: 1px solid #828282;
|
|
1437
|
+
border-radius: 50%;
|
|
1438
|
+
}
|
|
1439
|
+
|
|
1440
|
+
.circle.circle-sm {
|
|
1441
|
+
width: 18px;
|
|
1442
|
+
height: 18px;
|
|
1443
|
+
}
|
|
1444
|
+
|
|
1445
|
+
.report-my-day {
|
|
1446
|
+
border-radius: 0 !important;
|
|
1447
|
+
}
|
|
1448
|
+
|
|
1449
|
+
.report-my-day .card-body .main-row {
|
|
1450
|
+
height: calc(100vh - 317px) !important;
|
|
1451
|
+
}
|
|
1452
|
+
|
|
1453
|
+
.report-my-day .card-body .main-row .list-col,
|
|
1454
|
+
.report-my-day .card-body .main-row .details-col {
|
|
1455
|
+
overflow-y: auto;
|
|
1456
|
+
height: 100%;
|
|
1457
|
+
}
|
|
1458
|
+
|
|
1459
|
+
.report-my-day .card-body .main-row .list-col {
|
|
1460
|
+
overflow-y: auto !important;
|
|
1461
|
+
border-radius: initial !important;
|
|
1462
|
+
border-top: 1px solid rgba(0, 0, 0, 0.125) !important;
|
|
1463
|
+
border-right: 1px solid rgba(0, 0, 0, 0.125) !important;
|
|
1464
|
+
}
|
|
1465
|
+
|
|
1466
|
+
.report-my-day .card-body .main-row .list-col > p {
|
|
1467
|
+
padding: 0.75rem 0.5rem !important;
|
|
1468
|
+
}
|
|
1469
|
+
|
|
1470
|
+
.report-my-day .card-body .main-row .list-col ul.list-group li.list-group-item {
|
|
1471
|
+
border-left: none !important;
|
|
1472
|
+
border-right: none !important;
|
|
1473
|
+
padding: 0.5rem !important;
|
|
1474
|
+
cursor: pointer !important;
|
|
1475
|
+
}
|
|
1476
|
+
|
|
1477
|
+
.report-my-day .card-body .main-row .list-col ul.list-group li.list-group-item:first-child {
|
|
1478
|
+
border-top: none !important;
|
|
1479
|
+
}
|
|
1480
|
+
|
|
1481
|
+
.report-my-day .card-body .main-row .list-col ul.list-group li.list-group-item:last-child {
|
|
1482
|
+
border-bottom: none !important;
|
|
1483
|
+
}
|
|
1484
|
+
|
|
1485
|
+
.report-my-day .card-body .main-row .details-col {
|
|
1486
|
+
overflow-y: auto !important;
|
|
1487
|
+
padding: 0.75rem 0.5rem !important;
|
|
1488
|
+
/*height: calc(100% - 0px) !important;*/
|
|
1489
|
+
border-top: 1px solid rgba(0, 0, 0, 0.125) !important;
|
|
1490
|
+
}
|
|
1491
|
+
|
|
1492
|
+
.report-my-day .card-body .main-row .details-col .tab-content {
|
|
1493
|
+
padding: 0 !important;
|
|
1494
|
+
}
|
|
1495
|
+
|
|
1496
|
+
.report-my-day .card-body .main-row .details-col .nav-link {
|
|
1497
|
+
border-color: rgba(0, 0, 0, 0.125) rgba(0, 0, 0, 0.125) #ffffff;
|
|
1498
|
+
}
|
|
1499
|
+
|
|
1500
|
+
.report-my-day .card-body .main-row .details-col .tab-content .milestone-note {
|
|
1501
|
+
max-height: 250px !important;
|
|
1502
|
+
overflow-y: auto !important;
|
|
1503
|
+
}
|
|
1504
|
+
|
|
1505
|
+
.report-my-day .card-body .main-row .details-col .tab-content .list-group {
|
|
1506
|
+
border-radius: 0 !important;
|
|
1507
|
+
}
|
|
1508
|
+
|
|
1509
|
+
.report-my-day .card-body .main-row .details-col .tab-content .list-group-item {
|
|
1510
|
+
padding: 0.5rem !important;
|
|
1511
|
+
}
|
|
1512
|
+
|
|
1513
|
+
.report-my-day .card-body .main-row .details-col .tab-content .list-group .list-group-item {
|
|
1514
|
+
border-width: 1px !important;
|
|
1515
|
+
border-top: none !important;
|
|
1516
|
+
border-left: none !important;
|
|
1517
|
+
border-right: none !important;
|
|
1518
|
+
}
|
|
1519
|
+
|
|
1520
|
+
.report-my-day .card-body .main-row .details-col .tab-content .list-group .list-group-item:last-child {
|
|
1521
|
+
border-bottom: none !important;
|
|
1522
|
+
}
|
|
1523
|
+
|
|
1524
|
+
.k-animation-container li {
|
|
1525
|
+
padding-left: 0.75rem !important;
|
|
1526
|
+
padding-right: 0.75rem !important;
|
|
1527
|
+
font-size: 0.8rem !important;
|
|
1528
|
+
}
|
|
1529
|
+
|
|
1530
|
+
.loan-modal-md {
|
|
1531
|
+
max-width: 900px !important;
|
|
1532
|
+
}
|
|
1533
|
+
|
|
1534
|
+
.loan-modal-xl {
|
|
1535
|
+
max-width: 1200px !important;
|
|
1536
|
+
}
|
|
1537
|
+
|
|
1538
|
+
.attachment-modal-md {
|
|
1539
|
+
max-width: 600px !important;
|
|
1540
|
+
}
|
|
1541
|
+
|
|
1542
|
+
.viewer-modal-md {
|
|
1543
|
+
max-width: 1200px !important;
|
|
1544
|
+
}
|
|
1545
|
+
|
|
1546
|
+
.viewer-modal-md .modal-content {
|
|
1547
|
+
height: 100% !important;
|
|
1548
|
+
}
|
|
1549
|
+
|
|
1550
|
+
.list-group.link-attachments {
|
|
1551
|
+
border-radius: 0 !important;
|
|
1552
|
+
border: none !important;
|
|
1553
|
+
}
|
|
1554
|
+
|
|
1555
|
+
.list-group.link-attachments .list-group-item {
|
|
1556
|
+
border-top: none !important;
|
|
1557
|
+
border-left: none !important;
|
|
1558
|
+
border-right: none !important;
|
|
1559
|
+
padding: 0.5rem !important;
|
|
1560
|
+
}
|
|
1561
|
+
|
|
1562
|
+
.list-group.link-attachments .list-group-item:last-child {
|
|
1563
|
+
border-bottom: none !important;
|
|
1564
|
+
}
|
|
1565
|
+
|
|
1566
|
+
.list-group.link-attachments .list-group-item .attachment-name {
|
|
1567
|
+
font-size: 0.9rem !important;
|
|
1568
|
+
font-weight: 500 !important;
|
|
1569
|
+
}
|
|
1570
|
+
|
|
1571
|
+
.react-pdf__Page:first-child {
|
|
1572
|
+
margin-top: 1rem !important;
|
|
1573
|
+
}
|
|
1574
|
+
|
|
1575
|
+
.react-pdf__Page {
|
|
1576
|
+
margin-bottom: 1rem !important;
|
|
1577
|
+
}
|
|
1578
|
+
|
|
1579
|
+
.react-pdf__Page canvas {
|
|
1580
|
+
margin: 0 auto;
|
|
1581
|
+
}
|
|
1582
|
+
|
|
1583
|
+
.react-pdf__message {
|
|
1584
|
+
padding: 0.5rem !important;
|
|
1585
|
+
}
|
|
1586
|
+
|
|
1587
|
+
.input-text {
|
|
1588
|
+
border-radius: 4px;
|
|
1589
|
+
border: 2px solid #6c757d;
|
|
1590
|
+
margin-left: 4px;
|
|
1591
|
+
padding-left: 8px;
|
|
1592
|
+
}
|
|
1593
|
+
|
|
1594
|
+
input[type='search']::-webkit-search-cancel-button {
|
|
1595
|
+
position: relative;
|
|
1596
|
+
right: 4px;
|
|
1597
|
+
-webkit-appearance: none;
|
|
1598
|
+
height: 1em;
|
|
1599
|
+
width: 1em;
|
|
1600
|
+
border-radius: 50em;
|
|
1601
|
+
background: url(https://pro.fontawesome.com/releases/v5.10.0/svgs/solid/times-circle.svg) no-repeat 50% 50%;
|
|
1602
|
+
background-size: contain;
|
|
1603
|
+
opacity: 0;
|
|
1604
|
+
pointer-events: none;
|
|
1605
|
+
}
|
|
1606
|
+
|
|
1607
|
+
input[type='search']:focus::-webkit-search-cancel-button {
|
|
1608
|
+
opacity: 0.7;
|
|
1609
|
+
pointer-events: all;
|
|
1610
|
+
}
|
|
1611
|
+
|
|
1612
|
+
.hide-element {
|
|
1613
|
+
display: none !important;
|
|
1614
|
+
}
|
|
1615
|
+
|
|
1616
|
+
.form-control-plaintext {
|
|
1617
|
+
font-size: 0.8rem !important;
|
|
1618
|
+
outline: none !important;
|
|
1619
|
+
}
|
|
1620
|
+
|
|
1621
|
+
.form-control-plaintext:focus {
|
|
1622
|
+
/*background-color: transparent !important;*/
|
|
1623
|
+
border: solid transparent !important;
|
|
1624
|
+
border-width: 1px 0 !important;
|
|
1625
|
+
border-color: transparent !important;
|
|
1626
|
+
box-shadow: inherit !important;
|
|
1627
|
+
outline: none !important;
|
|
1628
|
+
}
|
|
1629
|
+
|
|
1630
|
+
.threeline-text {
|
|
1631
|
+
/*display: -webkit-box;*/
|
|
1632
|
+
overflow: hidden;
|
|
1633
|
+
-webkit-line-clamp: 3;
|
|
1634
|
+
-webkit-box-orient: vertical;
|
|
1635
|
+
}
|
|
1636
|
+
|
|
1637
|
+
.oneline-text {
|
|
1638
|
+
text-overflow: ellipsis;
|
|
1639
|
+
overflow: hidden;
|
|
1640
|
+
white-space: nowrap;
|
|
1641
|
+
}
|
|
1642
|
+
|
|
1643
|
+
textarea:disabled {
|
|
1644
|
+
outline: none;
|
|
1645
|
+
cursor: default;
|
|
1646
|
+
opacity: 0.65;
|
|
1647
|
+
filter: grayscale(0.1);
|
|
1648
|
+
pointer-events: none;
|
|
1649
|
+
box-shadow: none;
|
|
1650
|
+
}
|
|
1651
|
+
|
|
1652
|
+
.popupGrid {
|
|
1653
|
+
padding: 5px 10px;
|
|
1654
|
+
color: #787878;
|
|
1655
|
+
background-color: white;
|
|
1656
|
+
border: 1px solid rgba(0, 0, 0, 0.05);
|
|
1657
|
+
}
|
|
1658
|
+
|
|
1659
|
+
k-input.k-textarea.form-control-plaintext {
|
|
1660
|
+
border: none !important;
|
|
1661
|
+
outline: none !important;
|
|
1662
|
+
transition: none !important;
|
|
1663
|
+
box-shadow: none !important;
|
|
1664
|
+
background-color: transparent;
|
|
1665
|
+
}
|
|
1666
|
+
|
|
1667
|
+
.k-textarea.form-control-plaintext textarea.k-input-inner {
|
|
1668
|
+
display: block;
|
|
1669
|
+
width: 100%;
|
|
1670
|
+
padding: 0.875rem 0;
|
|
1671
|
+
margin-bottom: 0;
|
|
1672
|
+
font-size: 0.75rem;
|
|
1673
|
+
line-height: 1;
|
|
1674
|
+
color: #212529;
|
|
1675
|
+
background-color: transparent;
|
|
1676
|
+
border: solid transparent;
|
|
1677
|
+
border-width: 1px 0;
|
|
1678
|
+
font-size: 0.8rem !important;
|
|
1679
|
+
padding: 0.25rem 0.5rem !important;
|
|
1680
|
+
}
|
|
1681
|
+
|
|
1682
|
+
.k-textarea.form-control-plaintext textarea.k-input::-webkit-scrollbar {
|
|
1683
|
+
width: 5px !important;
|
|
1684
|
+
height: 5px !important;
|
|
1685
|
+
}
|
|
1686
|
+
|
|
1687
|
+
.k-textarea.form-control-plaintext textarea.k-input::-webkit-scrollbar-thumb {
|
|
1688
|
+
border-radius: 20px;
|
|
1689
|
+
background-color: rgba(0, 0, 0, 0.15);
|
|
1690
|
+
}
|
|
1691
|
+
|
|
1692
|
+
.k-textarea.form-control-plaintext textarea.k-input::-webkit-scrollbar-track {
|
|
1693
|
+
background: hsla(0, 0%, 100%, 0.1);
|
|
1694
|
+
}
|
|
1695
|
+
|
|
1696
|
+
.panel-creditcard {
|
|
1697
|
+
margin: 0 auto;
|
|
1698
|
+
margin-bottom: 50px;
|
|
1699
|
+
text-align: center;
|
|
1700
|
+
}
|
|
1701
|
+
|
|
1702
|
+
.credit-card {
|
|
1703
|
+
font:
|
|
1704
|
+
16px/1.5 'Helvetica Neue',
|
|
1705
|
+
Helvetica,
|
|
1706
|
+
sans-serif;
|
|
1707
|
+
position: absolute;
|
|
1708
|
+
top: 50%;
|
|
1709
|
+
left: 50%;
|
|
1710
|
+
margin-right: -50%;
|
|
1711
|
+
transform: translate(-50%, -50%);
|
|
1712
|
+
display: inline-block;
|
|
1713
|
+
vertical-align: middle;
|
|
1714
|
+
width: 340px;
|
|
1715
|
+
height: 216px;
|
|
1716
|
+
text-align: left;
|
|
1717
|
+
padding: 30px;
|
|
1718
|
+
color: #fff;
|
|
1719
|
+
border-radius: 20px;
|
|
1720
|
+
box-sizing: border-box;
|
|
1721
|
+
background: url(data:image/jpg;base64,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)
|
|
1722
|
+
no-repeat 0 0 #141819;
|
|
1723
|
+
}
|
|
1724
|
+
|
|
1725
|
+
.credit-card-font {
|
|
1726
|
+
font:
|
|
1727
|
+
16px/1.5 'Helvetica Neue',
|
|
1728
|
+
Helvetica,
|
|
1729
|
+
sans-serif;
|
|
1730
|
+
}
|
|
1731
|
+
|
|
1732
|
+
.credit-card_chip {
|
|
1733
|
+
font-size: 24px;
|
|
1734
|
+
padding: 0px 0 0px;
|
|
1735
|
+
text-align: left;
|
|
1736
|
+
}
|
|
1737
|
+
|
|
1738
|
+
.credit-card_number {
|
|
1739
|
+
font-size: 24px;
|
|
1740
|
+
padding: 0px 0 0px;
|
|
1741
|
+
text-align: center;
|
|
1742
|
+
}
|
|
1743
|
+
|
|
1744
|
+
.credit-card_type {
|
|
1745
|
+
font-size: 20px;
|
|
1746
|
+
padding: 0px 0 0;
|
|
1747
|
+
text-align: left;
|
|
1748
|
+
}
|
|
1749
|
+
|
|
1750
|
+
.credit-card_owner {
|
|
1751
|
+
font-size: 18px;
|
|
1752
|
+
padding-top: 14px;
|
|
1753
|
+
text-align: left;
|
|
1754
|
+
}
|
|
1755
|
+
|
|
1756
|
+
.credit-card_logo {
|
|
1757
|
+
position: absolute;
|
|
1758
|
+
right: 20px;
|
|
1759
|
+
bottom: 20px;
|
|
1760
|
+
}
|
|
1761
|
+
|
|
1762
|
+
.credit-card_front {
|
|
1763
|
+
font-size: 16px;
|
|
1764
|
+
font-family: 'Source Code Pro';
|
|
1765
|
+
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.6);
|
|
1766
|
+
}
|
|
1767
|
+
|
|
1768
|
+
.k-combobox {
|
|
1769
|
+
max-height: 32px;
|
|
1770
|
+
}
|
|
1771
|
+
|
|
1772
|
+
.k-combobox input {
|
|
1773
|
+
outline: none !important;
|
|
1774
|
+
margin: 0 !important;
|
|
1775
|
+
max-height: 30px;
|
|
1776
|
+
}
|
|
1777
|
+
|
|
1778
|
+
.k-combobox .k-clear-value {
|
|
1779
|
+
max-height: 28px;
|
|
1780
|
+
}
|
|
1781
|
+
|
|
1782
|
+
input[type='file'] {
|
|
1783
|
+
display: none;
|
|
1784
|
+
}
|
|
1785
|
+
|
|
1786
|
+
.custom-file-upload {
|
|
1787
|
+
border: 1px solid #ccc;
|
|
1788
|
+
display: inline-block;
|
|
1789
|
+
padding: 6px 12px;
|
|
1790
|
+
cursor: pointer;
|
|
1791
|
+
}
|
|
1792
|
+
|
|
1793
|
+
.td-normal-link {
|
|
1794
|
+
text-decoration: none;
|
|
1795
|
+
cursor: pointer;
|
|
1796
|
+
color: #212529;
|
|
1797
|
+
}
|
|
1798
|
+
|
|
1799
|
+
.td-normal-link:hover {
|
|
1800
|
+
color: #212529;
|
|
1801
|
+
}
|
|
1802
|
+
|
|
1803
|
+
.tooltip {
|
|
1804
|
+
z-index: 1151 !important;
|
|
1805
|
+
}
|
|
1806
|
+
|
|
1807
|
+
.pdfviewOnline {
|
|
1808
|
+
margin-bottom: 0 !important;
|
|
1809
|
+
}
|
|
1810
|
+
|
|
1811
|
+
.pdfviewOnline:first-child {
|
|
1812
|
+
margin-top: 0 !important;
|
|
1813
|
+
}
|
|
1814
|
+
|
|
1815
|
+
.carousel-indicators .active {
|
|
1816
|
+
opacity: 1;
|
|
1817
|
+
}
|
|
1818
|
+
|
|
1819
|
+
.carousel-indicators [data-bs-target] {
|
|
1820
|
+
box-sizing: content-box;
|
|
1821
|
+
flex: 0 1 auto;
|
|
1822
|
+
width: 30px;
|
|
1823
|
+
height: 3px;
|
|
1824
|
+
padding: 0;
|
|
1825
|
+
margin-right: 3px;
|
|
1826
|
+
margin-left: 3px;
|
|
1827
|
+
text-indent: -999px;
|
|
1828
|
+
cursor: pointer;
|
|
1829
|
+
background-color: #fff;
|
|
1830
|
+
background-clip: padding-box;
|
|
1831
|
+
border: 0;
|
|
1832
|
+
border-top: 10px solid transparent;
|
|
1833
|
+
border-bottom: 10px solid transparent;
|
|
1834
|
+
opacity: 0.5;
|
|
1835
|
+
transition: opacity 0.6s ease;
|
|
1836
|
+
}
|
|
1837
|
+
|
|
1838
|
+
.carousel-item .react-transform-wrapper,
|
|
1839
|
+
.carousel-item .react-transform-component,
|
|
1840
|
+
.col-check-docs-right .react-transform-wrapper,
|
|
1841
|
+
.col-check-docs-right .react-transform-component {
|
|
1842
|
+
display: flex;
|
|
1843
|
+
justify-content: center;
|
|
1844
|
+
width: 100% !important;
|
|
1845
|
+
}
|
|
1846
|
+
|
|
1847
|
+
.col-check-group-left,
|
|
1848
|
+
.col-check-group-right {
|
|
1849
|
+
height: calc(100vh - 279px) !important;
|
|
1850
|
+
}
|
|
1851
|
+
|
|
1852
|
+
.carousel-control-prev > i,
|
|
1853
|
+
.carousel-control-next > i,
|
|
1854
|
+
.carousel-control-prev > span,
|
|
1855
|
+
.carousel-control-next > span {
|
|
1856
|
+
color: #888 !important;
|
|
1857
|
+
font-size: 28px !important;
|
|
1858
|
+
}
|
|
1859
|
+
|
|
1860
|
+
.carousel-indicators button {
|
|
1861
|
+
border: 1px solid #aaa !important;
|
|
1862
|
+
background-color: #bbb !important;
|
|
1863
|
+
}
|
|
1864
|
+
|
|
1865
|
+
.carousel-indicators button.active {
|
|
1866
|
+
border: 1px solid #888 !important;
|
|
1867
|
+
background-color: #999 !important;
|
|
1868
|
+
}
|
|
1869
|
+
|
|
1870
|
+
@keyframes twinkle {
|
|
1871
|
+
50% {
|
|
1872
|
+
opacity: 0.6;
|
|
1873
|
+
box-shadow: 0 0 12px #808080;
|
|
1874
|
+
}
|
|
1875
|
+
}
|
|
1876
|
+
|
|
1877
|
+
.btn-twinkle {
|
|
1878
|
+
animation: twinkle 1300ms infinite;
|
|
1879
|
+
}
|
|
1880
|
+
|
|
1881
|
+
.modal-check-docs .carousel-inner {
|
|
1882
|
+
height: 100% !important;
|
|
1883
|
+
}
|
|
1884
|
+
|
|
1885
|
+
.modal-check {
|
|
1886
|
+
overflow-y: auto;
|
|
1887
|
+
}
|
|
1888
|
+
|
|
1889
|
+
.col-check-docs-left {
|
|
1890
|
+
overflow: auto !important;
|
|
1891
|
+
}
|
|
1892
|
+
|
|
1893
|
+
@media (min-width: 992px) {
|
|
1894
|
+
.col-check-docs-left {
|
|
1895
|
+
max-width: 430px !important;
|
|
1896
|
+
}
|
|
1897
|
+
|
|
1898
|
+
.row-check-docs {
|
|
1899
|
+
height: 100% !important;
|
|
1900
|
+
}
|
|
1901
|
+
|
|
1902
|
+
.col-check-docs-left,
|
|
1903
|
+
.col-check-docs-right {
|
|
1904
|
+
height: calc(100vh - 181px) !important;
|
|
1905
|
+
}
|
|
1906
|
+
}
|
|
1907
|
+
|
|
1908
|
+
.containerStyle {
|
|
1909
|
+
margin-bottom: 0.25rem;
|
|
1910
|
+
border-radius: 4px;
|
|
1911
|
+
border: 1px solid #ccc;
|
|
1912
|
+
padding-top: 0.75rem;
|
|
1913
|
+
}
|
|
1914
|
+
|
|
1915
|
+
.headerStyle {
|
|
1916
|
+
background-color: #f3f4fa;
|
|
1917
|
+
display: inline-block;
|
|
1918
|
+
position: relative;
|
|
1919
|
+
font-weight: bold;
|
|
1920
|
+
font-size: 0.9rem;
|
|
1921
|
+
padding: 2px;
|
|
1922
|
+
bottom: -10px;
|
|
1923
|
+
left: 4px;
|
|
1924
|
+
}
|
|
1925
|
+
|
|
1926
|
+
.modalStyle {
|
|
1927
|
+
max-width: 800px !important;
|
|
1928
|
+
font-size: 0.8rem;
|
|
1929
|
+
}
|
|
1930
|
+
|
|
1931
|
+
.labelStyle {
|
|
1932
|
+
font-weight: bold;
|
|
1933
|
+
font-size: 0.8rem;
|
|
1934
|
+
margin: 0;
|
|
1935
|
+
}
|
|
1936
|
+
|
|
1937
|
+
.k-panelbar {
|
|
1938
|
+
font-size: 0.8rem;
|
|
1939
|
+
}
|
|
1940
|
+
|
|
1941
|
+
.k-panelbar > .k-item > .ocrcheck-header,
|
|
1942
|
+
.k-panelbar > .k-panelbar-header > .ocrcheck-header {
|
|
1943
|
+
color: #fff;
|
|
1944
|
+
padding: 0.4rem 0.5rem;
|
|
1945
|
+
background-color: #990000;
|
|
1946
|
+
}
|
|
1947
|
+
|
|
1948
|
+
.k-panelbar > .k-item > .ocrcheck-header .k-icon,
|
|
1949
|
+
.k-panelbar > .k-item > .ocrcheck-header .k-panelbar-item-icon,
|
|
1950
|
+
.k-panelbar > .k-panelbar-header > .ocrcheck-header .k-icon,
|
|
1951
|
+
.k-panelbar > .k-panelbar-header > .ocrcheck-header .k-panelbar-item-icon {
|
|
1952
|
+
color: #fff;
|
|
1953
|
+
}
|
|
1954
|
+
|
|
1955
|
+
.k-panelbar > .k-item > .ocrcheck-header:hover,
|
|
1956
|
+
.k-panelbar > .k-panelbar-header > .ocrcheck-header:hover {
|
|
1957
|
+
background-color: #990000;
|
|
1958
|
+
}
|
|
1959
|
+
|
|
1960
|
+
.k-panelbar > .k-item > .ocrcheck-header.k-state-selected,
|
|
1961
|
+
.k-panelbar > .k-panelbar-header > .ocrcheck-header.k-state-selected {
|
|
1962
|
+
color: #fff;
|
|
1963
|
+
background-color: #990000 !important;
|
|
1964
|
+
}
|
|
1965
|
+
|
|
1966
|
+
.k-panelbar > .k-item > .ocrcheck-payed-header,
|
|
1967
|
+
.k-panelbar > .k-panelbar-header > .ocrcheck-payed-header,
|
|
1968
|
+
.k-panelbar > .k-item > .ocrcheck-payed-header:hover,
|
|
1969
|
+
.k-panelbar > .k-panelbar-header > .ocrcheck-payed-header:hover,
|
|
1970
|
+
.k-panelbar > .k-item > .ocrcheck-payed-header.k-state-selected,
|
|
1971
|
+
.k-panelbar > .k-panelbar-header > .ocrcheck-payed-header.k-state-selected {
|
|
1972
|
+
background-color: #288e40 !important;
|
|
1973
|
+
}
|
|
1974
|
+
|
|
1975
|
+
.k-panelbar > .k-item > .ocrcheck-rejected-header,
|
|
1976
|
+
.k-panelbar > .k-panelbar-header > .ocrcheck-rejected-header,
|
|
1977
|
+
.k-panelbar > .k-item > .ocrcheck-rejected-header:hover,
|
|
1978
|
+
.k-panelbar > .k-panelbar-header > .ocrcheck-rejected-header:hover,
|
|
1979
|
+
.k-panelbar > .k-item > .ocrcheck-rejected-header.k-state-selected,
|
|
1980
|
+
.k-panelbar > .k-panelbar-header > .ocrcheck-rejected-header.k-state-selected {
|
|
1981
|
+
background-color: #cd9b1e !important;
|
|
1982
|
+
}
|
|
1983
|
+
|
|
1984
|
+
.list-group-item.active:hover {
|
|
1985
|
+
background-color: #03a9f3 !important;
|
|
1986
|
+
}
|
|
1987
|
+
|
|
1988
|
+
.btn-disabled {
|
|
1989
|
+
cursor: default !important;
|
|
1990
|
+
opacity: 0.6;
|
|
1991
|
+
}
|
|
1992
|
+
|
|
1993
|
+
.btn-disabled:hover {
|
|
1994
|
+
background-color: #990000 !important;
|
|
1995
|
+
}
|
|
1996
|
+
|
|
1997
|
+
.group-image.group-image-failed {
|
|
1998
|
+
cursor: default !important;
|
|
1999
|
+
}
|
|
2000
|
+
|
|
2001
|
+
.group-image .image-wrapper {
|
|
2002
|
+
display: flex !important;
|
|
2003
|
+
align-items: center !important;
|
|
2004
|
+
justify-content: center !important;
|
|
2005
|
+
background-color: #dfdfdf;
|
|
2006
|
+
padding: 0.25rem !important;
|
|
2007
|
+
height: calc(200px + 0.5rem);
|
|
2008
|
+
}
|
|
2009
|
+
|
|
2010
|
+
.group-image .image-wrapper .image-file,
|
|
2011
|
+
.group-slide .image-wrapper .image-file {
|
|
2012
|
+
cursor: pointer !important;
|
|
2013
|
+
}
|
|
2014
|
+
|
|
2015
|
+
.group-image .image-wrapper .image-file {
|
|
2016
|
+
max-width: calc(100% - 0.5rem);
|
|
2017
|
+
max-height: 200px;
|
|
2018
|
+
height: auto;
|
|
2019
|
+
padding: 0.25rem;
|
|
2020
|
+
}
|
|
2021
|
+
|
|
2022
|
+
.group-image-text {
|
|
2023
|
+
overflow-x: hidden !important;
|
|
2024
|
+
white-space: nowrap !important;
|
|
2025
|
+
text-overflow: ellipsis !important;
|
|
2026
|
+
text-align: center !important;
|
|
2027
|
+
}
|
|
2028
|
+
|
|
2029
|
+
.group-image-text.group-check {
|
|
2030
|
+
color: #fff !important;
|
|
2031
|
+
background-color: #17a2b8 !important;
|
|
2032
|
+
}
|
|
2033
|
+
|
|
2034
|
+
.group-image-text.group-doc {
|
|
2035
|
+
color: #343a40 !important;
|
|
2036
|
+
background-color: #ffc107 !important;
|
|
2037
|
+
}
|
|
2038
|
+
|
|
2039
|
+
.group-image-text.group-fail {
|
|
2040
|
+
color: #fff !important;
|
|
2041
|
+
background-color: #dc3545 !important;
|
|
2042
|
+
}
|
|
2043
|
+
|
|
2044
|
+
.badge-group {
|
|
2045
|
+
font-size: 0.7rem !important;
|
|
2046
|
+
color: #ffffff;
|
|
2047
|
+
top: -5px;
|
|
2048
|
+
right: -5px;
|
|
2049
|
+
z-index: 9 !important;
|
|
2050
|
+
font-size: 0.85rem !important;
|
|
2051
|
+
}
|
|
2052
|
+
|
|
2053
|
+
.badge-group.badge-check {
|
|
2054
|
+
color: #fff !important;
|
|
2055
|
+
border: 1px solid #17a2b8 !important;
|
|
2056
|
+
background-color: #17a2b8 !important;
|
|
2057
|
+
}
|
|
2058
|
+
|
|
2059
|
+
.badge-group.badge-doc {
|
|
2060
|
+
color: #343a40 !important;
|
|
2061
|
+
border: 1px solid #ffc107 !important;
|
|
2062
|
+
background-color: #ffc107 !important;
|
|
2063
|
+
}
|
|
2064
|
+
|
|
2065
|
+
.badge-group.badge-fail {
|
|
2066
|
+
color: #fff !important;
|
|
2067
|
+
border: 1px solid #dc3545 !important;
|
|
2068
|
+
background-color: #dc3545 !important;
|
|
2069
|
+
}
|
|
2070
|
+
|
|
2071
|
+
.badge-confidence {
|
|
2072
|
+
top: 28px !important;
|
|
2073
|
+
}
|
|
2074
|
+
|
|
2075
|
+
.badge-convert {
|
|
2076
|
+
top: 61px !important;
|
|
2077
|
+
cursor: pointer !important;
|
|
2078
|
+
}
|
|
2079
|
+
|
|
2080
|
+
.badge-returned {
|
|
2081
|
+
top: 91px !important;
|
|
2082
|
+
cursor: pointer !important;
|
|
2083
|
+
}
|
|
2084
|
+
|
|
2085
|
+
.group-image-icon {
|
|
2086
|
+
line-height: 1 !important;
|
|
2087
|
+
font-size: 1.2rem !important;
|
|
2088
|
+
cursor: pointer !important;
|
|
2089
|
+
color: #aaa !important;
|
|
2090
|
+
}
|
|
2091
|
+
|
|
2092
|
+
.group-image-icon.active {
|
|
2093
|
+
color: #343a40 !important;
|
|
2094
|
+
border-bottom: 2px solid #343a40 !important;
|
|
2095
|
+
}
|
|
2096
|
+
|
|
2097
|
+
.modal-group-items {
|
|
2098
|
+
font-size: 0.8rem;
|
|
2099
|
+
}
|
|
2100
|
+
|
|
2101
|
+
.modal-group-items .modal-body .col-right {
|
|
2102
|
+
height: 100% !important;
|
|
2103
|
+
}
|
|
2104
|
+
|
|
2105
|
+
.modal-group-items .modal-body .col-right .group-image-wrapper {
|
|
2106
|
+
height: calc(100% - 66px) !important;
|
|
2107
|
+
overflow-x: hidden !important;
|
|
2108
|
+
overflow-y: auto !important;
|
|
2109
|
+
}
|
|
2110
|
+
|
|
2111
|
+
.modal-group-items .modal-body .col-right .group-image-wrapper .row {
|
|
2112
|
+
position: relative !important;
|
|
2113
|
+
bottom: -1rem !important;
|
|
2114
|
+
top: 0.3rem !important;
|
|
2115
|
+
}
|
|
2116
|
+
|
|
2117
|
+
.modal-group-item {
|
|
2118
|
+
font-size: 0.8rem;
|
|
2119
|
+
}
|
|
2120
|
+
|
|
2121
|
+
.modal-group-item .modal-content {
|
|
2122
|
+
width: calc(100% - 40px);
|
|
2123
|
+
}
|
|
2124
|
+
|
|
2125
|
+
.modal-group-items .modal-body .col-left,
|
|
2126
|
+
.modal-group-item .modal-body .col-left {
|
|
2127
|
+
border-right: none !important;
|
|
2128
|
+
border-bottom: 1px solid #dee2e6 !important;
|
|
2129
|
+
}
|
|
2130
|
+
|
|
2131
|
+
@media (min-width: 768px) {
|
|
2132
|
+
.modal-group-items {
|
|
2133
|
+
width: calc(100vw - 100px) !important;
|
|
2134
|
+
max-width: calc(100vw - 100px) !important;
|
|
2135
|
+
}
|
|
2136
|
+
|
|
2137
|
+
.modal-group-item {
|
|
2138
|
+
width: calc(100vw - 200px) !important;
|
|
2139
|
+
max-width: calc(100vw - 200px) !important;
|
|
2140
|
+
}
|
|
2141
|
+
|
|
2142
|
+
.modal-group-items .modal-body {
|
|
2143
|
+
height: calc(100vh - 180px) !important;
|
|
2144
|
+
max-height: calc(100vh - 180px) !important;
|
|
2145
|
+
}
|
|
2146
|
+
|
|
2147
|
+
.modal-group-item .modal-body {
|
|
2148
|
+
height: calc(100vh - 280px) !important;
|
|
2149
|
+
max-height: calc(100vh - 280px) !important;
|
|
2150
|
+
}
|
|
2151
|
+
|
|
2152
|
+
.modal-group-items .modal-body .col-left,
|
|
2153
|
+
.modal-group-item .modal-body .col-left {
|
|
2154
|
+
border-bottom: none !important;
|
|
2155
|
+
border-right: 1px solid #dee2e6 !important;
|
|
2156
|
+
}
|
|
2157
|
+
}
|
|
2158
|
+
|
|
2159
|
+
@media (min-width: 576px) {
|
|
2160
|
+
.modal-group-items,
|
|
2161
|
+
.modal-group-item {
|
|
2162
|
+
width: calc(100vw - 50px) !important;
|
|
2163
|
+
max-width: calc(100vw - 50px) !important;
|
|
2164
|
+
}
|
|
2165
|
+
}
|
|
2166
|
+
|
|
2167
|
+
.group-slide {
|
|
2168
|
+
height: calc(100% - 28px) !important;
|
|
2169
|
+
}
|
|
2170
|
+
|
|
2171
|
+
.group-slide .carousel {
|
|
2172
|
+
background-color: #dfdfdf;
|
|
2173
|
+
}
|
|
2174
|
+
|
|
2175
|
+
.group-slide .carousel,
|
|
2176
|
+
.group-slide .carousel .carousel-inner,
|
|
2177
|
+
.group-slide .carousel .carousel-inner .carousel-item {
|
|
2178
|
+
height: 100% !important;
|
|
2179
|
+
}
|
|
2180
|
+
|
|
2181
|
+
.group-slide .carousel .carousel-indicators {
|
|
2182
|
+
padding-top: 0.5rem !important;
|
|
2183
|
+
padding-bottom: 0.5rem !important;
|
|
2184
|
+
}
|
|
2185
|
+
|
|
2186
|
+
.group-slide .carousel .carousel-inner .carousel-item {
|
|
2187
|
+
padding-top: 1rem !important;
|
|
2188
|
+
}
|
|
2189
|
+
|
|
2190
|
+
.group-slide .carousel .carousel-inner .carousel-item .image-wrapper {
|
|
2191
|
+
display: flex !important;
|
|
2192
|
+
justify-content: center !important;
|
|
2193
|
+
align-items: center !important;
|
|
2194
|
+
padding-top: 0.25rem !important;
|
|
2195
|
+
padding-bottom: 1.75rem !important;
|
|
2196
|
+
height: 100% !important;
|
|
2197
|
+
}
|
|
2198
|
+
|
|
2199
|
+
.group-slide .carousel .carousel-inner .carousel-item .image-wrapper.group-image-failed {
|
|
2200
|
+
cursor: default !important;
|
|
2201
|
+
}
|
|
2202
|
+
|
|
2203
|
+
.group-slide .carousel .carousel-inner .carousel-item .image-wrapper .image-file {
|
|
2204
|
+
max-width: calc(100% - 2.5rem);
|
|
2205
|
+
max-height: 100%;
|
|
2206
|
+
height: auto;
|
|
2207
|
+
}
|
|
2208
|
+
|
|
2209
|
+
.group-slide .badge-group {
|
|
2210
|
+
top: 8px !important;
|
|
2211
|
+
}
|
|
2212
|
+
|
|
2213
|
+
.group-slide .badge-confidence {
|
|
2214
|
+
top: 41px !important;
|
|
2215
|
+
}
|
|
2216
|
+
|
|
2217
|
+
.group-slide .badge-convert {
|
|
2218
|
+
top: 74px !important;
|
|
2219
|
+
}
|
|
2220
|
+
|
|
2221
|
+
.modal-check,
|
|
2222
|
+
.modal-check-docs {
|
|
2223
|
+
font-size: 0.8rem;
|
|
2224
|
+
}
|
|
2225
|
+
|
|
2226
|
+
.modal-check-docs .modal-content {
|
|
2227
|
+
width: calc(100% - 40px);
|
|
2228
|
+
}
|
|
2229
|
+
|
|
2230
|
+
.modal-check .modal-body .col-left,
|
|
2231
|
+
.modal-check .modal-body .col-right {
|
|
2232
|
+
max-height: 100% !important;
|
|
2233
|
+
overflow-y: auto !important;
|
|
2234
|
+
}
|
|
2235
|
+
|
|
2236
|
+
.modal-check .modal-body .col-right .check-image-wrapper-docs {
|
|
2237
|
+
overflow: auto !important;
|
|
2238
|
+
}
|
|
2239
|
+
|
|
2240
|
+
.modal-check .modal-body .col-left {
|
|
2241
|
+
border-right: none !important;
|
|
2242
|
+
border-bottom: 1px solid #dee2e6 !important;
|
|
2243
|
+
}
|
|
2244
|
+
|
|
2245
|
+
.modal-check .modal-body .col-right .react-transform-component {
|
|
2246
|
+
width: 100%;
|
|
2247
|
+
justify-content: center !important;
|
|
2248
|
+
}
|
|
2249
|
+
|
|
2250
|
+
.modal-check-docs .modal-body .check-mini-docs {
|
|
2251
|
+
height: calc(60px + 2rem);
|
|
2252
|
+
position: fixed;
|
|
2253
|
+
bottom: 92px;
|
|
2254
|
+
}
|
|
2255
|
+
|
|
2256
|
+
.modal-check .k-panelbar {
|
|
2257
|
+
margin-bottom: 0.5rem !important;
|
|
2258
|
+
}
|
|
2259
|
+
|
|
2260
|
+
.check-image-wrapper {
|
|
2261
|
+
height: calc(100% - 1rem) !important;
|
|
2262
|
+
}
|
|
2263
|
+
|
|
2264
|
+
.check-image-wrapper-docs {
|
|
2265
|
+
height: calc(100% - 52px - 2.5rem) !important;
|
|
2266
|
+
}
|
|
2267
|
+
|
|
2268
|
+
.check-image-file-wrapper {
|
|
2269
|
+
display: flex !important;
|
|
2270
|
+
align-items: center !important;
|
|
2271
|
+
justify-content: center !important;
|
|
2272
|
+
height: calc(100% - 40px) !important;
|
|
2273
|
+
overflow: hidden !important;
|
|
2274
|
+
padding: 1rem !important;
|
|
2275
|
+
}
|
|
2276
|
+
|
|
2277
|
+
.check-image-file-wrapper .react-transform-wrapper,
|
|
2278
|
+
.check-image-file-wrapper .react-transform-wrapper .react-transform-component {
|
|
2279
|
+
height: 100% !important;
|
|
2280
|
+
}
|
|
2281
|
+
|
|
2282
|
+
.check-image-file-wrapper .react-transform-wrapper .react-transform-component img {
|
|
2283
|
+
max-height: 100% !important;
|
|
2284
|
+
max-width: 100% !important;
|
|
2285
|
+
height: auto;
|
|
2286
|
+
}
|
|
2287
|
+
|
|
2288
|
+
.check-image-file-wrapper,
|
|
2289
|
+
.check-image-file-wrapper .react-transform-wrapper,
|
|
2290
|
+
.check-image-file-wrapper .react-transform-wrapper .react-transform-component {
|
|
2291
|
+
width: 100% !important;
|
|
2292
|
+
}
|
|
2293
|
+
|
|
2294
|
+
.check-image-file-wrapper .react-transform-wrapper .react-transform-component {
|
|
2295
|
+
justify-content: center;
|
|
2296
|
+
}
|
|
2297
|
+
|
|
2298
|
+
@media (min-width: 768px) {
|
|
2299
|
+
.modal-check {
|
|
2300
|
+
width: calc(100vw - 100px) !important;
|
|
2301
|
+
max-width: calc(100vw - 100px) !important;
|
|
2302
|
+
}
|
|
2303
|
+
|
|
2304
|
+
.modal-check-docs {
|
|
2305
|
+
width: calc(100vw - 200px) !important;
|
|
2306
|
+
max-width: calc(100vw - 200px) !important;
|
|
2307
|
+
}
|
|
2308
|
+
|
|
2309
|
+
.modal-check .modal-body {
|
|
2310
|
+
height: calc(100vh - 180px) !important;
|
|
2311
|
+
max-height: calc(100vh - 180px) !important;
|
|
2312
|
+
}
|
|
2313
|
+
|
|
2314
|
+
.modal-check-docs .modal-body {
|
|
2315
|
+
height: calc(100vh - 280px) !important;
|
|
2316
|
+
max-height: calc(100vh - 280px) !important;
|
|
2317
|
+
}
|
|
2318
|
+
|
|
2319
|
+
.modal-check .modal-body .col-left,
|
|
2320
|
+
.modal-check-docs .modal-body .col-left {
|
|
2321
|
+
border-right: none !important;
|
|
2322
|
+
border-bottom: 1px solid #dee2e6 !important;
|
|
2323
|
+
}
|
|
2324
|
+
|
|
2325
|
+
.modal-check-docs .modal-body .col-left {
|
|
2326
|
+
padding-bottom: 1rem !important;
|
|
2327
|
+
}
|
|
2328
|
+
|
|
2329
|
+
.modal-check-docs .modal-body .col-right {
|
|
2330
|
+
height: 100% !important;
|
|
2331
|
+
}
|
|
2332
|
+
|
|
2333
|
+
.modal-check .k-panelbar {
|
|
2334
|
+
margin-bottom: 0 !important;
|
|
2335
|
+
}
|
|
2336
|
+
}
|
|
2337
|
+
|
|
2338
|
+
@media (min-width: 992px) {
|
|
2339
|
+
.modal-check .modal-body .col-left,
|
|
2340
|
+
.modal-check-docs .modal-body .col-left {
|
|
2341
|
+
border-bottom: none !important;
|
|
2342
|
+
border-right: 1px solid #dee2e6 !important;
|
|
2343
|
+
}
|
|
2344
|
+
|
|
2345
|
+
.modal-check .k-panelbar {
|
|
2346
|
+
margin-bottom: 0.5rem !important;
|
|
2347
|
+
}
|
|
2348
|
+
}
|
|
2349
|
+
|
|
2350
|
+
@media (min-width: 576px) {
|
|
2351
|
+
.modal-check,
|
|
2352
|
+
.modal-check-docs {
|
|
2353
|
+
width: calc(100vw - 50px) !important;
|
|
2354
|
+
max-width: calc(100vw - 50px) !important;
|
|
2355
|
+
}
|
|
2356
|
+
}
|
|
2357
|
+
|
|
2358
|
+
.check-editor-page .col-left {
|
|
2359
|
+
border-right: none !important;
|
|
2360
|
+
border-bottom: 1px solid #dee2e6 !important;
|
|
2361
|
+
}
|
|
2362
|
+
|
|
2363
|
+
.check-editor-page .k-animation-container {
|
|
2364
|
+
z-index: 0 !important;
|
|
2365
|
+
}
|
|
2366
|
+
|
|
2367
|
+
.check-editor-page .check-image-file-wrapper {
|
|
2368
|
+
max-height: calc(100vh - 380px);
|
|
2369
|
+
}
|
|
2370
|
+
|
|
2371
|
+
.check-editor-page .col-loans {
|
|
2372
|
+
margin-bottom: 0.5rem !important;
|
|
2373
|
+
}
|
|
2374
|
+
|
|
2375
|
+
.check-editor-page .col-left {
|
|
2376
|
+
padding-bottom: 1rem !important;
|
|
2377
|
+
}
|
|
2378
|
+
|
|
2379
|
+
@media (min-width: 768px) {
|
|
2380
|
+
.check-editor-page .col-left {
|
|
2381
|
+
border-right: none !important;
|
|
2382
|
+
border-bottom: 1px solid #dee2e6 !important;
|
|
2383
|
+
}
|
|
2384
|
+
|
|
2385
|
+
.check-editor-page .col-loans {
|
|
2386
|
+
margin-bottom: 0 !important;
|
|
2387
|
+
}
|
|
2388
|
+
}
|
|
2389
|
+
|
|
2390
|
+
@media (min-width: 992px) {
|
|
2391
|
+
.check-editor-page .col-left {
|
|
2392
|
+
padding-bottom: 1rem !important;
|
|
2393
|
+
}
|
|
2394
|
+
|
|
2395
|
+
.check-editor-page .col-loans {
|
|
2396
|
+
margin-bottom: 0.5rem !important;
|
|
2397
|
+
}
|
|
2398
|
+
|
|
2399
|
+
.check-editor-page .col-left {
|
|
2400
|
+
border-bottom: none !important;
|
|
2401
|
+
border-right: 1px solid #dee2e6 !important;
|
|
2402
|
+
}
|
|
2403
|
+
}
|
|
2404
|
+
|
|
2405
|
+
.check-mini-docs {
|
|
2406
|
+
max-width: 100% !important;
|
|
2407
|
+
overflow: auto !important;
|
|
2408
|
+
margin: 1rem 0 !important;
|
|
2409
|
+
}
|
|
2410
|
+
|
|
2411
|
+
.row-docs {
|
|
2412
|
+
display: inline-flex;
|
|
2413
|
+
margin-right: -10px;
|
|
2414
|
+
margin-left: -10px;
|
|
2415
|
+
}
|
|
2416
|
+
|
|
2417
|
+
.col-docs {
|
|
2418
|
+
width: 100px;
|
|
2419
|
+
padding-right: 10px;
|
|
2420
|
+
padding-left: 10px;
|
|
2421
|
+
}
|
|
2422
|
+
|
|
2423
|
+
.doc-image .image-wrapper {
|
|
2424
|
+
display: flex !important;
|
|
2425
|
+
align-items: center !important;
|
|
2426
|
+
justify-content: center !important;
|
|
2427
|
+
background-color: #dfdfdf;
|
|
2428
|
+
padding: 0.25rem !important;
|
|
2429
|
+
height: calc(50px + 0.5rem);
|
|
2430
|
+
}
|
|
2431
|
+
|
|
2432
|
+
.doc-image .image-wrapper .image-file {
|
|
2433
|
+
max-width: calc(100% - 0.5rem);
|
|
2434
|
+
max-height: 50px;
|
|
2435
|
+
height: auto;
|
|
2436
|
+
padding: 0.25rem;
|
|
2437
|
+
}
|
|
2438
|
+
|
|
2439
|
+
.header-box {
|
|
2440
|
+
background-color: #990000;
|
|
2441
|
+
padding: 0.4rem 0.5rem;
|
|
2442
|
+
font-size: 0.8rem;
|
|
2443
|
+
font-weight: bold;
|
|
2444
|
+
color: #fff;
|
|
2445
|
+
}
|
|
2446
|
+
|
|
2447
|
+
.content-box {
|
|
2448
|
+
margin-bottom: 0.25rem;
|
|
2449
|
+
border: 1px solid #ccc;
|
|
2450
|
+
border-top: none;
|
|
2451
|
+
padding-top: 0.75rem;
|
|
2452
|
+
font-size: 0.8rem;
|
|
2453
|
+
}
|
|
2454
|
+
|
|
2455
|
+
.content-box input {
|
|
2456
|
+
font-size: 0.8rem !important;
|
|
2457
|
+
}
|
|
2458
|
+
|
|
2459
|
+
.disabled {
|
|
2460
|
+
opacity: 0.5 !important;
|
|
2461
|
+
cursor: default !important;
|
|
2462
|
+
}
|
|
2463
|
+
|
|
2464
|
+
.custom-form .label,
|
|
2465
|
+
.custom-form input {
|
|
2466
|
+
font-size: 0.9rem !important;
|
|
2467
|
+
}
|
|
2468
|
+
|
|
2469
|
+
.my-day-col {
|
|
2470
|
+
overflow: hidden;
|
|
2471
|
+
white-space: nowrap;
|
|
2472
|
+
text-overflow: ellipsis;
|
|
2473
|
+
}
|
|
2474
|
+
|
|
2475
|
+
.check-group-page {
|
|
2476
|
+
font-size: 0.8rem !important;
|
|
2477
|
+
}
|
|
2478
|
+
|
|
2479
|
+
.check-loan-charges {
|
|
2480
|
+
max-height: 210px;
|
|
2481
|
+
overflow-y: auto;
|
|
2482
|
+
overflow-x: hidden;
|
|
2483
|
+
}
|
|
2484
|
+
|
|
2485
|
+
.check-loan-charges .charge-check {
|
|
2486
|
+
overflow: hidden;
|
|
2487
|
+
white-space: nowrap;
|
|
2488
|
+
text-overflow: ellipsis;
|
|
2489
|
+
}
|
|
2490
|
+
|
|
2491
|
+
.k-numerictextbox.form-control-sm input {
|
|
2492
|
+
height: 1.875rem !important;
|
|
2493
|
+
padding-top: 0 !important;
|
|
2494
|
+
}
|
|
2495
|
+
|
|
2496
|
+
.RoutingNumberBox:focus {
|
|
2497
|
+
box-shadow: 0 0 0 0.25rem rgba(255, 0, 0, 0.8);
|
|
2498
|
+
}
|
|
2499
|
+
|
|
2500
|
+
.BankAccountNumberBox:focus {
|
|
2501
|
+
box-shadow: 0 0 0 0.25rem rgba(255, 165, 0, 0.8);
|
|
2502
|
+
}
|
|
2503
|
+
|
|
2504
|
+
.CheckNumberBox:focus {
|
|
2505
|
+
box-shadow: 0 0 0 0.25rem rgba(148, 0, 211, 0.8);
|
|
2506
|
+
}
|
|
2507
|
+
|
|
2508
|
+
.AmountBox span:first-child > input:focus {
|
|
2509
|
+
box-shadow: 0 0 0 0.25rem rgba(0, 128, 0, 1);
|
|
2510
|
+
}
|
|
2511
|
+
|
|
2512
|
+
.SignatureBox:focus {
|
|
2513
|
+
box-shadow: 0 0 0 0.25rem rgba(0, 0, 139, 0.8);
|
|
2514
|
+
}
|
|
2515
|
+
|
|
2516
|
+
.ach-log span:first-child > textarea {
|
|
2517
|
+
padding: 0.25rem 0.25rem !important;
|
|
2518
|
+
line-height: 1.2 !important;
|
|
2519
|
+
height: 175px !important;
|
|
2520
|
+
}
|
|
2521
|
+
|
|
2522
|
+
.vcheck-log span:first-child > textarea {
|
|
2523
|
+
padding: 0.25rem 0.25rem !important;
|
|
2524
|
+
line-height: 1.2 !important;
|
|
2525
|
+
height: 100px !important;
|
|
2526
|
+
}
|
|
2527
|
+
|
|
2528
|
+
.check-mini-docs .row-docs .col-docs .doc-image {
|
|
2529
|
+
cursor: pointer;
|
|
2530
|
+
}
|
|
2531
|
+
|
|
2532
|
+
.chargeGridHeader .k-grid-header {
|
|
2533
|
+
display: none;
|
|
2534
|
+
}
|
|
2535
|
+
|
|
2536
|
+
.is-invalid span {
|
|
2537
|
+
border-color: #ff0017 !important;
|
|
2538
|
+
}
|
|
2539
|
+
|
|
2540
|
+
.group-items-page {
|
|
2541
|
+
height: 100vh !important;
|
|
2542
|
+
max-height: 100vh !important;
|
|
2543
|
+
}
|
|
2544
|
+
|
|
2545
|
+
.group-items-page .card-body .col-right {
|
|
2546
|
+
height: 100% !important;
|
|
2547
|
+
}
|
|
2548
|
+
|
|
2549
|
+
.group-items-page .card-body .col-right .group-image-wrapper {
|
|
2550
|
+
height: calc(100% - 66px) !important;
|
|
2551
|
+
overflow-x: hidden !important;
|
|
2552
|
+
overflow-y: auto !important;
|
|
2553
|
+
}
|
|
2554
|
+
|
|
2555
|
+
.group-items-page .card-body .col-right .group-image-wrapper .row {
|
|
2556
|
+
position: relative !important;
|
|
2557
|
+
bottom: -1rem !important;
|
|
2558
|
+
top: 0.3rem !important;
|
|
2559
|
+
}
|
|
2560
|
+
|
|
2561
|
+
.draggable-modal {
|
|
2562
|
+
transition:
|
|
2563
|
+
transform 0.1s ease,
|
|
2564
|
+
-webkit-transform 0.1s ease,
|
|
2565
|
+
-moz-transform 0.1s ease,
|
|
2566
|
+
-o-transform 0.1s ease !important;
|
|
2567
|
+
}
|
|
2568
|
+
|
|
2569
|
+
.draggable-modal .modal-header:hover {
|
|
2570
|
+
cursor: grab;
|
|
2571
|
+
}
|
|
2572
|
+
|
|
2573
|
+
.draggable-modal .modal-header:active {
|
|
2574
|
+
cursor: grabbing;
|
|
2575
|
+
}
|
|
2576
|
+
|
|
2577
|
+
.form-label {
|
|
2578
|
+
font-size: 0.875rem;
|
|
2579
|
+
vertical-align: top;
|
|
2580
|
+
margin-bottom: 0;
|
|
2581
|
+
line-height: 1;
|
|
2582
|
+
}
|
|
2583
|
+
|
|
2584
|
+
.alert .btn-xs > i {
|
|
2585
|
+
font-size: 0.625rem !important;
|
|
2586
|
+
}
|
|
2587
|
+
|
|
2588
|
+
.k-popup {
|
|
2589
|
+
padding: 0 !important;
|
|
2590
|
+
}
|
|
2591
|
+
|
|
2592
|
+
.k-calendar-view {
|
|
2593
|
+
/*width: 100% !important;*/
|
|
2594
|
+
}
|
|
2595
|
+
|
|
2596
|
+
.check-tabs .nav-item .nav-link {
|
|
2597
|
+
background-color: #fff;
|
|
2598
|
+
padding: 0.5rem 1rem;
|
|
2599
|
+
font-size: 0.8rem;
|
|
2600
|
+
}
|
|
2601
|
+
|
|
2602
|
+
.check-tabs .nav-item .nav-link.active {
|
|
2603
|
+
background-color: #990000;
|
|
2604
|
+
padding: 0.5rem 1rem;
|
|
2605
|
+
font-size: 0.8rem;
|
|
2606
|
+
font-weight: bold;
|
|
2607
|
+
color: #fff;
|
|
2608
|
+
}
|
|
2609
|
+
|
|
2610
|
+
.check-tab-content {
|
|
2611
|
+
padding: 1rem !important;
|
|
2612
|
+
}
|
|
2613
|
+
|
|
2614
|
+
.check-tab-content .tab-pane .comment-card-list {
|
|
2615
|
+
height: 100% !important;
|
|
2616
|
+
max-height: 100% !important;
|
|
2617
|
+
}
|
|
2618
|
+
|
|
2619
|
+
.email-detail .jodit-container {
|
|
2620
|
+
height: 500px !important;
|
|
2621
|
+
min-height: 500px !important;
|
|
2622
|
+
max-height: 500px !important;
|
|
2623
|
+
}
|
|
2624
|
+
|
|
2625
|
+
.email-detail .jodit-container .jodit-workplace {
|
|
2626
|
+
height: 100% !important;
|
|
2627
|
+
min-height: 100% !important;
|
|
2628
|
+
max-height: 100% !important;
|
|
2629
|
+
}
|
|
2630
|
+
|
|
2631
|
+
.email-detail .jodit-container .jodit-workplace .jodit-wysiwyg {
|
|
2632
|
+
height: 100% !important;
|
|
2633
|
+
min-height: 100% !important;
|
|
2634
|
+
max-height: 100% !important;
|
|
2635
|
+
padding: 0 !important;
|
|
2636
|
+
border: none;
|
|
2637
|
+
}
|
|
2638
|
+
|
|
2639
|
+
.email-detail .jodit-container .jodit-workplace .jodit-wysiwyg table td,
|
|
2640
|
+
table th {
|
|
2641
|
+
border: none;
|
|
2642
|
+
}
|
|
2643
|
+
|
|
2644
|
+
.k-plus::before {
|
|
2645
|
+
content: '\e11e';
|
|
2646
|
+
}
|
|
2647
|
+
|
|
2648
|
+
.k-minus::before {
|
|
2649
|
+
content: '\e121';
|
|
2650
|
+
}
|
|
2651
|
+
|
|
2652
|
+
.custom-alert-success {
|
|
2653
|
+
color: #4caf50;
|
|
2654
|
+
background-color: rgba(129, 199, 133, 0.2);
|
|
2655
|
+
border-color: #4caf50 !important;
|
|
2656
|
+
}
|
|
2657
|
+
|
|
2658
|
+
.k-grid {
|
|
2659
|
+
font-size: 14px !important;
|
|
2660
|
+
}
|
|
2661
|
+
|
|
2662
|
+
.k-grid td,
|
|
2663
|
+
.k-grid .k-table-td {
|
|
2664
|
+
font-size: 12px !important;
|
|
2665
|
+
padding: 0 !important;
|
|
2666
|
+
border-width: 1px;
|
|
2667
|
+
border-color: #cccccc50 !important;
|
|
2668
|
+
padding-top: 5px !important;
|
|
2669
|
+
padding-bottom: 5px !important;
|
|
2670
|
+
}
|
|
2671
|
+
/* Ocultar la barra de desplazamiento vertical cuando no se necesita */
|
|
2672
|
+
.k-grid-content {
|
|
2673
|
+
overflow-y: scroll !important;
|
|
2674
|
+
}
|
|
2675
|
+
.k-grid-content::-webkit-scrollbar {
|
|
2676
|
+
width: 12px;
|
|
2677
|
+
height: 8px;
|
|
2678
|
+
background-color: transparent;
|
|
2679
|
+
}
|
|
2680
|
+
|
|
2681
|
+
.k-grid-content::-webkit-scrollbar-track {
|
|
2682
|
+
background-color: transparent;
|
|
2683
|
+
border-radius: 10px;
|
|
2684
|
+
}
|
|
2685
|
+
|
|
2686
|
+
.k-grid-content::-webkit-scrollbar-thumb {
|
|
2687
|
+
border-radius: 10px;
|
|
2688
|
+
background-color: #ccc;
|
|
2689
|
+
}
|
|
2690
|
+
|
|
2691
|
+
.k-grid td {
|
|
2692
|
+
box-sizing: border-box;
|
|
2693
|
+
}
|
|
2694
|
+
.k-column-title {
|
|
2695
|
+
font-size: 12px !important;
|
|
2696
|
+
}
|
|
2697
|
+
|
|
2698
|
+
.k-table-th .k-header > span {
|
|
2699
|
+
font-size: 12px !important;
|
|
2700
|
+
}
|
|
2701
|
+
.k-grid .k-grid-header .k-table-th {
|
|
2702
|
+
font-size: 12px;
|
|
2703
|
+
}
|
|
2704
|
+
.k-grid-pager {
|
|
2705
|
+
padding: 10px !important;
|
|
2706
|
+
}
|
|
2707
|
+
.k-pager-sizes > select {
|
|
2708
|
+
width: 80px !important;
|
|
2709
|
+
font-size: 12px;
|
|
2710
|
+
}
|
|
2711
|
+
.form-control {
|
|
2712
|
+
padding: 10px;
|
|
2713
|
+
font-family: 'Inter', sans-serif !important;
|
|
2714
|
+
}
|
|
2715
|
+
option {
|
|
2716
|
+
padding: 10px !important;
|
|
2717
|
+
font-family: 'Inter', sans-serif !important;
|
|
2718
|
+
}
|
|
2719
|
+
.bg-primary {
|
|
2720
|
+
background: #92190e !important;
|
|
2721
|
+
background-color: #92190e !important;
|
|
2722
|
+
}
|
|
2723
|
+
|
|
2724
|
+
@font-face {
|
|
2725
|
+
font-family: 'Micrenc';
|
|
2726
|
+
src: url('/fonts/micrenc.ttf') format('truetype');
|
|
2727
|
+
}
|
|
2728
|
+
|
|
2729
|
+
.vcheck-card {
|
|
2730
|
+
width: 100%;
|
|
2731
|
+
padding: 1rem;
|
|
2732
|
+
border: 4px double black;
|
|
2733
|
+
background-color: #e5eeff;
|
|
2734
|
+
}
|
|
2735
|
+
|
|
2736
|
+
.vcheck-number {
|
|
2737
|
+
font-family: 'Micrenc' !important;
|
|
2738
|
+
-webkit-font-smoothing: antialiased;
|
|
2739
|
+
-moz-osx-font-smoothing: grayscale;
|
|
2740
|
+
font-smoothing: antialiased;
|
|
2741
|
+
}
|
|
2742
|
+
|
|
2743
|
+
.k-menu-link-text {
|
|
2744
|
+
color: #606060 !important;
|
|
2745
|
+
}
|
|
2746
|
+
|
|
2747
|
+
.check-loader {
|
|
2748
|
+
width: 100%;
|
|
2749
|
+
height: 100%;
|
|
2750
|
+
position: absolute;
|
|
2751
|
+
top: 0;
|
|
2752
|
+
left: 0;
|
|
2753
|
+
}
|
|
2754
|
+
|
|
2755
|
+
.check-loader::after {
|
|
2756
|
+
content: '';
|
|
2757
|
+
display: block;
|
|
2758
|
+
width: 100%;
|
|
2759
|
+
height: 100%;
|
|
2760
|
+
background: linear-gradient(90deg, #dfdfdf 0px, #fff 40px, #dfdfdf 80px);
|
|
2761
|
+
animation: checkLoader 1s infinite;
|
|
2762
|
+
}
|
|
2763
|
+
|
|
2764
|
+
@keyframes checkLoader {
|
|
2765
|
+
0% {
|
|
2766
|
+
background-position: -200px 0;
|
|
2767
|
+
}
|
|
2768
|
+
|
|
2769
|
+
100% {
|
|
2770
|
+
background-position: 200px 0;
|
|
2771
|
+
}
|
|
2772
|
+
}
|
|
2773
|
+
|
|
2774
|
+
.k-filter-menu .k-actions {
|
|
2775
|
+
overflow: visible;
|
|
2776
|
+
}
|
|
2777
|
+
|
|
2778
|
+
.k-button-md {
|
|
2779
|
+
padding: 0.4rem 1rem;
|
|
2780
|
+
font-size: 0.875rem;
|
|
2781
|
+
line-height: 1;
|
|
2782
|
+
border-radius: 0.1875rem;
|
|
2783
|
+
}
|
|
2784
|
+
|
|
2785
|
+
.k-button-solid-primary,
|
|
2786
|
+
.k-button-solid-primary:hover,
|
|
2787
|
+
.k-button-solid-primary:active,
|
|
2788
|
+
.k-button-solid-primary.k-active {
|
|
2789
|
+
color: #fff;
|
|
2790
|
+
background-color: #990000;
|
|
2791
|
+
border-color: #990000;
|
|
2792
|
+
}
|
|
2793
|
+
|
|
2794
|
+
.k-button-solid-primary:focus,
|
|
2795
|
+
.k-button-solid-primary.k-focus {
|
|
2796
|
+
outline: 0;
|
|
2797
|
+
outline-offset: 0;
|
|
2798
|
+
box-shadow: 0 0 0 0.2rem rgba(168, 38, 38, 0.5);
|
|
2799
|
+
}
|
|
2800
|
+
|
|
2801
|
+
.k-input-md {
|
|
2802
|
+
/*height: 1.875rem;*/
|
|
2803
|
+
font-size: 0.75rem;
|
|
2804
|
+
font-weight: 400;
|
|
2805
|
+
line-height: 1.5;
|
|
2806
|
+
border-radius: 0.2rem;
|
|
2807
|
+
}
|
|
2808
|
+
|
|
2809
|
+
.k-input-md.textarea {
|
|
2810
|
+
height: 100% !important;
|
|
2811
|
+
}
|
|
2812
|
+
|
|
2813
|
+
input.k-input-md {
|
|
2814
|
+
}
|
|
2815
|
+
|
|
2816
|
+
.k-picker-md {
|
|
2817
|
+
height: 1.875rem;
|
|
2818
|
+
padding: 0.5rem 0;
|
|
2819
|
+
font-size: 0.75rem;
|
|
2820
|
+
font-weight: 400;
|
|
2821
|
+
line-height: 1.5;
|
|
2822
|
+
border-radius: 0.2rem;
|
|
2823
|
+
}
|
|
2824
|
+
|
|
2825
|
+
.k-picker-md .k-input-inner {
|
|
2826
|
+
padding-left: 0.5rem;
|
|
2827
|
+
padding-right: 0.5rem;
|
|
2828
|
+
}
|
|
2829
|
+
|
|
2830
|
+
.k-list-item.k-selected,
|
|
2831
|
+
.k-selected.k-list-optionlabel {
|
|
2832
|
+
color: white;
|
|
2833
|
+
background-color: #990000;
|
|
2834
|
+
}
|
|
2835
|
+
|
|
2836
|
+
.k-list-item.k-selected:hover,
|
|
2837
|
+
.k-selected.k-list-optionlabel:hover,
|
|
2838
|
+
.k-list-item.k-selected.k-hover,
|
|
2839
|
+
.k-selected.k-hover.k-list-optionlabel {
|
|
2840
|
+
color: white;
|
|
2841
|
+
background-color: #990000;
|
|
2842
|
+
}
|
|
2843
|
+
|
|
2844
|
+
input.k-input.k-input-md.k-input-solid {
|
|
2845
|
+
padding: 0.25rem 0.5rem !important;
|
|
2846
|
+
}
|
|
2847
|
+
|
|
2848
|
+
.k-input-solid,
|
|
2849
|
+
.k-input-solid:hover,
|
|
2850
|
+
.k-input-solid.active,
|
|
2851
|
+
.k-picker-solid,
|
|
2852
|
+
.k-picker-solid:hover,
|
|
2853
|
+
.k.k-picker-solid:active {
|
|
2854
|
+
box-shadow: none;
|
|
2855
|
+
border: none;
|
|
2856
|
+
outline: 1px solid #dee2e6;
|
|
2857
|
+
/*background-color: transparent;*/
|
|
2858
|
+
}
|
|
2859
|
+
|
|
2860
|
+
.k-input-solid:focus,
|
|
2861
|
+
.k-input-solid.k-focus,
|
|
2862
|
+
.k-input-solid:focus-within,
|
|
2863
|
+
.k-picker-solid:focus,
|
|
2864
|
+
.k-picker-solid.k-focus,
|
|
2865
|
+
.k-picker-solid:focus-within {
|
|
2866
|
+
border: none;
|
|
2867
|
+
box-shadow: none;
|
|
2868
|
+
outline: 2px solid gray;
|
|
2869
|
+
/*background-color: transparent;*/
|
|
2870
|
+
}
|
|
2871
|
+
|
|
2872
|
+
.k-input-solid:focus input.k-input-inner,
|
|
2873
|
+
.k-input-solid.k-focus input.k-input-inner,
|
|
2874
|
+
.k-input-solid:focus-within input.k-input-inner,
|
|
2875
|
+
.k-picker-solid:focus input.k-input-inner,
|
|
2876
|
+
.k-picker-solid.k-focus input.k-input-inner,
|
|
2877
|
+
.k-picker-solid:focus-within input.k-input-inner {
|
|
2878
|
+
border: none !important;
|
|
2879
|
+
box-shadow: none !important;
|
|
2880
|
+
outline: none !important;
|
|
2881
|
+
/*background-color: transparent;*/
|
|
2882
|
+
}
|
|
2883
|
+
|
|
2884
|
+
.list-group {
|
|
2885
|
+
background-color: #fff;
|
|
2886
|
+
}
|
|
2887
|
+
|
|
2888
|
+
.list-group .list-group {
|
|
2889
|
+
border-radius: 0;
|
|
2890
|
+
}
|
|
2891
|
+
|
|
2892
|
+
.list-group > .list-group-item {
|
|
2893
|
+
border-bottom-width: 0;
|
|
2894
|
+
}
|
|
2895
|
+
|
|
2896
|
+
.list-group .list-group > .list-group-item {
|
|
2897
|
+
border-bottom-width: 0;
|
|
2898
|
+
}
|
|
2899
|
+
|
|
2900
|
+
.list-group > .list-group .list-group-item {
|
|
2901
|
+
background-color: transparent;
|
|
2902
|
+
}
|
|
2903
|
+
|
|
2904
|
+
.list-group-item-action {
|
|
2905
|
+
cursor: pointer;
|
|
2906
|
+
user-select: none;
|
|
2907
|
+
}
|
|
2908
|
+
|
|
2909
|
+
.k-grid-header {
|
|
2910
|
+
--kendo-scrollbar-width: 12px;
|
|
2911
|
+
}
|
|
2912
|
+
|
|
2913
|
+
.k-grid-header-wrap {
|
|
2914
|
+
border-right: 1px solid #dee2e6;
|
|
2915
|
+
}
|
|
2916
|
+
|
|
2917
|
+
.k-grid-content::-webkit-scrollbar {
|
|
2918
|
+
width: 12px;
|
|
2919
|
+
height: 12px;
|
|
2920
|
+
border-left: 1px solid #dee2e6;
|
|
2921
|
+
border-top: 1px solid #dee2e6;
|
|
2922
|
+
}
|
|
2923
|
+
|
|
2924
|
+
.k-grid-content::-webkit-scrollbar:vertical {
|
|
2925
|
+
width: 12px;
|
|
2926
|
+
border-left: 1px solid #dee2e6;
|
|
2927
|
+
}
|
|
2928
|
+
|
|
2929
|
+
.k-grid-content::-webkit-scrollbar:horizontal {
|
|
2930
|
+
height: 12px;
|
|
2931
|
+
border-top: 1px solid #dee2e6;
|
|
2932
|
+
}
|
|
2933
|
+
|
|
2934
|
+
.k-grid-content::-webkit-scrollbar-thumb {
|
|
2935
|
+
background-color: #ccc;
|
|
2936
|
+
}
|
|
2937
|
+
|
|
2938
|
+
.k-grid-content::-webkit-scrollbar-thumb:hover {
|
|
2939
|
+
background-color: #c2c2c2;
|
|
2940
|
+
}
|
|
2941
|
+
|
|
2942
|
+
.btn.btn-icon {
|
|
2943
|
+
width: 30px;
|
|
2944
|
+
height: 30px;
|
|
2945
|
+
padding: 0;
|
|
2946
|
+
font-size: 0.75rem;
|
|
2947
|
+
display: flex;
|
|
2948
|
+
justify-content: center;
|
|
2949
|
+
align-items: center;
|
|
2950
|
+
}
|
|
2951
|
+
|
|
2952
|
+
.btn.btn-without-chevron::after {
|
|
2953
|
+
display: none;
|
|
2954
|
+
}
|
|
2955
|
+
|
|
2956
|
+
.gap-2 {
|
|
2957
|
+
gap: 0.5rem;
|
|
2958
|
+
}
|
|
2959
|
+
|
|
2960
|
+
.gap-3 {
|
|
2961
|
+
gap: 1rem;
|
|
2962
|
+
}
|
|
2963
|
+
|
|
2964
|
+
html,
|
|
2965
|
+
body {
|
|
2966
|
+
height: 100% !important;
|
|
2967
|
+
}
|
|
2968
|
+
|
|
2969
|
+
.grid-inside-modal .k-grid-container .k-grid-content {
|
|
2970
|
+
min-height: 100% !important;
|
|
2971
|
+
}
|
|
2972
|
+
|
|
2973
|
+
.grid-fitcontent-inside-modal .k-grid-container .k-grid-content {
|
|
2974
|
+
min-height: calc(100vh - 600px) !important;
|
|
2975
|
+
}
|
|
2976
|
+
|
|
2977
|
+
.k-grid .k-grid-header .k-cell-inner > .k-link > .k-sort-icon {
|
|
2978
|
+
-webkit-margin-start: 0px !important;
|
|
2979
|
+
margin-inline-start: 0px !important;
|
|
2980
|
+
}
|
|
2981
|
+
|
|
2982
|
+
.animate-ping {
|
|
2983
|
+
animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
|
|
2984
|
+
}
|
|
2985
|
+
|
|
2986
|
+
@keyframes ping {
|
|
2987
|
+
75%,
|
|
2988
|
+
to {
|
|
2989
|
+
transform: scale(2);
|
|
2990
|
+
opacity: 0;
|
|
2991
|
+
}
|
|
2992
|
+
}
|
|
2993
|
+
|
|
2994
|
+
/**** Accordion Style ****/
|
|
2995
|
+
/*
|
|
2996
|
+
.accordion{
|
|
2997
|
+
--bs-accordion-btn-color: white !important;
|
|
2998
|
+
--bs-accordion-btn-bg: rgba(146, 25, 14, 255) !important;
|
|
2999
|
+
--bs-accordion-active-color: white !important;
|
|
3000
|
+
--bs-accordion-active-bg: rgba(146, 25, 14, 255) !important;
|
|
3001
|
+
--bs-accordion-btn-focus-border-color: rgba(146, 25, 14, 255) !important;
|
|
3002
|
+
--bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(146, 25, 14, 0.25) !important;
|
|
3003
|
+
}
|
|
3004
|
+
|
|
3005
|
+
.accordion-button:after {
|
|
3006
|
+
flex-shrink: 0;
|
|
3007
|
+
width: 1.25rem;
|
|
3008
|
+
height: 1.25rem;
|
|
3009
|
+
margin-left: auto;
|
|
3010
|
+
content: "";
|
|
3011
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
|
|
3012
|
+
background-repeat: no-repeat;
|
|
3013
|
+
background-size: 1.25rem;
|
|
3014
|
+
transition: transform 0.2s ease-in-out;
|
|
3015
|
+
filter: invert(1);
|
|
3016
|
+
}
|
|
3017
|
+
|
|
3018
|
+
*/
|
|
3019
|
+
|
|
3020
|
+
.accordion-item {
|
|
3021
|
+
color: #212529;
|
|
3022
|
+
background-color: white;
|
|
3023
|
+
border: 1px solid #dee2e6;
|
|
3024
|
+
}
|
|
3025
|
+
|
|
3026
|
+
.accordion-item:first-of-type {
|
|
3027
|
+
border-top-left-radius: 0.375rem;
|
|
3028
|
+
border-top-right-radius: 0.375rem;
|
|
3029
|
+
}
|
|
3030
|
+
|
|
3031
|
+
.accordion-item:not(:first-of-type) {
|
|
3032
|
+
border-top: 0;
|
|
3033
|
+
}
|
|
3034
|
+
|
|
3035
|
+
.accordion-item:last-of-type {
|
|
3036
|
+
border-bottom-right-radius: 0.375rem;
|
|
3037
|
+
border-bottom-left-radius: 0.375rem;
|
|
3038
|
+
}
|
|
3039
|
+
|
|
3040
|
+
.accordion-header {
|
|
3041
|
+
margin-bottom: 0;
|
|
3042
|
+
}
|
|
3043
|
+
|
|
3044
|
+
.accordion-button {
|
|
3045
|
+
position: relative;
|
|
3046
|
+
display: flex;
|
|
3047
|
+
align-items: center;
|
|
3048
|
+
width: 100%;
|
|
3049
|
+
padding: 1rem 1.25rem;
|
|
3050
|
+
font-size: 1rem;
|
|
3051
|
+
/* color: #212529; */
|
|
3052
|
+
color: white;
|
|
3053
|
+
text-align: left;
|
|
3054
|
+
/* background-color: white; */
|
|
3055
|
+
background-color: rgba(146, 25, 14, 255);
|
|
3056
|
+
border: 0;
|
|
3057
|
+
border-radius: 0;
|
|
3058
|
+
overflow-anchor: none;
|
|
3059
|
+
transition:
|
|
3060
|
+
color 0.15s ease-in-out,
|
|
3061
|
+
background-color 0.15s ease-in-out,
|
|
3062
|
+
border-color 0.15s ease-in-out,
|
|
3063
|
+
box-shadow 0.15s ease-in-out,
|
|
3064
|
+
border-radius 0.15s ease;
|
|
3065
|
+
}
|
|
3066
|
+
|
|
3067
|
+
.accordion-item:first-of-type .accordion-button {
|
|
3068
|
+
border-top-left-radius: calc(0.375rem - 1px);
|
|
3069
|
+
border-top-right-radius: calc(0.375rem - 1px);
|
|
3070
|
+
}
|
|
3071
|
+
|
|
3072
|
+
.accordion-item:last-of-type .accordion-button.collapsed {
|
|
3073
|
+
border-bottom-right-radius: calc(0.375rem - 1px);
|
|
3074
|
+
border-bottom-left-radius: calc(0.375rem - 1px);
|
|
3075
|
+
}
|
|
3076
|
+
|
|
3077
|
+
.accordion-button:not(.collapsed) {
|
|
3078
|
+
color: white;
|
|
3079
|
+
/*background-color: #e7f1ff;*/
|
|
3080
|
+
background-color: rgba(146, 25, 14, 255);
|
|
3081
|
+
box-shadow: inset 0 calc(-1px) 0 #dee2e6;
|
|
3082
|
+
}
|
|
3083
|
+
|
|
3084
|
+
.accordion-button:focus {
|
|
3085
|
+
z-index: 3;
|
|
3086
|
+
/* border-color: #86b7fe; */
|
|
3087
|
+
border-color: rgba(146, 25, 14, 0.2);
|
|
3088
|
+
outline: 0;
|
|
3089
|
+
/* box-shadow: 0 0 0 0.25rem rgba(13,110,253,0.25); */
|
|
3090
|
+
box-shadow: 0 0 0 0.25rem rgba(146, 25, 14, 0.25);
|
|
3091
|
+
}
|
|
3092
|
+
|
|
3093
|
+
.accordion-button:after {
|
|
3094
|
+
flex-shrink: 0;
|
|
3095
|
+
width: 1.25rem;
|
|
3096
|
+
height: 1.25rem;
|
|
3097
|
+
margin-left: auto;
|
|
3098
|
+
content: '';
|
|
3099
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
|
|
3100
|
+
background-repeat: no-repeat;
|
|
3101
|
+
background-size: 1.25rem;
|
|
3102
|
+
transition: transform 0.2s ease-in-out;
|
|
3103
|
+
}
|
|
3104
|
+
|
|
3105
|
+
.accordion-button:not(.collapsed):after {
|
|
3106
|
+
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
|
|
3107
|
+
-webkit-transform: rotate(-180deg);
|
|
3108
|
+
transform: rotate(-180deg);
|
|
3109
|
+
}
|
|
3110
|
+
|
|
3111
|
+
.accordion-body {
|
|
3112
|
+
padding: 1rem 1.25rem;
|
|
3113
|
+
}
|
|
3114
|
+
|
|
3115
|
+
/******************/
|
|
3116
|
+
|
|
3117
|
+
:root {
|
|
3118
|
+
--color-primary: #92190e;
|
|
3119
|
+
}
|
|
3120
|
+
|
|
3121
|
+
.btn {
|
|
3122
|
+
display: inline-flex;
|
|
3123
|
+
justify-content: center;
|
|
3124
|
+
align-items: center;
|
|
3125
|
+
}
|
|
3126
|
+
|
|
3127
|
+
.btn .icon,
|
|
3128
|
+
.btn i,
|
|
3129
|
+
.btn svg {
|
|
3130
|
+
width: 14px;
|
|
3131
|
+
height: 14px;
|
|
3132
|
+
margin-right: 0.3125rem;
|
|
3133
|
+
}
|
|
3134
|
+
|
|
3135
|
+
.btn-loading {
|
|
3136
|
+
position: relative;
|
|
3137
|
+
overflow: hidden;
|
|
3138
|
+
white-space: nowrap;
|
|
3139
|
+
text-overflow: ellipsis;
|
|
3140
|
+
pointer-events: none;
|
|
3141
|
+
}
|
|
3142
|
+
|
|
3143
|
+
.btn-loading > .icon,
|
|
3144
|
+
.btn-loading > i {
|
|
3145
|
+
display: none;
|
|
3146
|
+
}
|
|
3147
|
+
|
|
3148
|
+
.btn-loading .k-loading-mask {
|
|
3149
|
+
position: static;
|
|
3150
|
+
width: 14px;
|
|
3151
|
+
height: 14px;
|
|
3152
|
+
margin-right: 0.3125rem;
|
|
3153
|
+
display: inline-block;
|
|
3154
|
+
}
|
|
3155
|
+
|
|
3156
|
+
.btn-loading .k-loading-image {
|
|
3157
|
+
position: static;
|
|
3158
|
+
width: 14px;
|
|
3159
|
+
height: 14px;
|
|
3160
|
+
}
|
|
3161
|
+
|
|
3162
|
+
.btn-loading .k-loading-image::before {
|
|
3163
|
+
position: static;
|
|
3164
|
+
width: 14px;
|
|
3165
|
+
height: 14px;
|
|
3166
|
+
margin: 0;
|
|
3167
|
+
animation: k-loading-animation 1s linear infinite;
|
|
3168
|
+
}
|
|
3169
|
+
|
|
3170
|
+
.window-loading {
|
|
3171
|
+
z-index: 2000;
|
|
3172
|
+
position: fixed;
|
|
3173
|
+
}
|
|
3174
|
+
|
|
3175
|
+
.none-loading {
|
|
3176
|
+
display: none;
|
|
3177
|
+
}
|
|
3178
|
+
|
|
3179
|
+
.grid-loading,
|
|
3180
|
+
.page-loading,
|
|
3181
|
+
.div-loading {
|
|
3182
|
+
z-index: 10;
|
|
3183
|
+
}
|
|
3184
|
+
|
|
3185
|
+
.user-card .k-grid-content {
|
|
3186
|
+
min-height: auto;
|
|
3187
|
+
max-height: auto;
|
|
3188
|
+
}
|
|
3189
|
+
|
|
3190
|
+
/* Boostrap */
|
|
3191
|
+
.btn,
|
|
3192
|
+
.k-button-md {
|
|
3193
|
+
padding: 0.4rem 1rem;
|
|
3194
|
+
font-size: 0.875rem;
|
|
3195
|
+
font-family: 'Roboto', sans-serif;
|
|
3196
|
+
line-height: 1;
|
|
3197
|
+
border-radius: 0.1875rem;
|
|
3198
|
+
display: inline-flex;
|
|
3199
|
+
align-items: center;
|
|
3200
|
+
}
|
|
3201
|
+
|
|
3202
|
+
.k-button-flat-primary {
|
|
3203
|
+
color: var(--color-primary);
|
|
3204
|
+
}
|
|
3205
|
+
|
|
3206
|
+
.form-row {
|
|
3207
|
+
align-items: center;
|
|
3208
|
+
}
|
|
3209
|
+
|
|
3210
|
+
.mega-dropdown.customize-column .list-group-item,
|
|
3211
|
+
.mega-dropdown.customize-column .list-group-item.active,
|
|
3212
|
+
.mega-dropdown.customize-column .list-group-item.active:hover {
|
|
3213
|
+
color: inherit !important;
|
|
3214
|
+
background-color: transparent !important;
|
|
3215
|
+
}
|
|
3216
|
+
|
|
3217
|
+
.mega-dropdown.customize-column .list-group-item:before {
|
|
3218
|
+
border-radius: inherit;
|
|
3219
|
+
content: '';
|
|
3220
|
+
background: currentColor;
|
|
3221
|
+
opacity: 0;
|
|
3222
|
+
pointer-events: none;
|
|
3223
|
+
position: absolute;
|
|
3224
|
+
left: 0;
|
|
3225
|
+
right: 0;
|
|
3226
|
+
top: 0;
|
|
3227
|
+
bottom: 0;
|
|
3228
|
+
z-index: 0;
|
|
3229
|
+
}
|
|
3230
|
+
|
|
3231
|
+
.mega-dropdown.customize-column .list-group-item:hover:before {
|
|
3232
|
+
opacity: 0.04;
|
|
3233
|
+
}
|
|
3234
|
+
|
|
3235
|
+
.mega-dropdown.customize-column .list-group-item:active:before {
|
|
3236
|
+
opacity: 0.08;
|
|
3237
|
+
}
|
|
3238
|
+
|
|
3239
|
+
.mega-dropdown.customize-column .list-group-item.active:before {
|
|
3240
|
+
background-color: var(--color-primary);
|
|
3241
|
+
}
|
|
3242
|
+
.mega-dropdown.customize-column .list-group-item.active:before,
|
|
3243
|
+
.mega-dropdown.customize-column .list-group-item.active:hover:before,
|
|
3244
|
+
.mega-dropdown.customize-column .list-group-item.active:active:before {
|
|
3245
|
+
opacity: 0.16;
|
|
3246
|
+
}
|
|
3247
|
+
|
|
3248
|
+
select,
|
|
3249
|
+
input {
|
|
3250
|
+
accent-color: var(--color-primary);
|
|
3251
|
+
}
|
|
3252
|
+
|
|
3253
|
+
.k-checkbox:checked,
|
|
3254
|
+
.k-checkbox.k-checked {
|
|
3255
|
+
border-color: var(--color-primary);
|
|
3256
|
+
background-color: var(--color-primary);
|
|
3257
|
+
}
|
|
3258
|
+
|
|
3259
|
+
select.form-control,
|
|
3260
|
+
input.form-control {
|
|
3261
|
+
padding: 0 0.5rem !important;
|
|
3262
|
+
}
|
|
3263
|
+
|
|
3264
|
+
.panel-body {
|
|
3265
|
+
position: relative;
|
|
3266
|
+
}
|
|
3267
|
+
|
|
3268
|
+
.panel-loading {
|
|
3269
|
+
position: absolute;
|
|
3270
|
+
top: 0;
|
|
3271
|
+
left: 0;
|
|
3272
|
+
right: 0;
|
|
3273
|
+
bottom: 0;
|
|
3274
|
+
z-index: 9;
|
|
3275
|
+
display: flex;
|
|
3276
|
+
justify-content: center;
|
|
3277
|
+
align-items: center;
|
|
3278
|
+
opacity: 0.35;
|
|
3279
|
+
}
|