@visns-studio/visns-components 4.10.48 → 5.0.1-8.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/package.json +29 -29
- package/src/components/cms/Field.jsx +39 -63
- package/src/components/crm/AsyncSelect.jsx +121 -15
- package/src/components/crm/Breadcrumb.jsx +2 -18
- package/src/components/crm/DataGrid.jsx +51 -424
- package/src/components/crm/Field.jsx +185 -358
- package/src/components/crm/Form.jsx +104 -92
- package/src/components/crm/MultiSelect.jsx +66 -45
- package/src/components/crm/Navigation.jsx +9 -92
- package/src/components/crm/QuickAction.jsx +1 -0
- package/src/components/crm/auth/Login.jsx +9 -1
- package/src/components/crm/auth/Profile.jsx +4 -2
- package/src/components/crm/auth/styles/Login.module.scss +52 -82
- package/src/components/crm/auth/styles/Profile.module.scss +150 -44
- package/src/components/crm/auth/styles/Reset.module.scss +55 -37
- package/src/components/crm/auth/styles/Verify.module.scss +55 -76
- package/src/components/crm/generic/GenericAuth.jsx +12 -5
- package/src/components/crm/generic/GenericDashboard.jsx +30 -340
- package/src/components/crm/generic/GenericDetail.jsx +534 -86
- package/src/components/crm/generic/GenericDynamic.jsx +76 -94
- package/src/components/crm/generic/GenericEditableTable.jsx +407 -0
- package/src/components/crm/generic/GenericFormBuilder.jsx +19 -79
- package/src/components/crm/generic/GenericIndex.jsx +1 -2
- package/src/components/crm/generic/styles/AuditLog.module.scss +4 -37
- package/src/components/crm/generic/styles/AuditLogs.module.scss +0 -51
- package/src/components/crm/generic/styles/GenericDetail.module.scss +263 -244
- package/src/components/crm/generic/styles/GenericDynamic.module.scss +100 -198
- package/src/components/crm/generic/styles/GenericEditableTable.module.scss +178 -0
- package/src/components/crm/generic/styles/GenericFormBuilder.module.scss +63 -101
- package/src/components/crm/generic/styles/GenericIndex.module.scss +46 -66
- package/src/components/crm/generic/styles/GenericMain.module.scss +7 -7
- package/src/components/crm/generic/styles/GenericSort.module.scss +0 -36
- package/src/components/crm/generic/styles/NotificationList.module.scss +1 -32
- package/src/components/crm/styles/Autocomplete.module.scss +12 -20
- package/src/components/crm/styles/DataGrid.module.scss +28 -86
- package/src/components/crm/styles/Field.module.scss +72 -252
- package/src/components/crm/styles/Form.module.scss +141 -450
- package/src/components/crm/styles/Navigation.module.scss +356 -507
- package/src/components/crm/styles/Notification.module.scss +1 -0
- package/src/components/crm/styles/QrCode.module.scss +4 -18
- package/src/components/crm/styles/SwitchAccount.module.scss +0 -1
- package/src/components/crm/styles/TableFilter.module.scss +2 -1
- package/src/components/styles/global.css +164 -34
- package/src/index.js +0 -8
- package/src/components/crm/generic/styles/GenericDashboard.module.scss +0 -325
- package/src/components/crm/sketch/SketchField.jsx +0 -395
- package/src/components/crm/sketch/arrow.jsx +0 -108
- package/src/components/crm/sketch/circle.jsx +0 -75
- package/src/components/crm/sketch/default-tool.jsx +0 -16
- package/src/components/crm/sketch/fabrictool.jsx +0 -22
- package/src/components/crm/sketch/history.jsx +0 -144
- package/src/components/crm/sketch/json/config.json +0 -14
- package/src/components/crm/sketch/line.jsx +0 -64
- package/src/components/crm/sketch/pan.jsx +0 -48
- package/src/components/crm/sketch/pencil.jsx +0 -36
- package/src/components/crm/sketch/rectangle-label-object.jsx +0 -69
- package/src/components/crm/sketch/rectangle-label.jsx +0 -93
- package/src/components/crm/sketch/rectangle.jsx +0 -76
- package/src/components/crm/sketch/select.jsx +0 -16
- package/src/components/crm/sketch/tools.jsx +0 -11
- package/src/components/crm/sketch/utils.jsx +0 -67
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
position: relative;
|
|
27
27
|
padding: 20px;
|
|
28
28
|
margin: 8px 0;
|
|
29
|
-
box-shadow: 0 4px 0 rgba(var(--primary-
|
|
29
|
+
box-shadow: 0 4px 0 rgba(var(--primary-rgb), 0.05);
|
|
30
30
|
}
|
|
31
31
|
|
|
32
32
|
.grid__half {
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
position: relative;
|
|
40
40
|
padding: 20px;
|
|
41
41
|
margin: 8px 0;
|
|
42
|
-
box-shadow: 0 4px 0 rgba(var(--primary-
|
|
42
|
+
box-shadow: 0 4px 0 rgba(var(--primary-rgb), 0.05);
|
|
43
43
|
}
|
|
44
44
|
|
|
45
45
|
.grid__full {
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
position: relative;
|
|
53
53
|
padding: 2px;
|
|
54
54
|
margin: 8px 0;
|
|
55
|
-
box-shadow: 0 4px 0 rgba(var(--primary-
|
|
55
|
+
box-shadow: 0 4px 0 rgba(var(--primary-rgb), 0.05);
|
|
56
56
|
}
|
|
57
57
|
|
|
58
58
|
.grid__dashfull {
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
position: relative;
|
|
66
66
|
padding: 20px;
|
|
67
67
|
margin: 8px 0;
|
|
68
|
-
box-shadow: 0 4px 0 rgba(var(--primary-
|
|
68
|
+
box-shadow: 0 4px 0 rgba(var(--primary-rgb), 0.05);
|
|
69
69
|
}
|
|
70
70
|
|
|
71
71
|
.grid__subrow {
|
|
@@ -78,14 +78,13 @@
|
|
|
78
78
|
|
|
79
79
|
.grid__subnav {
|
|
80
80
|
flex: 1;
|
|
81
|
-
background:
|
|
81
|
+
background: white;
|
|
82
82
|
border-radius: var(--br);
|
|
83
|
-
border: 1px solid rgba(var(--item-color-rgb), 1.15);
|
|
84
83
|
box-sizing: border-box;
|
|
85
84
|
padding: 5px;
|
|
86
85
|
margin: 8px 0;
|
|
87
86
|
height: auto;
|
|
88
|
-
box-shadow: 0 4px 0 rgba(var(--primary-
|
|
87
|
+
box-shadow: 0 4px 0 rgba(var(--primary-rgb), 0.05);
|
|
89
88
|
}
|
|
90
89
|
|
|
91
90
|
.grid__subnav > ul {
|
|
@@ -104,11 +103,11 @@
|
|
|
104
103
|
|
|
105
104
|
.grid__subnav > ul li a {
|
|
106
105
|
width: 100%;
|
|
107
|
-
padding:
|
|
106
|
+
padding: 0.35rem 1rem;
|
|
108
107
|
box-sizing: border-box;
|
|
109
108
|
display: block;
|
|
110
109
|
text-decoration: none;
|
|
111
|
-
background: rgba(var(--primary-
|
|
110
|
+
background: rgba(var(--primary-rgb), 0.05);
|
|
112
111
|
color: var(--primary-color);
|
|
113
112
|
border-radius: 5px;
|
|
114
113
|
transition: background 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
@@ -127,57 +126,6 @@
|
|
|
127
126
|
color: var(--background-color);
|
|
128
127
|
}
|
|
129
128
|
|
|
130
|
-
.grid__subnav__alternate {
|
|
131
|
-
flex: 1;
|
|
132
|
-
background: rgba(var(--item-color-rgb), 0.05);
|
|
133
|
-
border-radius: var(--br);
|
|
134
|
-
border: 1px solid rgba(var(--item-color-rgb), 1.15);
|
|
135
|
-
box-sizing: border-box;
|
|
136
|
-
padding: 5px;
|
|
137
|
-
margin: 8px 0;
|
|
138
|
-
height: auto;
|
|
139
|
-
box-shadow: 0 4px 0 rgba(var(--primary-color-rgb), 0.05);
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
.grid__subnav__alternate > ul {
|
|
143
|
-
width: 100%;
|
|
144
|
-
list-style: none;
|
|
145
|
-
padding: 0;
|
|
146
|
-
margin: 0;
|
|
147
|
-
display: flex;
|
|
148
|
-
flex-wrap: wrap;
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
.grid__subnav__alternate > ul li {
|
|
152
|
-
width: 100%;
|
|
153
|
-
margin-bottom: 3px;
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
.grid__subnav__alternate > ul li a {
|
|
157
|
-
width: 100%;
|
|
158
|
-
padding: 8px 20px;
|
|
159
|
-
box-sizing: border-box;
|
|
160
|
-
display: block;
|
|
161
|
-
text-decoration: none;
|
|
162
|
-
background: rgba(var(--item-color-rgb), 1.05);
|
|
163
|
-
color: var(--secondary-color);
|
|
164
|
-
border-radius: 5px;
|
|
165
|
-
transition: background 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
166
|
-
outline: none;
|
|
167
|
-
cursor: pointer;
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
.grid__subnav__alternate > ul li:hover a {
|
|
171
|
-
background: var(--primary-color);
|
|
172
|
-
color: var(--secondary-color);
|
|
173
|
-
}
|
|
174
|
-
|
|
175
|
-
.grid__subnav__alternate > ul li .subactive {
|
|
176
|
-
font-weight: 700;
|
|
177
|
-
background: var(--primary-color);
|
|
178
|
-
color: var(--secondary-color);
|
|
179
|
-
}
|
|
180
|
-
|
|
181
129
|
.grid__minheight {
|
|
182
130
|
min-height: 300px;
|
|
183
131
|
}
|
|
@@ -188,15 +136,14 @@
|
|
|
188
136
|
|
|
189
137
|
.grid__subcontent {
|
|
190
138
|
flex: 0 1 80%;
|
|
191
|
-
background: var(--
|
|
139
|
+
background: var(--tertiary-color);
|
|
192
140
|
border-radius: var(--br);
|
|
193
|
-
border: 1px solid rgba(var(--
|
|
141
|
+
border: 1px solid rgba(var(--primary-rgb), 0.05);
|
|
194
142
|
box-sizing: border-box;
|
|
195
143
|
padding: 2px;
|
|
196
144
|
margin: 8px 0;
|
|
197
145
|
height: auto;
|
|
198
146
|
position: relative;
|
|
199
|
-
box-shadow: 0 4px 0 rgba(var(--primary-color-rgb), 0.05);
|
|
200
147
|
}
|
|
201
148
|
|
|
202
149
|
.grid__subcontent h2 {
|
|
@@ -209,10 +156,10 @@
|
|
|
209
156
|
.gridtxt__header {
|
|
210
157
|
width: 100%;
|
|
211
158
|
display: block;
|
|
212
|
-
background: rgba(var(--
|
|
159
|
+
background: rgba(var(--primary-rgb), 0.05);
|
|
213
160
|
box-sizing: border-box;
|
|
214
161
|
padding: 10px 20px;
|
|
215
|
-
border-radius:
|
|
162
|
+
border-radius: var(--br);
|
|
216
163
|
margin-bottom: 0;
|
|
217
164
|
font-weight: 700;
|
|
218
165
|
text-align: center;
|
|
@@ -237,14 +184,15 @@
|
|
|
237
184
|
|
|
238
185
|
.gridtxt > ul li {
|
|
239
186
|
flex: 0 0 calc(50% - 10px);
|
|
240
|
-
padding: 0.
|
|
187
|
+
padding: 0.65rem;
|
|
241
188
|
box-sizing: border-box;
|
|
242
|
-
border: 1px solid rgba(var(--primary-
|
|
189
|
+
border: 1px solid rgba(var(--primary-rgb), 0.095);
|
|
243
190
|
color: var(--paragraph-color);
|
|
244
|
-
background: rgba(var(--
|
|
245
|
-
margin:
|
|
191
|
+
background: rgba(var(--primary-rgb), 0.015);
|
|
192
|
+
margin: 3px;
|
|
246
193
|
border-radius: var(--br);
|
|
247
194
|
line-height: 1.45;
|
|
195
|
+
font-size: 0.85rem;
|
|
248
196
|
}
|
|
249
197
|
|
|
250
198
|
.gridtxt > ul .fw-grid-item {
|
|
@@ -255,75 +203,6 @@
|
|
|
255
203
|
border: 1px solid var(--secondary-color);
|
|
256
204
|
}
|
|
257
205
|
|
|
258
|
-
.crmtitle {
|
|
259
|
-
border: none;
|
|
260
|
-
min-height: auto;
|
|
261
|
-
padding: 10px 20px;
|
|
262
|
-
margin: 0;
|
|
263
|
-
background: var(--tertiary-color);
|
|
264
|
-
border-radius: var(--br);
|
|
265
|
-
border: 1px solid rgba(var(--item-color-rgb), 1.15);
|
|
266
|
-
position: relative;
|
|
267
|
-
display: flex;
|
|
268
|
-
align-items: center;
|
|
269
|
-
|
|
270
|
-
h1 {
|
|
271
|
-
font-weight: 700;
|
|
272
|
-
font-size: 1.45em;
|
|
273
|
-
margin: 0;
|
|
274
|
-
padding: 0.65rem 0;
|
|
275
|
-
|
|
276
|
-
a {
|
|
277
|
-
text-decoration: none;
|
|
278
|
-
color: var(--secondary-color);
|
|
279
|
-
font-weight: 300;
|
|
280
|
-
}
|
|
281
|
-
|
|
282
|
-
svg {
|
|
283
|
-
color: rgba(var(--primary-color-rgb), 0.5);
|
|
284
|
-
position: relative;
|
|
285
|
-
top: 2px;
|
|
286
|
-
margin: 0 0.25rem;
|
|
287
|
-
}
|
|
288
|
-
}
|
|
289
|
-
}
|
|
290
|
-
|
|
291
|
-
.crmtitle--alternate {
|
|
292
|
-
border: none;
|
|
293
|
-
min-height: auto;
|
|
294
|
-
padding: 5px 20px;
|
|
295
|
-
margin: 0;
|
|
296
|
-
background: var(--tertiary-color);
|
|
297
|
-
border-radius: var(--br);
|
|
298
|
-
border: 1px solid rgba(var(--item-color-rgb), 1.15);
|
|
299
|
-
position: relative;
|
|
300
|
-
display: flex;
|
|
301
|
-
align-items: center;
|
|
302
|
-
|
|
303
|
-
h1 {
|
|
304
|
-
color: var(--paragraph-color);
|
|
305
|
-
font-weight: 700;
|
|
306
|
-
font-size: 1.15em;
|
|
307
|
-
margin: 0;
|
|
308
|
-
padding: 0.65rem 0;
|
|
309
|
-
display: flex;
|
|
310
|
-
align-items: center;
|
|
311
|
-
gap: 0.25rem;
|
|
312
|
-
|
|
313
|
-
a {
|
|
314
|
-
text-decoration: none;
|
|
315
|
-
color: var(--primary-color);
|
|
316
|
-
}
|
|
317
|
-
|
|
318
|
-
svg {
|
|
319
|
-
position: relative;
|
|
320
|
-
top: 0;
|
|
321
|
-
margin: 0 0.5rem;
|
|
322
|
-
max-width: 15px;
|
|
323
|
-
}
|
|
324
|
-
}
|
|
325
|
-
}
|
|
326
|
-
|
|
327
206
|
.titleInfo {
|
|
328
207
|
position: absolute;
|
|
329
208
|
right: 2em;
|
|
@@ -349,11 +228,15 @@
|
|
|
349
228
|
width: 49%;
|
|
350
229
|
padding: 1em;
|
|
351
230
|
box-sizing: border-box;
|
|
352
|
-
border: 1px solid rgba(var(--primary-
|
|
231
|
+
border: 1px solid rgba(var(--primary-rgb), 0.15);
|
|
353
232
|
color: var(--paragraph-color);
|
|
354
233
|
background: rgba(#f4f4f4, 0.65);
|
|
355
234
|
margin: 5px;
|
|
356
235
|
border-radius: 5px;
|
|
236
|
+
|
|
237
|
+
p {
|
|
238
|
+
font-size: 0.85rem;
|
|
239
|
+
}
|
|
357
240
|
}
|
|
358
241
|
}
|
|
359
242
|
|
|
@@ -370,6 +253,12 @@
|
|
|
370
253
|
}
|
|
371
254
|
|
|
372
255
|
.dropzone__container {
|
|
256
|
+
padding: 1rem;
|
|
257
|
+
display: flex;
|
|
258
|
+
flex-wrap: wrap;
|
|
259
|
+
flex-direction: column;
|
|
260
|
+
gap: 1rem;
|
|
261
|
+
|
|
373
262
|
> div {
|
|
374
263
|
flex: 1 1 0%;
|
|
375
264
|
display: flex;
|
|
@@ -384,11 +273,12 @@
|
|
|
384
273
|
color: rgb(189, 189, 189);
|
|
385
274
|
outline: currentcolor none medium;
|
|
386
275
|
transition: border 0.24s ease-in-out 0s;
|
|
387
|
-
margin:
|
|
276
|
+
margin: 0;
|
|
388
277
|
|
|
389
278
|
p {
|
|
390
279
|
padding: 0;
|
|
391
280
|
margin: 0;
|
|
281
|
+
font-size: 1rem;
|
|
392
282
|
}
|
|
393
283
|
}
|
|
394
284
|
}
|
|
@@ -396,29 +286,35 @@
|
|
|
396
286
|
.dropzone__files {
|
|
397
287
|
list-style: none;
|
|
398
288
|
padding: 0;
|
|
399
|
-
margin:
|
|
289
|
+
margin: 0;
|
|
400
290
|
box-sizing: border-box;
|
|
401
291
|
|
|
402
292
|
li {
|
|
403
293
|
width: 100%;
|
|
404
294
|
display: block;
|
|
405
|
-
background: rgba(var(--
|
|
295
|
+
background: rgba(var(--primary-rgb), 0.05);
|
|
406
296
|
color: var(--primary-color);
|
|
407
297
|
border-radius: 3px;
|
|
408
298
|
transition: background 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
409
299
|
outline: none;
|
|
410
300
|
cursor: pointer;
|
|
411
301
|
border-radius: 3px;
|
|
412
|
-
padding:
|
|
302
|
+
padding: 0.5rem;
|
|
413
303
|
box-sizing: border-box;
|
|
414
304
|
position: relative;
|
|
305
|
+
border: 1px solid rgba(var(--primary-rgb), 0.15);
|
|
306
|
+
line-height: 1;
|
|
307
|
+
font-size: 0.85rem;
|
|
415
308
|
margin-bottom: 5px;
|
|
416
309
|
|
|
417
|
-
|
|
310
|
+
svg {
|
|
418
311
|
position: relative;
|
|
419
|
-
top:
|
|
420
|
-
|
|
421
|
-
|
|
312
|
+
top: -2px;
|
|
313
|
+
color: rgba(var(--secondary-rgb), 1);
|
|
314
|
+
float: left;
|
|
315
|
+
stroke-width: 1;
|
|
316
|
+
line-height: 1;
|
|
317
|
+
margin-right: 5px;
|
|
422
318
|
}
|
|
423
319
|
|
|
424
320
|
button {
|
|
@@ -430,8 +326,8 @@
|
|
|
430
326
|
z-index: 200;
|
|
431
327
|
cursor: pointer;
|
|
432
328
|
|
|
433
|
-
|
|
434
|
-
font-size:
|
|
329
|
+
svg {
|
|
330
|
+
font-size: 1em;
|
|
435
331
|
color: var(--primary-color);
|
|
436
332
|
line-height: 1;
|
|
437
333
|
}
|
|
@@ -459,8 +355,8 @@
|
|
|
459
355
|
align-items: center;
|
|
460
356
|
flex-wrap: wrap;
|
|
461
357
|
border-radius: 5px;
|
|
462
|
-
border: 1px solid rgba(var(--primary-
|
|
463
|
-
box-shadow: 0px 0px 20px rgba(var(--primary-
|
|
358
|
+
border: 1px solid rgba(var(--primary-rgb), 0.2);
|
|
359
|
+
box-shadow: 0px 0px 20px rgba(var(--primary-rgb), 0.1);
|
|
464
360
|
padding: 1.25rem 1.25rem 1.25rem 2rem;
|
|
465
361
|
box-sizing: border-box;
|
|
466
362
|
cursor: pointer;
|
|
@@ -532,26 +428,26 @@
|
|
|
532
428
|
flex-wrap: nowrap;
|
|
533
429
|
align-items: flex-start;
|
|
534
430
|
padding: 0 1.5em;
|
|
535
|
-
}
|
|
536
431
|
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
}
|
|
432
|
+
&__box {
|
|
433
|
+
width: auto;
|
|
434
|
+
margin: 0;
|
|
435
|
+
padding: 0 2em;
|
|
436
|
+
border-right: 1px solid rgba(var(--primary-rgb), 0.35);
|
|
543
437
|
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
}
|
|
438
|
+
&:first-child {
|
|
439
|
+
padding-left: 0;
|
|
440
|
+
}
|
|
547
441
|
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
}
|
|
442
|
+
p {
|
|
443
|
+
margin: 0;
|
|
444
|
+
}
|
|
551
445
|
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
446
|
+
span {
|
|
447
|
+
display: block;
|
|
448
|
+
color: rgba(var(--primary-rgb), 0.7);
|
|
449
|
+
}
|
|
450
|
+
}
|
|
555
451
|
}
|
|
556
452
|
|
|
557
453
|
.oppstatus {
|
|
@@ -565,95 +461,96 @@
|
|
|
565
461
|
list-style: none;
|
|
566
462
|
padding: 0;
|
|
567
463
|
margin: 0;
|
|
568
|
-
}
|
|
569
|
-
|
|
570
|
-
.opppath > li {
|
|
571
|
-
position: relative;
|
|
572
|
-
flex: 1;
|
|
573
|
-
margin-left: 0.375rem;
|
|
574
|
-
margin-right: 0.4375rem;
|
|
575
|
-
min-width: 5rem;
|
|
576
|
-
text-align: center;
|
|
577
|
-
background: var(--primary-color);
|
|
578
|
-
}
|
|
579
464
|
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
465
|
+
> li {
|
|
466
|
+
position: relative;
|
|
467
|
+
flex: 1;
|
|
468
|
+
margin-left: 0.375rem;
|
|
469
|
+
margin-right: 0.4375rem;
|
|
470
|
+
min-width: 5rem;
|
|
471
|
+
text-align: center;
|
|
472
|
+
background: var(--primary-color);
|
|
473
|
+
|
|
474
|
+
&:first-child {
|
|
475
|
+
margin-left: 0;
|
|
476
|
+
border-top-left-radius: 1rem;
|
|
477
|
+
border-bottom-left-radius: 1rem;
|
|
478
|
+
padding-left: 0.625rem;
|
|
479
|
+
|
|
480
|
+
&:before,
|
|
481
|
+
&:after {
|
|
482
|
+
left: 1.125rem;
|
|
483
|
+
}
|
|
484
|
+
}
|
|
586
485
|
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
486
|
+
&:last-child {
|
|
487
|
+
margin-right: 0;
|
|
488
|
+
border-top-right-radius: 1rem;
|
|
489
|
+
border-bottom-right-radius: 1rem;
|
|
490
|
+
padding-left: 0.625rem;
|
|
591
491
|
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
}
|
|
598
|
-
|
|
599
|
-
.opppath > li:last-child:before,
|
|
600
|
-
.opppath > li:last-child:after {
|
|
601
|
-
right: 1.125rem;
|
|
602
|
-
}
|
|
492
|
+
&:before,
|
|
493
|
+
&:after {
|
|
494
|
+
right: 1.125rem;
|
|
495
|
+
}
|
|
496
|
+
}
|
|
603
497
|
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
}
|
|
498
|
+
&:before,
|
|
499
|
+
&:after {
|
|
500
|
+
content: '';
|
|
501
|
+
position: absolute;
|
|
502
|
+
left: -0.35rem;
|
|
503
|
+
right: -0.35rem;
|
|
504
|
+
cursor: pointer;
|
|
505
|
+
background: var(--primary-color);
|
|
506
|
+
}
|
|
613
507
|
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
}
|
|
508
|
+
&:before {
|
|
509
|
+
top: 0;
|
|
510
|
+
height: 1.5rem;
|
|
511
|
+
transform: skew(28deg) translate3d(0, 0, 0);
|
|
512
|
+
}
|
|
619
513
|
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
}
|
|
514
|
+
&:after {
|
|
515
|
+
bottom: 0;
|
|
516
|
+
height: 1.5rem;
|
|
517
|
+
transform: skew(-30deg) translate3d(0, 0, 0);
|
|
518
|
+
}
|
|
625
519
|
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
520
|
+
a {
|
|
521
|
+
font-size: 1rem;
|
|
522
|
+
position: relative;
|
|
523
|
+
display: flex;
|
|
524
|
+
justify-content: center;
|
|
525
|
+
align-items: center;
|
|
526
|
+
height: 2rem;
|
|
527
|
+
padding: 1.45rem;
|
|
528
|
+
text-decoration: none;
|
|
529
|
+
z-index: 5;
|
|
530
|
+
cursor: pointer;
|
|
531
|
+
color: var(--bg-color);
|
|
532
|
+
line-height: 1;
|
|
638
533
|
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
534
|
+
svg {
|
|
535
|
+
position: relative;
|
|
536
|
+
left: 8px;
|
|
537
|
+
color: var(--bg-color);
|
|
538
|
+
}
|
|
539
|
+
}
|
|
540
|
+
}
|
|
644
541
|
}
|
|
645
542
|
|
|
646
543
|
.opp-complete {
|
|
647
|
-
background:
|
|
648
|
-
}
|
|
544
|
+
background: var(--secondary-color) !important;
|
|
649
545
|
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
}
|
|
546
|
+
a {
|
|
547
|
+
color: var(--highlight-color);
|
|
548
|
+
}
|
|
653
549
|
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
550
|
+
&:before,
|
|
551
|
+
&:after {
|
|
552
|
+
background: var(--secondary-color) !important;
|
|
553
|
+
}
|
|
657
554
|
}
|
|
658
555
|
|
|
659
556
|
.oppdets {
|
|
@@ -681,5 +578,127 @@
|
|
|
681
578
|
.btn:hover {
|
|
682
579
|
color: var(--primary-color);
|
|
683
580
|
background: var(--highlight-color);
|
|
684
|
-
border: 1px solid rgba(var(--highlight-
|
|
581
|
+
border: 1px solid rgba(var(--highlight-rgb), 1.05);
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
.crmtitle {
|
|
585
|
+
min-height: auto;
|
|
586
|
+
padding: 1rem;
|
|
587
|
+
margin: 0;
|
|
588
|
+
background: white;
|
|
589
|
+
border-radius: var(--br);
|
|
590
|
+
border: 1px solid rgba(var(--primary-rgb), 0.15);
|
|
591
|
+
position: relative;
|
|
592
|
+
display: flex;
|
|
593
|
+
align-items: center;
|
|
594
|
+
justify-content: space-between;
|
|
595
|
+
|
|
596
|
+
h1 {
|
|
597
|
+
font-weight: 700;
|
|
598
|
+
font-size: 1.25rem;
|
|
599
|
+
margin: 0;
|
|
600
|
+
padding: 0;
|
|
601
|
+
line-height: 1;
|
|
602
|
+
|
|
603
|
+
a {
|
|
604
|
+
text-decoration: none;
|
|
605
|
+
color: var(--secondary-color);
|
|
606
|
+
font-weight: 400;
|
|
607
|
+
}
|
|
608
|
+
|
|
609
|
+
svg {
|
|
610
|
+
color: rgba(var(--primary-rgb), 0.5);
|
|
611
|
+
position: relative;
|
|
612
|
+
top: 2px;
|
|
613
|
+
margin: 0 0.5rem;
|
|
614
|
+
max-width: 15px;
|
|
615
|
+
}
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
.titleInfo {
|
|
619
|
+
width: max-content;
|
|
620
|
+
}
|
|
621
|
+
|
|
622
|
+
.titleInfo span {
|
|
623
|
+
font-size: 0.875em;
|
|
624
|
+
color: rgba(var(--primary-rgb), 0.65);
|
|
625
|
+
}
|
|
626
|
+
}
|
|
627
|
+
|
|
628
|
+
.schedulingTable {
|
|
629
|
+
width: 100%;
|
|
630
|
+
border-collapse: collapse;
|
|
631
|
+
margin: 1em 0;
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
.schedulingTable th,
|
|
635
|
+
.schedulingTable td {
|
|
636
|
+
padding: 0.75rem;
|
|
637
|
+
text-align: left;
|
|
638
|
+
border: 1px solid rgba(var(--primary-rgb), 0.1);
|
|
639
|
+
}
|
|
640
|
+
|
|
641
|
+
.schedulingTable th {
|
|
642
|
+
background-color: var(--secondary-color);
|
|
643
|
+
color: var(--item-color);
|
|
644
|
+
font-weight: bold;
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
.schedulingTable td {
|
|
648
|
+
background-color: rgba(var(--primary-rgb), 0.05);
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
.categoryRow {
|
|
652
|
+
background-color: rgba(var(--primary-rgb), 0.1);
|
|
653
|
+
text-align: left;
|
|
654
|
+
font-weight: bold;
|
|
655
|
+
font-size: 1.2rem;
|
|
656
|
+
color: var(--primary-color);
|
|
657
|
+
}
|
|
658
|
+
|
|
659
|
+
.totalRow {
|
|
660
|
+
background-color: rgba(var(--primary-rgb), 0.05);
|
|
661
|
+
font-weight: bold;
|
|
662
|
+
text-align: right;
|
|
663
|
+
}
|
|
664
|
+
|
|
665
|
+
.schedulingTable td input[type='checkbox'] {
|
|
666
|
+
width: 20px !important;
|
|
667
|
+
height: 20px;
|
|
668
|
+
border-radius: 4px;
|
|
669
|
+
background-color: var(--item-color);
|
|
670
|
+
border: 2px solid rgba(var(--primary-rgb), 0.15);
|
|
671
|
+
position: relative;
|
|
672
|
+
cursor: pointer;
|
|
673
|
+
transition: background-color 0.3s, border-color 0.3s;
|
|
674
|
+
}
|
|
675
|
+
|
|
676
|
+
.schedulingTable td input[type='checkbox']:checked {
|
|
677
|
+
background-color: var(--primary-color);
|
|
678
|
+
border-color: var(--highlight-color);
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
.schedulingTable td input[type='checkbox']:focus {
|
|
682
|
+
outline: none;
|
|
683
|
+
box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.2);
|
|
684
|
+
}
|
|
685
|
+
|
|
686
|
+
/* Custom hover effect for better user experience */
|
|
687
|
+
.schedulingTable td input[type='checkbox']:hover {
|
|
688
|
+
background-color: rgba(var(--primary-rgb), 0.1);
|
|
689
|
+
border-color: rgba(var(--primary-rgb), 0.25);
|
|
690
|
+
}
|
|
691
|
+
|
|
692
|
+
.noDataMessage {
|
|
693
|
+
text-align: center;
|
|
694
|
+
color: var(--secondary-color); /* Maintain a clear and neutral color */
|
|
695
|
+
font-size: 1.125em; /* Slightly reduce the font size for a cleaner look */
|
|
696
|
+
padding: 1.5em; /* Adjust padding for better spacing */
|
|
697
|
+
margin: 2em auto; /* Add auto margin for centering */
|
|
698
|
+
background: #f9f9f9; /* Subtle background to match the theme */
|
|
699
|
+
border: 1px solid #ddd; /* Light border for structure */
|
|
700
|
+
border-radius: 6px; /* Slight rounding for a modern feel */
|
|
701
|
+
max-width: 600px; /* Constrain width for a balanced layout */
|
|
702
|
+
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1); /* Gentle shadow for depth */
|
|
703
|
+
font-style: italic; /* Optional: Add a subtle font style */
|
|
685
704
|
}
|