@egovernments/digit-ui-health-css 0.3.21 → 0.3.23

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": "@egovernments/digit-ui-health-css",
3
- "version": "0.3.21",
3
+ "version": "0.3.23",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.css",
6
6
  "author": "Jagankumar <jagan.kumar@egov.org.in>",
@@ -1336,7 +1336,6 @@ tbody {
1336
1336
  align-items: center;
1337
1337
  }
1338
1338
 
1339
- /* Custom styling for PGR Inbox date range field - targets the 3rd search field */
1340
1339
  .pgr-inbox-wrapper {
1341
1340
  .digit-date-range-label-field {
1342
1341
  gap: 0.25rem !important;
@@ -1367,7 +1366,6 @@ tbody {
1367
1366
  }
1368
1367
  }
1369
1368
 
1370
- /* Boundary dropdown container - increased row gap between dropdowns */
1371
1369
  .boundary-dropdown-container {
1372
1370
  display: flex;
1373
1371
  flex-direction: column;
@@ -1383,7 +1381,6 @@ tbody {
1383
1381
  }
1384
1382
  }
1385
1383
 
1386
- /* Add line separators between form sections in CreateComplaint form */
1387
1384
  .custom-form-complaints {
1388
1385
  .digit-card-section-header:not(:first-of-type) {
1389
1386
  border-top: 0.2rem solid #D6D5D5;
@@ -1395,7 +1392,6 @@ tbody {
1395
1392
  }
1396
1393
  }
1397
1394
 
1398
- /* Add row-gap between Upload and Download button in PGR workflow modal */
1399
1395
  .pgr-upload-file-wrapper {
1400
1396
  display: flex;
1401
1397
  flex-direction: column;
@@ -1422,3 +1418,71 @@ tbody {
1422
1418
  position: relative;
1423
1419
  right: 2.3rem;
1424
1420
  }
1421
+
1422
+ .pgr-response-btn {
1423
+ box-sizing: border-box;
1424
+ display: flex;
1425
+ flex-direction: row;
1426
+ justify-content: center;
1427
+ align-items: center;
1428
+ padding: 0.5rem 1.5rem;
1429
+ gap: 0.5rem;
1430
+ width: 20.813rem;
1431
+ height: 2.5rem;
1432
+ flex: none;
1433
+ order: 0;
1434
+ flex-grow: 0;
1435
+ margin: 0.5rem;
1436
+ }
1437
+
1438
+ .create-complaint-btn {
1439
+ background: #FFFFFF;
1440
+ border: 1px solid #C84C0E;
1441
+ }
1442
+
1443
+ .back-btn {
1444
+ background: #C84C0E;
1445
+ border: 1px solid #C84C0E;
1446
+ margin-right: 6rem;
1447
+ }
1448
+
1449
+ .digit-button-primary {
1450
+ &.pgr-response-btn {
1451
+ .icon-label-container {
1452
+ justify-content: center;
1453
+
1454
+ .digit-button-label {
1455
+ width: fit-content
1456
+ }
1457
+ }
1458
+ }
1459
+ }
1460
+
1461
+ .boundary-hierarchy-container {
1462
+ width: 100%;
1463
+ margin: 1rem 0;
1464
+ }
1465
+
1466
+ .boundary-hierarchy-list {
1467
+ width: 100%;
1468
+ }
1469
+
1470
+ .boundary-hierarchy-item {
1471
+ display: flex;
1472
+ align-items: center;
1473
+ gap: 1.5rem;
1474
+ margin-bottom: 0.5rem;
1475
+ width: 100%;
1476
+ }
1477
+
1478
+ .boundary-hierarchy-label {
1479
+ font-weight: 500;
1480
+ min-width: 20%;
1481
+ flex-shrink: 0;
1482
+ }
1483
+
1484
+ .boundary-hierarchy-code {
1485
+ flex: 1;
1486
+ max-width: 80%;
1487
+ word-break: break-word;
1488
+ }