@selco/installation-ui-css 1.0.14 → 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/dist/index.css +61 -129
- package/dist/index.min.css +2 -2
- package/package.json +1 -1
- package/src/index.scss +9 -10
- package/src/pages/employee/formcomposer/reverseactionbarfixed.scss +1 -2
- package/src/pages/employee/{fa/adminfacilitytable.scss → org/adminorganizationtable.scss} +2 -2
- package/src/pages/employee/{fa/facilitydetailstable.scss → org/orguserstable.scss} +1 -1
- package/src/pages/employee/fa/facilitydetailstab.scss +0 -76
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.16
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) 2026 Adithya Katuku
|
|
5
5
|
*
|
|
@@ -11254,7 +11254,7 @@ body {
|
|
|
11254
11254
|
.health-facility-table-wrapper .pagination {
|
|
11255
11255
|
border: none; }
|
|
11256
11256
|
|
|
11257
|
-
.
|
|
11257
|
+
.org-users-table {
|
|
11258
11258
|
overflow-x: auto;
|
|
11259
11259
|
-webkit-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.2);
|
|
11260
11260
|
box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.2);
|
|
@@ -11265,7 +11265,7 @@ body {
|
|
|
11265
11265
|
-webkit-box-align: start;
|
|
11266
11266
|
-ms-flex-align: start;
|
|
11267
11267
|
align-items: flex-start; }
|
|
11268
|
-
.
|
|
11268
|
+
.org-users-table .table {
|
|
11269
11269
|
width: 100%;
|
|
11270
11270
|
min-width: -webkit-fit-content;
|
|
11271
11271
|
min-width: -moz-fit-content;
|
|
@@ -11274,9 +11274,51 @@ body {
|
|
|
11274
11274
|
font-family: Roboto;
|
|
11275
11275
|
font-size: 14px;
|
|
11276
11276
|
background-color: #fff; }
|
|
11277
|
-
.
|
|
11277
|
+
.org-users-table .table thead th {
|
|
11278
|
+
background-color: #eee;
|
|
11279
|
+
color: #000;
|
|
11280
|
+
font-weight: 600;
|
|
11281
|
+
text-align: left;
|
|
11282
|
+
padding: 16px 18px;
|
|
11283
|
+
font-size: 14px;
|
|
11284
|
+
line-height: 18px;
|
|
11285
|
+
border: 1px solid #d6d5d4; }
|
|
11286
|
+
.org-users-table .table tbody td {
|
|
11287
|
+
padding: 16px 18px;
|
|
11288
|
+
border: 1px solid #d6d5d4;
|
|
11289
|
+
color: #363636;
|
|
11290
|
+
font-size: 14px;
|
|
11291
|
+
line-height: 1.4; }
|
|
11292
|
+
@media (max-width: 768px) {
|
|
11293
|
+
.org-users-table .table {
|
|
11294
|
+
min-width: 800px;
|
|
11295
|
+
white-space: nowrap; }
|
|
11296
|
+
.org-users-table .table td, .org-users-table .table th {
|
|
11297
|
+
min-width: 120px; } }
|
|
11298
|
+
|
|
11299
|
+
.admin-org-table {
|
|
11300
|
+
overflow-x: auto;
|
|
11301
|
+
-webkit-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.2);
|
|
11302
|
+
box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.2);
|
|
11303
|
+
width: 100%;
|
|
11304
|
+
display: -webkit-box;
|
|
11305
|
+
display: -ms-flexbox;
|
|
11306
|
+
display: flex;
|
|
11307
|
+
-webkit-box-align: start;
|
|
11308
|
+
-ms-flex-align: start;
|
|
11309
|
+
align-items: flex-start; }
|
|
11310
|
+
.admin-org-table .table {
|
|
11311
|
+
width: 100%;
|
|
11312
|
+
min-width: -webkit-fit-content;
|
|
11313
|
+
min-width: -moz-fit-content;
|
|
11314
|
+
min-width: fit-content;
|
|
11315
|
+
border-collapse: collapse;
|
|
11316
|
+
font-family: Roboto;
|
|
11317
|
+
font-size: 14px;
|
|
11318
|
+
background-color: #fff; }
|
|
11319
|
+
.admin-org-table .table thead tr {
|
|
11278
11320
|
border: 1px solid #d6d5d4; }
|
|
11279
|
-
.admin-
|
|
11321
|
+
.admin-org-table .table thead th {
|
|
11280
11322
|
background-color: #eee;
|
|
11281
11323
|
color: #000;
|
|
11282
11324
|
font-weight: 600;
|
|
@@ -11284,25 +11326,25 @@ body {
|
|
|
11284
11326
|
padding: 16px 18px;
|
|
11285
11327
|
font-size: 14px;
|
|
11286
11328
|
line-height: 18px; }
|
|
11287
|
-
.admin-
|
|
11329
|
+
.admin-org-table .table tbody tr {
|
|
11288
11330
|
cursor: pointer;
|
|
11289
11331
|
border: 1px solid #d6d5d4; }
|
|
11290
|
-
.admin-
|
|
11332
|
+
.admin-org-table .table tbody tr:hover {
|
|
11291
11333
|
background-color: #f2f2f2; }
|
|
11292
|
-
.admin-
|
|
11334
|
+
.admin-org-table .table tbody td {
|
|
11293
11335
|
padding: 16px 18px;
|
|
11294
11336
|
color: #363636;
|
|
11295
11337
|
font-size: 14px;
|
|
11296
11338
|
line-height: 1.4;
|
|
11297
11339
|
background-color: initial; }
|
|
11298
11340
|
@media (max-width: 768px) {
|
|
11299
|
-
.admin-
|
|
11341
|
+
.admin-org-table .table {
|
|
11300
11342
|
min-width: 800px;
|
|
11301
11343
|
white-space: nowrap; }
|
|
11302
|
-
.admin-
|
|
11344
|
+
.admin-org-table .table td, .admin-org-table .table th {
|
|
11303
11345
|
min-width: 120px; } }
|
|
11304
11346
|
|
|
11305
|
-
.admin-
|
|
11347
|
+
.admin-org-table-wrapper .pagination {
|
|
11306
11348
|
border: none; }
|
|
11307
11349
|
|
|
11308
11350
|
.reverse-actionbar-fixed {
|
|
@@ -11369,115 +11411,6 @@ body {
|
|
|
11369
11411
|
margin-left: 4rem;
|
|
11370
11412
|
width: 240px; } }
|
|
11371
11413
|
|
|
11372
|
-
.digit-tab-main {
|
|
11373
|
-
position: relative; }
|
|
11374
|
-
.digit-tab-main .digit-tab {
|
|
11375
|
-
display: -webkit-box;
|
|
11376
|
-
display: -ms-flexbox;
|
|
11377
|
-
display: flex;
|
|
11378
|
-
-webkit-box-align: end;
|
|
11379
|
-
-ms-flex-align: end;
|
|
11380
|
-
align-items: flex-end;
|
|
11381
|
-
grid-gap: 0;
|
|
11382
|
-
gap: 0;
|
|
11383
|
-
z-index: 2; }
|
|
11384
|
-
.digit-tab-main .digit-tab .digit-tab-list {
|
|
11385
|
-
cursor: pointer;
|
|
11386
|
-
border-radius: 8px 8px 0 0;
|
|
11387
|
-
background-color: #fff;
|
|
11388
|
-
-webkit-transition: all .2s ease;
|
|
11389
|
-
transition: all .2s ease;
|
|
11390
|
-
margin-bottom: -1px; }
|
|
11391
|
-
.digit-tab-main .digit-tab .digit-tab-list:not(:last-child):after {
|
|
11392
|
-
content: "";
|
|
11393
|
-
position: absolute;
|
|
11394
|
-
right: 0;
|
|
11395
|
-
top: 50%;
|
|
11396
|
-
-webkit-transform: translateY(-50%);
|
|
11397
|
-
transform: translateY(-50%);
|
|
11398
|
-
height: 45px;
|
|
11399
|
-
width: 1px;
|
|
11400
|
-
background-color: #d6d5d5; }
|
|
11401
|
-
.digit-tab-main .digit-tab .digit-tab-list.active {
|
|
11402
|
-
background-color: #fafafa; }
|
|
11403
|
-
.digit-tab-main .digit-tab .digit-tab-list.active .digit-tab-label {
|
|
11404
|
-
color: #c84c0e; }
|
|
11405
|
-
.digit-tab-main .digit-tab .digit-tab-list:not(.active) .digit-tab-label {
|
|
11406
|
-
color: #505a5f; }
|
|
11407
|
-
.digit-tab-main .digit-tab .digit-tab-list .digit-tab-item {
|
|
11408
|
-
display: -webkit-box;
|
|
11409
|
-
display: -ms-flexbox;
|
|
11410
|
-
display: flex;
|
|
11411
|
-
background-color: initial;
|
|
11412
|
-
-webkit-box-align: center;
|
|
11413
|
-
-ms-flex-align: center;
|
|
11414
|
-
align-items: center;
|
|
11415
|
-
grid-gap: 8px;
|
|
11416
|
-
gap: 8px;
|
|
11417
|
-
border: none; }
|
|
11418
|
-
.digit-tab-main .digit-tab .digit-tab-list .digit-tab-item .digit-tab-icon {
|
|
11419
|
-
display: -webkit-box;
|
|
11420
|
-
display: -ms-flexbox;
|
|
11421
|
-
display: flex;
|
|
11422
|
-
-webkit-box-align: center;
|
|
11423
|
-
-ms-flex-align: center;
|
|
11424
|
-
align-items: center; }
|
|
11425
|
-
.digit-tab-main .digit-tab .digit-tab-list .digit-tab-item .digit-tab-label {
|
|
11426
|
-
font-family: Roboto;
|
|
11427
|
-
font-size: 16px;
|
|
11428
|
-
font-weight: 700; }
|
|
11429
|
-
.digit-tab-main .tab-content-wrapper {
|
|
11430
|
-
position: relative;
|
|
11431
|
-
overflow: auto;
|
|
11432
|
-
z-index: 1;
|
|
11433
|
-
background-color: #fafafa;
|
|
11434
|
-
padding: 15px; }
|
|
11435
|
-
|
|
11436
|
-
.digit-tab-main .digit-tab .digit-tab-list {
|
|
11437
|
-
position: relative !important; }
|
|
11438
|
-
|
|
11439
|
-
.facility-details-table {
|
|
11440
|
-
overflow-x: auto;
|
|
11441
|
-
-webkit-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.2);
|
|
11442
|
-
box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.2);
|
|
11443
|
-
width: 100%;
|
|
11444
|
-
display: -webkit-box;
|
|
11445
|
-
display: -ms-flexbox;
|
|
11446
|
-
display: flex;
|
|
11447
|
-
-webkit-box-align: start;
|
|
11448
|
-
-ms-flex-align: start;
|
|
11449
|
-
align-items: flex-start; }
|
|
11450
|
-
.facility-details-table .table {
|
|
11451
|
-
width: 100%;
|
|
11452
|
-
min-width: -webkit-fit-content;
|
|
11453
|
-
min-width: -moz-fit-content;
|
|
11454
|
-
min-width: fit-content;
|
|
11455
|
-
border-collapse: collapse;
|
|
11456
|
-
font-family: Roboto;
|
|
11457
|
-
font-size: 14px;
|
|
11458
|
-
background-color: #fff; }
|
|
11459
|
-
.facility-details-table .table thead th {
|
|
11460
|
-
background-color: #eee;
|
|
11461
|
-
color: #000;
|
|
11462
|
-
font-weight: 600;
|
|
11463
|
-
text-align: left;
|
|
11464
|
-
padding: 16px 18px;
|
|
11465
|
-
font-size: 14px;
|
|
11466
|
-
line-height: 18px;
|
|
11467
|
-
border: 1px solid #d6d5d4; }
|
|
11468
|
-
.facility-details-table .table tbody td {
|
|
11469
|
-
padding: 16px 18px;
|
|
11470
|
-
border: 1px solid #d6d5d4;
|
|
11471
|
-
color: #363636;
|
|
11472
|
-
font-size: 14px;
|
|
11473
|
-
line-height: 1.4; }
|
|
11474
|
-
@media (max-width: 768px) {
|
|
11475
|
-
.facility-details-table .table {
|
|
11476
|
-
min-width: 800px;
|
|
11477
|
-
white-space: nowrap; }
|
|
11478
|
-
.facility-details-table .table td, .facility-details-table .table th {
|
|
11479
|
-
min-width: 120px; } }
|
|
11480
|
-
|
|
11481
11414
|
.wbh-header .header-icon-container {
|
|
11482
11415
|
cursor: pointer;
|
|
11483
11416
|
color: #c84c0e;
|
|
@@ -11743,6 +11676,10 @@ body {
|
|
|
11743
11676
|
.create-project-wrapper .employee-select-wrap .options-card {
|
|
11744
11677
|
margin-top: 40px; }
|
|
11745
11678
|
|
|
11679
|
+
.org-user-assignment .employeeCard {
|
|
11680
|
+
margin-bottom: 0 !important;
|
|
11681
|
+
padding: 0 !important; }
|
|
11682
|
+
|
|
11746
11683
|
.typography.text-heading-xl {
|
|
11747
11684
|
font-family: Roboto Condensed;
|
|
11748
11685
|
font-style: normal;
|
|
@@ -14144,6 +14081,7 @@ button:hover {
|
|
|
14144
14081
|
.digit-toast-success {
|
|
14145
14082
|
-webkit-transform: translateX(-50%);
|
|
14146
14083
|
transform: translateX(-50%);
|
|
14084
|
+
left: 50% !important;
|
|
14147
14085
|
bottom: 10% !important; }
|
|
14148
14086
|
|
|
14149
14087
|
@-webkit-keyframes slideInFromBottom {
|
|
@@ -14987,12 +14925,6 @@ input[type=number], .checkbox-wrap .input-emp[type=number], .digit-checkbox-wrap
|
|
|
14987
14925
|
.create-project-wrapper .employee-select-wrap .options-card {
|
|
14988
14926
|
margin-top: 40px; }
|
|
14989
14927
|
|
|
14990
|
-
.
|
|
14991
|
-
|
|
14992
|
-
|
|
14993
|
-
min-width: -moz-fit-content;
|
|
14994
|
-
min-width: fit-content;
|
|
14995
|
-
max-width: 200px !important;
|
|
14996
|
-
left: 50% !important;
|
|
14997
|
-
-webkit-transform: translateX(-50%) !important;
|
|
14998
|
-
transform: translateX(-50%) !important; }
|
|
14928
|
+
.org-user-assignment .employeeCard {
|
|
14929
|
+
margin-bottom: 0 !important;
|
|
14930
|
+
padding: 0 !important; }
|