@selco/installation-ui-css 1.0.15 → 1.0.16

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.15",
3
+ "version": "1.0.16",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.css",
6
6
  "author": "Adithya Katuku",
package/src/index.scss CHANGED
@@ -120,10 +120,10 @@
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
+ @import "./pages/employee/org/orguserstable.scss";
124
+ @import "./pages/employee/org/adminorganizationtable.scss";
125
+ @import "./pages/employee/formcomposer/reverseactionbarfixed.scss";
126
+
127
127
 
128
128
  .wbh-header-container {
129
129
  display: flex !important;
@@ -899,9 +899,9 @@ input[type="number"] {
899
899
  }
900
900
  }
901
901
 
902
- .digit-toast-success {
903
- min-width: fit-content;
904
- max-width: 200px !important;
905
- left: 50% !important;
906
- transform: translateX(-50%) !important;
902
+ .org-user-assignment {
903
+ .employeeCard {
904
+ margin-bottom: 0 !important;
905
+ padding: 0 !important;
906
+ }
907
907
  }
@@ -49,5 +49,4 @@
49
49
  width: 240px;
50
50
  }
51
51
  }
52
- }
53
-
52
+ }
@@ -1,4 +1,4 @@
1
- .admin-facility-table {
1
+ .admin-org-table {
2
2
  overflow-x: auto;
3
3
  box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.2);
4
4
  width: 100%;
@@ -59,7 +59,7 @@
59
59
  }
60
60
  }
61
61
 
62
- .admin-facility-table-wrapper {
62
+ .admin-org-table-wrapper {
63
63
  .pagination {
64
64
  border: none;
65
65
  }
@@ -1,4 +1,4 @@
1
- .facility-details-table {
1
+ .org-users-table {
2
2
  overflow-x: auto;
3
3
  box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.2);
4
4
  width: 100%;
@@ -1,76 +0,0 @@
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
- }