@egovernments/digit-ui-health-css 0.3.20 → 0.3.22
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 +51 -1
- package/dist/index.min.css +2 -2
- package/package.json +1 -1
- package/src/pages/employee/index.scss +54 -0
package/package.json
CHANGED
|
@@ -1341,6 +1341,30 @@ tbody {
|
|
|
1341
1341
|
.digit-date-range-label-field {
|
|
1342
1342
|
gap: 0.25rem !important;
|
|
1343
1343
|
}
|
|
1344
|
+
|
|
1345
|
+
.digit-employee-select-wrap {
|
|
1346
|
+
margin-bottom: 0;
|
|
1347
|
+
}
|
|
1348
|
+
|
|
1349
|
+
.digit-checkbox-container {
|
|
1350
|
+
margin-bottom: 0rem;
|
|
1351
|
+
}
|
|
1352
|
+
|
|
1353
|
+
.rdrCalendarWrapper.rdrDateRangeWrapper.pickerShadow {
|
|
1354
|
+
position: absolute;
|
|
1355
|
+
z-index: 999;
|
|
1356
|
+
}
|
|
1357
|
+
|
|
1358
|
+
.digit-label-field-pair{
|
|
1359
|
+
&.digit-inbox-search-composer-label-pair{
|
|
1360
|
+
&.vertical{
|
|
1361
|
+
.filter-label{
|
|
1362
|
+
display: none ;;
|
|
1363
|
+
}
|
|
1364
|
+
}
|
|
1365
|
+
}
|
|
1366
|
+
|
|
1367
|
+
}
|
|
1344
1368
|
}
|
|
1345
1369
|
|
|
1346
1370
|
/* Boundary dropdown container - increased row gap between dropdowns */
|
|
@@ -1398,3 +1422,33 @@ tbody {
|
|
|
1398
1422
|
position: relative;
|
|
1399
1423
|
right: 2.3rem;
|
|
1400
1424
|
}
|
|
1425
|
+
|
|
1426
|
+
/* PGR Response ActionBar Button Styling */
|
|
1427
|
+
.pgr-response-btn {
|
|
1428
|
+
box-sizing: border-box;
|
|
1429
|
+
display: flex;
|
|
1430
|
+
flex-direction: row;
|
|
1431
|
+
justify-content: center;
|
|
1432
|
+
align-items: center;
|
|
1433
|
+
padding: 0.5rem 1.5rem;
|
|
1434
|
+
gap: 0.5rem;
|
|
1435
|
+
width: 20.813rem;
|
|
1436
|
+
height: 2.5rem;
|
|
1437
|
+
flex: none;
|
|
1438
|
+
order: 0;
|
|
1439
|
+
flex-grow: 0;
|
|
1440
|
+
margin: 0.5rem;
|
|
1441
|
+
}
|
|
1442
|
+
|
|
1443
|
+
.create-complaint-btn {
|
|
1444
|
+
background: #FFFFFF;
|
|
1445
|
+
border: 1px solid #C84C0E;
|
|
1446
|
+
}
|
|
1447
|
+
|
|
1448
|
+
.back-btn {
|
|
1449
|
+
background: #C84C0E;
|
|
1450
|
+
border: 1px solid #C84C0E;
|
|
1451
|
+
margin-right: 6rem;
|
|
1452
|
+
}
|
|
1453
|
+
|
|
1454
|
+
/* PGR Response ActionBar Styling - buttons at opposite ends */
|