@selco/installation-ui-css 1.0.12 → 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 +49 -1
- package/dist/index.min.css +2 -2
- package/package.json +1 -1
- package/src/index.scss +1 -0
- package/src/pages/employee/amc/visittable.scss +62 -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
|
*
|
|
@@ -11206,6 +11206,54 @@ body {
|
|
|
11206
11206
|
.health-facility-table-wrapper .pagination {
|
|
11207
11207
|
border: none; }
|
|
11208
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
|
+
|
|
11209
11257
|
.wbh-header .header-icon-container {
|
|
11210
11258
|
cursor: pointer;
|
|
11211
11259
|
color: #c84c0e;
|