@selco/installation-ui-css 1.0.16 → 1.0.18

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@selco/installation-ui-css",
3
- "version": "1.0.16",
3
+ "version": "1.0.18",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.css",
6
6
  "author": "Adithya Katuku",
package/src/index.scss CHANGED
@@ -120,9 +120,12 @@
120
120
  @import "./pages/employee/activitydetailstable.scss";
121
121
  @import "./pages/employee/qc/facilitytable.scss";
122
122
  @import "./pages/employee/amc/visittable.scss";
123
+ @import "./pages/employee/fa/adminfacilitytable.scss";
124
+ @import "pages/employee/formcomposer/reverseactionbarfixed.scss";
125
+ @import "pages/employee/fa/facilitydetailstab.scss";
126
+ @import "pages/employee/fa/facilitydetailstable.scss";
123
127
  @import "./pages/employee/org/orguserstable.scss";
124
128
  @import "./pages/employee/org/adminorganizationtable.scss";
125
- @import "./pages/employee/formcomposer/reverseactionbarfixed.scss";
126
129
 
127
130
 
128
131
  .wbh-header-container {
@@ -899,9 +902,30 @@ input[type="number"] {
899
902
  }
900
903
  }
901
904
 
905
+ .digit-toast-success {
906
+ min-width: fit-content;
907
+ max-width: 200px !important;
908
+ left: 50% !important;
909
+ transform: translateX(-50%) !important;
910
+ }
911
+
912
+ .admin-form {
913
+ .digit-toast-success {
914
+ bottom: 20% !important;
915
+ }
916
+ }
917
+
902
918
  .org-user-assignment {
903
919
  .employeeCard {
904
920
  margin-bottom: 0 !important;
905
921
  padding: 0 !important;
906
922
  }
923
+ }
924
+
925
+ .toggle-option-container {
926
+ width: 60px !important;
927
+ }
928
+
929
+ .digit-toggle-btn-wrap {
930
+ width: 60px !important;
907
931
  }
@@ -0,0 +1,66 @@
1
+ .admin-facility-table {
2
+ overflow-x: auto;
3
+ box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.2);
4
+ width: 100%;
5
+ display: flex;
6
+ align-items: flex-start;
7
+
8
+ .table {
9
+ width: 100%;
10
+ min-width: fit-content;
11
+ border-collapse: collapse;
12
+ font-family: Roboto;
13
+ font-size: 14px;
14
+ background-color: white;
15
+
16
+ thead {
17
+ tr {
18
+ border: 1px solid #D6D5D4;
19
+ }
20
+ th {
21
+ background-color: #EEEEEE;
22
+ color: #000000;
23
+ font-weight: 600;
24
+ text-align: left;
25
+ padding: 16px 18px;
26
+ font-size: 14px;
27
+ line-height: 18px;
28
+ }
29
+ }
30
+
31
+ tbody {
32
+ tr {
33
+ cursor: pointer;
34
+ border: 1px solid #D6D5D4;
35
+ &:hover {
36
+ background-color: #F2F2F2;
37
+ }
38
+ }
39
+ td {
40
+ padding: 16px 18px;
41
+ color: #363636;
42
+ font-size: 14px;
43
+ line-height: 1.4;
44
+ background-color: transparent;
45
+ }
46
+ }
47
+ }
48
+
49
+ @media (max-width: 768px) {
50
+ .table {
51
+ min-width: 800px;
52
+ white-space: nowrap;
53
+ }
54
+
55
+ .table th,
56
+ .table td {
57
+ min-width: 120px;
58
+ }
59
+ }
60
+ }
61
+
62
+ .admin-facility-table-wrapper {
63
+ .pagination {
64
+ border: none;
65
+ }
66
+ }
@@ -0,0 +1,76 @@
1
+ .digit-tab-main {
2
+ position: relative;
3
+
4
+ .digit-tab {
5
+ display: flex;
6
+ align-items: flex-end;
7
+ gap: 0;
8
+ position: relative !important;
9
+ z-index: 2;
10
+
11
+ .digit-tab-list {
12
+ cursor: pointer;
13
+ border-radius: 8px 8px 0 0;
14
+ background-color: #FFFFFF;
15
+ transition: all 0.2s ease;
16
+ margin-bottom: -1px;
17
+ position: relative !important;
18
+
19
+ &:not(:last-child)::after {
20
+ content: '';
21
+ position: absolute;
22
+ right: 0;
23
+ top: 50%;
24
+ transform: translateY(-50%);
25
+ height: 45px;
26
+ width: 1px;
27
+ background-color: #D6D5D5;
28
+ }
29
+
30
+ &.active {
31
+ background-color: #FAFAFA;
32
+
33
+ .digit-tab-label {
34
+ color: #C84C0E;
35
+ }
36
+ }
37
+
38
+ &:not(.active) {
39
+ .digit-tab-label {
40
+ color: #505A5F;
41
+ }
42
+ }
43
+
44
+ .digit-tab-item {
45
+ display: flex;
46
+ background-color: transparent;
47
+ align-items: center;
48
+ gap: 8px;
49
+ border: none;
50
+
51
+ .digit-tab-icon {
52
+ display: flex;
53
+ align-items: center;
54
+ }
55
+
56
+ .digit-tab-label {
57
+ font-family: Roboto;
58
+ font-size: 16px;
59
+ font-weight: 700;
60
+ }
61
+ }
62
+ }
63
+ }
64
+
65
+ .tab-content-wrapper {
66
+ position: relative;
67
+ overflow: auto;
68
+ z-index: 1;
69
+ background-color: #fafafa;
70
+ padding: 15px;
71
+ }
72
+ }
73
+
74
+ .digit-tab-main .digit-tab .digit-tab-list {
75
+ position: relative !important;
76
+ }
@@ -0,0 +1,51 @@
1
+ .facility-details-table {
2
+ overflow-x: auto;
3
+ box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.2);
4
+ width: 100%;
5
+ display: flex;
6
+ align-items: flex-start;
7
+
8
+ .table {
9
+ width: 100%;
10
+ min-width: fit-content;
11
+ border-collapse: collapse;
12
+ font-family: Roboto;
13
+ font-size: 14px;
14
+ background-color: white;
15
+
16
+ thead {
17
+ th {
18
+ background-color: #EEEEEE;
19
+ color: #000000;
20
+ font-weight: 600;
21
+ text-align: left;
22
+ padding: 16px 18px;
23
+ font-size: 14px;
24
+ line-height: 18px;
25
+ border: 1px solid #D6D5D4;
26
+ }
27
+ }
28
+
29
+ tbody {
30
+ td {
31
+ padding: 16px 18px;
32
+ border: 1px solid #D6D5D4;
33
+ color: #363636;
34
+ font-size: 14px;
35
+ line-height: 1.4;
36
+ }
37
+ }
38
+ }
39
+
40
+ @media (max-width: 768px) {
41
+ .table {
42
+ min-width: 800px;
43
+ white-space: nowrap;
44
+ }
45
+
46
+ .table th,
47
+ .table td {
48
+ min-width: 120px;
49
+ }
50
+ }
51
+ }