@selco/installation-ui-css 1.0.11 → 1.0.13
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/dist/index.css +123 -1
- package/dist/index.min.css +2 -2
- package/package.json +1 -1
- package/src/index.scss +10 -0
- package/src/pages/employee/amc/visittable.scss +62 -0
- package/src/pages/employee/qc/facilitytable.scss +84 -0
package/dist/index.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* @selco/installation-ui-css - 1.0.
|
|
2
|
+
* @selco/installation-ui-css - 1.0.13
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) 2025 Adithya Katuku
|
|
5
5
|
*
|
|
@@ -11138,6 +11138,122 @@ body {
|
|
|
11138
11138
|
.activity-details-table .table td:last-child, .activity-details-table .table th:last-child {
|
|
11139
11139
|
min-width: 80px; } }
|
|
11140
11140
|
|
|
11141
|
+
.health-facility-table {
|
|
11142
|
+
overflow-x: auto;
|
|
11143
|
+
-webkit-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.2);
|
|
11144
|
+
box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.2);
|
|
11145
|
+
width: 100%;
|
|
11146
|
+
display: -webkit-box;
|
|
11147
|
+
display: -ms-flexbox;
|
|
11148
|
+
display: flex;
|
|
11149
|
+
-webkit-box-align: start;
|
|
11150
|
+
-ms-flex-align: start;
|
|
11151
|
+
align-items: flex-start; }
|
|
11152
|
+
.health-facility-table .table {
|
|
11153
|
+
width: 100%;
|
|
11154
|
+
min-width: -webkit-fit-content;
|
|
11155
|
+
min-width: -moz-fit-content;
|
|
11156
|
+
min-width: fit-content;
|
|
11157
|
+
border-collapse: collapse;
|
|
11158
|
+
font-family: Roboto;
|
|
11159
|
+
font-size: 14px;
|
|
11160
|
+
background-color: #fff; }
|
|
11161
|
+
.health-facility-table .table thead th {
|
|
11162
|
+
background-color: #eee;
|
|
11163
|
+
color: #000;
|
|
11164
|
+
font-weight: 600;
|
|
11165
|
+
text-align: left;
|
|
11166
|
+
padding: 16px 18px;
|
|
11167
|
+
font-size: 14px;
|
|
11168
|
+
line-height: 18px;
|
|
11169
|
+
border: 1px solid #d6d5d4; }
|
|
11170
|
+
.health-facility-table .table thead th:first-child {
|
|
11171
|
+
background-color: initial;
|
|
11172
|
+
border: none;
|
|
11173
|
+
text-align: center;
|
|
11174
|
+
width: 60px;
|
|
11175
|
+
min-width: -webkit-fit-content !important;
|
|
11176
|
+
min-width: -moz-fit-content !important;
|
|
11177
|
+
min-width: fit-content !important;
|
|
11178
|
+
position: relative; }
|
|
11179
|
+
.health-facility-table .table tbody td {
|
|
11180
|
+
padding: 16px 18px;
|
|
11181
|
+
border: 1px solid #d6d5d4;
|
|
11182
|
+
color: #363636;
|
|
11183
|
+
font-size: 14px;
|
|
11184
|
+
line-height: 1.4; }
|
|
11185
|
+
.health-facility-table .table tbody td:first-child {
|
|
11186
|
+
background-color: initial;
|
|
11187
|
+
border: none;
|
|
11188
|
+
text-align: center;
|
|
11189
|
+
width: 60px;
|
|
11190
|
+
min-width: -webkit-fit-content;
|
|
11191
|
+
min-width: -moz-fit-content;
|
|
11192
|
+
min-width: fit-content;
|
|
11193
|
+
position: relative; }
|
|
11194
|
+
.health-facility-table .table tbody td:nth-child(2) {
|
|
11195
|
+
color: #c84c0e;
|
|
11196
|
+
font-weight: 600; }
|
|
11197
|
+
@media (max-width: 768px) {
|
|
11198
|
+
.health-facility-table .table {
|
|
11199
|
+
min-width: 800px;
|
|
11200
|
+
white-space: nowrap; }
|
|
11201
|
+
.health-facility-table .table td, .health-facility-table .table th {
|
|
11202
|
+
min-width: 120px; }
|
|
11203
|
+
.health-facility-table .table td:first-child, .health-facility-table .table th:first-child {
|
|
11204
|
+
min-width: 60px; } }
|
|
11205
|
+
|
|
11206
|
+
.health-facility-table-wrapper .pagination {
|
|
11207
|
+
border: none; }
|
|
11208
|
+
|
|
11209
|
+
.visit-table {
|
|
11210
|
+
overflow-x: auto;
|
|
11211
|
+
-webkit-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.2);
|
|
11212
|
+
box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.2);
|
|
11213
|
+
width: 100%;
|
|
11214
|
+
display: -webkit-box;
|
|
11215
|
+
display: -ms-flexbox;
|
|
11216
|
+
display: flex;
|
|
11217
|
+
-webkit-box-align: start;
|
|
11218
|
+
-ms-flex-align: start;
|
|
11219
|
+
align-items: flex-start; }
|
|
11220
|
+
.visit-table .table {
|
|
11221
|
+
width: 100%;
|
|
11222
|
+
min-width: -webkit-fit-content;
|
|
11223
|
+
min-width: -moz-fit-content;
|
|
11224
|
+
min-width: fit-content;
|
|
11225
|
+
border-collapse: collapse;
|
|
11226
|
+
font-family: Roboto;
|
|
11227
|
+
font-size: 14px;
|
|
11228
|
+
background-color: #fff; }
|
|
11229
|
+
.visit-table .table thead th {
|
|
11230
|
+
background-color: #eee;
|
|
11231
|
+
color: #000;
|
|
11232
|
+
font-weight: 600;
|
|
11233
|
+
text-align: left;
|
|
11234
|
+
padding: 16px 18px;
|
|
11235
|
+
font-size: 14px;
|
|
11236
|
+
line-height: 18px;
|
|
11237
|
+
border: 1px solid #d6d5d4; }
|
|
11238
|
+
.visit-table .table tbody td {
|
|
11239
|
+
padding: 16px 18px;
|
|
11240
|
+
border: 1px solid #d6d5d4;
|
|
11241
|
+
color: #363636;
|
|
11242
|
+
font-size: 14px;
|
|
11243
|
+
line-height: 1.4; }
|
|
11244
|
+
.visit-table .table tbody td:nth-child(2) {
|
|
11245
|
+
color: #c84c0e;
|
|
11246
|
+
font-weight: 600; }
|
|
11247
|
+
@media (max-width: 768px) {
|
|
11248
|
+
.visit-table .table {
|
|
11249
|
+
min-width: 800px;
|
|
11250
|
+
white-space: nowrap; }
|
|
11251
|
+
.visit-table .table td, .visit-table .table th {
|
|
11252
|
+
min-width: 120px; } }
|
|
11253
|
+
|
|
11254
|
+
.health-facility-table-wrapper .pagination {
|
|
11255
|
+
border: none; }
|
|
11256
|
+
|
|
11141
11257
|
.wbh-header .header-icon-container {
|
|
11142
11258
|
cursor: pointer;
|
|
11143
11259
|
color: #c84c0e;
|
|
@@ -11400,6 +11516,9 @@ body {
|
|
|
11400
11516
|
font-size: 16px;
|
|
11401
11517
|
text-decoration: underline; }
|
|
11402
11518
|
|
|
11519
|
+
.create-project-wrapper .employee-select-wrap .options-card {
|
|
11520
|
+
margin-top: 40px; }
|
|
11521
|
+
|
|
11403
11522
|
.typography.text-heading-xl {
|
|
11404
11523
|
font-family: Roboto Condensed;
|
|
11405
11524
|
font-style: normal;
|
|
@@ -14641,3 +14760,6 @@ input[type=number], .checkbox-wrap .input-emp[type=number], .digit-checkbox-wrap
|
|
|
14641
14760
|
.digit-multiselectdropdown-wrap .digit-multiselectdropodwn-menuitem .digit-label.selectAll {
|
|
14642
14761
|
font-size: 16px;
|
|
14643
14762
|
text-decoration: underline; }
|
|
14763
|
+
|
|
14764
|
+
.create-project-wrapper .employee-select-wrap .options-card {
|
|
14765
|
+
margin-top: 40px; }
|