@visns-studio/visns-components 4.4.3 → 4.4.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/crm/auth/Login.jsx +33 -16
- package/components/crm/auth/styles/Login.module.css +218 -0
- package/components/crm/generic/GenericDetail.jsx +102 -44
- package/components/crm/generic/GenericMain.jsx +6 -5
- package/components/crm/generic/styles/GenericDetail.module.css +578 -0
- package/components/crm/generic/styles/GenericIndex.module.css +178 -183
- package/components/crm/generic/styles/GenericMain.module.css +77 -0
- package/components/crm/styles/AsyncSelect.module.css +6 -10
- package/components/crm/styles/Autocomplete.module.css +3 -3
- package/components/crm/styles/DataGrid.module.css +59 -59
- package/components/crm/styles/Form.module.css +17 -19
- package/components/crm/styles/MultiSelect.module.css +6 -10
- package/components/crm/styles/TableFilter.module.css +1 -0
- package/package.json +1 -1
|
@@ -16,14 +16,14 @@ input[type='file'] {
|
|
|
16
16
|
color: var(--paragraph-color);
|
|
17
17
|
transition: box-shadow 0.15s linear;
|
|
18
18
|
font-size: 1.25em;
|
|
19
|
+
}
|
|
19
20
|
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
21
|
+
input[type='file']:focus {
|
|
22
|
+
border: 1px solid var(--primary-color);
|
|
23
|
+
}
|
|
23
24
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
}
|
|
25
|
+
input[type='file']:hover {
|
|
26
|
+
border: 1px solid var(--primary-color);
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
/* Form styles */
|
|
@@ -440,15 +440,13 @@ select {
|
|
|
440
440
|
}
|
|
441
441
|
|
|
442
442
|
/* Multiselect */
|
|
443
|
-
.visns__ms input {
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
}
|
|
443
|
+
.visns__ms input:hover {
|
|
444
|
+
box-shadow: none !important;
|
|
445
|
+
transition: box-shadow 0.15s linear !important;
|
|
446
|
+
}
|
|
448
447
|
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
}
|
|
448
|
+
.visns__ms input:focus {
|
|
449
|
+
box-shadow: none !important;
|
|
452
450
|
}
|
|
453
451
|
|
|
454
452
|
.btn {
|
|
@@ -467,10 +465,10 @@ select {
|
|
|
467
465
|
outline: none;
|
|
468
466
|
transition: all 0.2s cubic-bezier(0.85, 0, 0.15, 1) 0s;
|
|
469
467
|
font-size: 1.25em;
|
|
468
|
+
}
|
|
470
469
|
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
}
|
|
470
|
+
.btn:hover {
|
|
471
|
+
color: var(--primary-color);
|
|
472
|
+
background: var(--highlight-color);
|
|
473
|
+
border: 1px solid rgba(var(--highlight-color-rgb), 1.05);
|
|
476
474
|
}
|
|
@@ -1,12 +1,8 @@
|
|
|
1
|
-
.visns__ms {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
transition: box-shadow 0.15s linear !important;
|
|
6
|
-
}
|
|
1
|
+
.visns__ms input:hover {
|
|
2
|
+
box-shadow: none !important;
|
|
3
|
+
transition: box-shadow 0.15s linear !important;
|
|
4
|
+
}
|
|
7
5
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
}
|
|
11
|
-
}
|
|
6
|
+
.visns__ms input:focus {
|
|
7
|
+
box-shadow: none !important;
|
|
12
8
|
}
|
package/package.json
CHANGED