2021-07-29 18:24:46 +08:00
|
|
|
.label-printing-progress-modal {
|
|
|
|
background: $color-white;
|
|
|
|
bottom: 1em;
|
|
|
|
box-shadow: $modal-shadow;
|
|
|
|
min-width: 300px;
|
|
|
|
position: fixed;
|
|
|
|
right: 1em;
|
|
|
|
z-index: 9999;
|
|
|
|
|
|
|
|
.modal-header {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
2023-09-21 18:51:32 +08:00
|
|
|
flex-direction: row;
|
2021-07-29 18:24:46 +08:00
|
|
|
padding: .5em;
|
|
|
|
|
|
|
|
.title {
|
|
|
|
@include font-h3;
|
|
|
|
}
|
|
|
|
|
|
|
|
.printer-status {
|
|
|
|
border: $border-default;
|
|
|
|
color: $color-silver-chalice;
|
|
|
|
margin-left: .5em;
|
|
|
|
margin-right: auto;
|
|
|
|
padding: .25em;
|
|
|
|
|
|
|
|
&[data-status="ready"] {
|
|
|
|
background: $brand-success;
|
|
|
|
border-color: $brand-success;
|
|
|
|
color: $color-white;
|
|
|
|
}
|
|
|
|
|
|
|
|
&[data-status="out_of_labels"] {
|
|
|
|
background: $brand-warning;
|
|
|
|
border-color: $brand-warning;
|
|
|
|
color: $color-white;
|
|
|
|
}
|
2021-08-02 21:33:51 +08:00
|
|
|
|
|
|
|
&[data-status="error"] {
|
|
|
|
background: $brand-danger;
|
|
|
|
border-color: $brand-danger;
|
|
|
|
color: $color-white;
|
|
|
|
}
|
2022-11-21 23:55:03 +08:00
|
|
|
|
|
|
|
&[data-status="search"] {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
2021-07-29 18:24:46 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-body {
|
|
|
|
.printing-items {
|
|
|
|
.id-label {
|
|
|
|
margin-left: .5em;
|
|
|
|
opacity: .5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.printing-status {
|
|
|
|
color: $brand-primary;
|
|
|
|
|
|
|
|
&[data-status="done"] {
|
|
|
|
color: $brand-success;
|
|
|
|
}
|
|
|
|
|
2021-08-02 21:33:51 +08:00
|
|
|
&[data-status="waiting_labels"], &[data-status="error"] {
|
2021-07-29 18:24:46 +08:00
|
|
|
color: $brand-danger;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|