inboxlookup_screen 1.0.19 → 1.0.21
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
|
@@ -305,6 +305,38 @@
|
|
|
305
305
|
background: #125aa3;
|
|
306
306
|
}
|
|
307
307
|
|
|
308
|
+
.lookupscreen-right {
|
|
309
|
+
position: relative;
|
|
310
|
+
height: 100%;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
.lookupscreen-center-wrapper {
|
|
314
|
+
display: flex;
|
|
315
|
+
align-items: center;
|
|
316
|
+
/* vertical center */
|
|
317
|
+
justify-content: center;
|
|
318
|
+
/* horizontal center */
|
|
319
|
+
height: 100%;
|
|
320
|
+
width: 100%;
|
|
321
|
+
text-align: center;
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
.lookupscreen-empty-state {
|
|
325
|
+
max-width: 420px;
|
|
326
|
+
padding: 24px;
|
|
327
|
+
color: #555;
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
.lookupscreen-empty-state h3 {
|
|
331
|
+
margin-bottom: 8px;
|
|
332
|
+
font-weight: 600;
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
.lookupscreen-empty-state p {
|
|
336
|
+
color: #777;
|
|
337
|
+
line-height: 1.5;
|
|
338
|
+
}
|
|
339
|
+
|
|
308
340
|
/* Responsive */
|
|
309
341
|
@media (max-width: 900px) {
|
|
310
342
|
.lookupscreensearch {
|
|
@@ -619,7 +619,6 @@ const OrdersMasterDetail = ({ dataSource, keyExpr, token, BaseUrl, ProjectId })
|
|
|
619
619
|
<div className="lookupscreen-right">
|
|
620
620
|
{orders.length === 0 ? (
|
|
621
621
|
<div className="lookupscreen-empty-state">
|
|
622
|
-
<div className="empty-icon">🚫</div>
|
|
623
622
|
<h3>No services available</h3>
|
|
624
623
|
<p>
|
|
625
624
|
There are no services configured for this project.
|