@luscii-healthtech/web-ui 0.1.30 → 0.1.31
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/web-ui.cjs.development.css +26 -26
- package/package.json +1 -1
|
@@ -190,18 +190,6 @@
|
|
|
190
190
|
.cweb-checkbox.type-switch.is-checked .cweb-checkbox-icon-container:after {
|
|
191
191
|
left: 32px; }
|
|
192
192
|
|
|
193
|
-
.vitals-confirmation-dialog {
|
|
194
|
-
margin-top: 4rem !important; }
|
|
195
|
-
.vitals-confirmation-dialog .vitals-confirmation-dialog-content {
|
|
196
|
-
padding: 24px; }
|
|
197
|
-
.vitals-confirmation-dialog .vitals-confirmation-dialog-content .vitals-confirmation-dialog-action-container {
|
|
198
|
-
display: flex;
|
|
199
|
-
justify-content: space-between;
|
|
200
|
-
flex-direction: row;
|
|
201
|
-
align-items: center;
|
|
202
|
-
width: 100%;
|
|
203
|
-
margin-top: 16px; }
|
|
204
|
-
|
|
205
193
|
.cweb-box-shadow-default {
|
|
206
194
|
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.24), 0 0 2px 0 rgba(0, 0, 0, 0.12); }
|
|
207
195
|
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
|
|
@@ -444,6 +432,18 @@
|
|
|
444
432
|
.cweb-datepicker-calendar .react-datepicker__day.react-datepicker__day--outside-month {
|
|
445
433
|
color: #cccccc; }
|
|
446
434
|
|
|
435
|
+
.vitals-confirmation-dialog {
|
|
436
|
+
margin-top: 4rem !important; }
|
|
437
|
+
.vitals-confirmation-dialog .vitals-confirmation-dialog-content {
|
|
438
|
+
padding: 24px; }
|
|
439
|
+
.vitals-confirmation-dialog .vitals-confirmation-dialog-content .vitals-confirmation-dialog-action-container {
|
|
440
|
+
display: flex;
|
|
441
|
+
justify-content: space-between;
|
|
442
|
+
flex-direction: row;
|
|
443
|
+
align-items: center;
|
|
444
|
+
width: 100%;
|
|
445
|
+
margin-top: 16px; }
|
|
446
|
+
|
|
447
447
|
.cweb-box-shadow-default {
|
|
448
448
|
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.24), 0 0 2px 0 rgba(0, 0, 0, 0.12); }
|
|
449
449
|
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
|
|
@@ -516,6 +516,20 @@
|
|
|
516
516
|
background: url("../../assets/error-icon.svg") no-repeat center;
|
|
517
517
|
background-size: contain; }
|
|
518
518
|
|
|
519
|
+
.cweb-list-item {
|
|
520
|
+
display: flex;
|
|
521
|
+
justify-content: flex-start;
|
|
522
|
+
flex-direction: row;
|
|
523
|
+
align-items: center;
|
|
524
|
+
padding: 16px 0 16px 0;
|
|
525
|
+
border-bottom: 1px solid #eeeeee; }
|
|
526
|
+
.cweb-list-item:last-child {
|
|
527
|
+
border-bottom: none; }
|
|
528
|
+
.cweb-list-item.cweb-list-item-clickable {
|
|
529
|
+
cursor: pointer; }
|
|
530
|
+
.cweb-list-item.cweb-list-item-clickable:hover {
|
|
531
|
+
background-color: #f2fafd; }
|
|
532
|
+
|
|
519
533
|
.cweb-info-block {
|
|
520
534
|
position: relative;
|
|
521
535
|
padding: 16px 16px 16px 56px;
|
|
@@ -532,20 +546,6 @@
|
|
|
532
546
|
background: url("../../assets/info-icon.svg") no-repeat center;
|
|
533
547
|
background-size: contain; }
|
|
534
548
|
|
|
535
|
-
.cweb-list-item {
|
|
536
|
-
display: flex;
|
|
537
|
-
justify-content: flex-start;
|
|
538
|
-
flex-direction: row;
|
|
539
|
-
align-items: center;
|
|
540
|
-
padding: 16px 0 16px 0;
|
|
541
|
-
border-bottom: 1px solid #eeeeee; }
|
|
542
|
-
.cweb-list-item:last-child {
|
|
543
|
-
border-bottom: none; }
|
|
544
|
-
.cweb-list-item.cweb-list-item-clickable {
|
|
545
|
-
cursor: pointer; }
|
|
546
|
-
.cweb-list-item.cweb-list-item-clickable:hover {
|
|
547
|
-
background-color: #f2fafd; }
|
|
548
|
-
|
|
549
549
|
.cweb-loading {
|
|
550
550
|
display: flex;
|
|
551
551
|
justify-content: center;
|
package/package.json
CHANGED