2644 lines
63 KiB
Plaintext
2644 lines
63 KiB
Plaintext
// main: ../style.less
|
|
@import "grid-system.less";
|
|
@import "colors.less";
|
|
@import "fonts.less";
|
|
@modal: modal;
|
|
@login: login;
|
|
@loader: loader;
|
|
@backdrop: backdrop;
|
|
@font-family: "Work Sans", sans-serif;
|
|
@modal-min-width: 500px;
|
|
@modal-min-height: 400px;
|
|
@modal-confirm-delete-width: 500px;
|
|
@modal-confirm-delete-height: 300px;
|
|
@modal-header-height: 64px;
|
|
@modal-login-height: 560px;
|
|
@modal-login-width: 600px;
|
|
@modal-load-depot-height: 462px;
|
|
@modal-load-depot-width: 696px;
|
|
@modal-info-equipment-box-height: 680px;
|
|
@modal-info-equipment-box-width: 896px;
|
|
@modal-report-select-column-height: 696px;
|
|
@modal-report-select-column-width: 896px;
|
|
@modal-load-program-height: 873px;
|
|
@modal-load-program-width: 1808px;
|
|
@modal-job-add-parameter-width: 704px;
|
|
@modal-job-add-parameter-height: 608px;
|
|
@modal-edit-job-width: 952px;
|
|
@modal-edit-job-height: 872px;
|
|
@modal-add-offset-tool-width: 1320px;
|
|
@modal-add-offset-tool-height: 670px;
|
|
@modal-missing-tools-width: 896px;
|
|
@modal-missing-tools-height: 472px;
|
|
@modal-iframe-height: 800px;
|
|
@modal-iframe-width: 1800px;
|
|
@modal-user-info-height: 610px;
|
|
@modal-login-top: @modal-login-height / 2;
|
|
@modal-login-left: @modal-login-width / 2;
|
|
@modal-create-maintenance-width: 896px;
|
|
@modal-create-maintenance-height: 696px;
|
|
@modal-machine-height: 730px;
|
|
@modal-machine-width: 600px;
|
|
@modal-machine-top: @modal-machine-height / 2;
|
|
@modal-machine-left: @modal-machine-width / 2;
|
|
@modal-loader-height: 453px;
|
|
@modal-loader-width: 896px;
|
|
@modal-m155-height-multiple: 550px;
|
|
@modal-m155-width: 750px;
|
|
@modal-m155-height: 350px;
|
|
@modal-loader-top: @modal-loader-height / 2;
|
|
@modal-loader-left: @modal-loader-width / 2;
|
|
@modal-m155-top-multiple: @modal-m155-height-multiple / 2;
|
|
@modal-m155-top: @modal-m155-height / 2;
|
|
@modal-m155-left: @modal-m155-width / 2;
|
|
@progress-back-color: #1791ff;
|
|
@progress-white-color: #fff;
|
|
.@{modal} {
|
|
min-width: @modal-min-width;
|
|
height: @modal-min-height;
|
|
box-shadow: @shadows;
|
|
z-index: 1000;
|
|
background-color: @color-background-white;
|
|
position: absolute;
|
|
-webkit-user-select: none;
|
|
header {
|
|
border-bottom: 2px solid @color-silver;
|
|
height: @modal-header-height;
|
|
line-height: @modal-header-height;
|
|
position: relative;
|
|
box-sizing: content-box;
|
|
button.close {
|
|
position: absolute;
|
|
width: 28px;
|
|
height: 28px;
|
|
border-radius: 50%;
|
|
border: none;
|
|
background-color: #fff;
|
|
color: @color-darkish-blue;
|
|
top: calc(50% - 20px);
|
|
right: 14px;
|
|
font-size: 16px;
|
|
cursor: pointer;
|
|
}
|
|
button.close:active {
|
|
background-color: @color-clear-blue;
|
|
color: #fff;
|
|
}
|
|
}
|
|
footer {
|
|
align-self: flex-end;
|
|
height: @modal-header-height;
|
|
line-height: @modal-header-height;
|
|
border-top: 2px solid @color-silver;
|
|
}
|
|
}
|
|
|
|
.@{modal}.m155 {
|
|
width: @modal-m155-width;
|
|
height: @modal-m155-height;
|
|
top: calc(~"50%" - @modal-m155-height / 2);
|
|
left: calc(~"50%" - @modal-m155-width / 2);
|
|
|
|
&.multiple{
|
|
height: @modal-m155-height-multiple;
|
|
top: calc(~"50%" - @modal-m155-height-multiple / 2);
|
|
.body{
|
|
height: @modal-m155-height-multiple - @modal-header-height - @modal-header-height - 23px ;
|
|
}
|
|
|
|
}
|
|
header {
|
|
background-color: @color-darkish-blue;
|
|
color: @color-white;
|
|
font-family: @font-family;
|
|
font-weight: 600;
|
|
font-size: 24px;
|
|
text-align: left;
|
|
padding: 0px 23px;
|
|
}
|
|
h2 {
|
|
font-size: 18px;
|
|
text-align: left;
|
|
color: @color-input-light;
|
|
width: 592px;
|
|
margin: auto;
|
|
margin-top: 20px;
|
|
margin-bottom: 20px;
|
|
}
|
|
.body{
|
|
height: @modal-m155-height - @modal-header-height - @modal-header-height - 23px ;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
input[type=number]{
|
|
width: 294px;
|
|
height: 56px;
|
|
font-size: 18px;
|
|
line-height: 1.11;
|
|
color: #4b4b4b;
|
|
padding: 0 5px;
|
|
box-sizing: border-box;
|
|
text-align: right;
|
|
width: 144px;
|
|
}
|
|
.content-real{
|
|
width: 592px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
padding: 10px;
|
|
box-shadow: 0 0px 3px 0 rgba(0, 0, 0, 0.4);
|
|
span{
|
|
width: 100px;
|
|
}
|
|
}
|
|
.content-btn{
|
|
width: 592px;
|
|
box-shadow: 0 0px 3px 0 rgba(0, 0, 0, 0.4);
|
|
margin-top: 17px;
|
|
font-size: 18px;
|
|
height: 52px;
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
&:hover{
|
|
|
|
outline: 5px #1791ff auto;
|
|
}
|
|
|
|
[type="radio"]:checked,
|
|
[type="radio"]:not(:checked) {
|
|
visibility: hidden;
|
|
}
|
|
[type="radio"]:checked + label,
|
|
[type="radio"]:not(:checked) + label {
|
|
position: relative;
|
|
padding-left: 45px;
|
|
cursor: pointer;
|
|
line-height: 25px;
|
|
display: inline-block;
|
|
color: @color-cyan-blue;
|
|
}
|
|
[type="radio"]:checked + label:before,
|
|
[type="radio"]:not(:checked) + label:before {
|
|
content: "";
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
width: 24px;
|
|
height: 24px;
|
|
border: 1px solid #ddd;
|
|
border-radius: 100%;
|
|
background: #fff;
|
|
}
|
|
|
|
[type="radio"][disabled]:checked + label,
|
|
[type="radio"][disabled]:not(:checked) + label {
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
[type="radio"]:checked + label:after,
|
|
[type="radio"]:not(:checked) + label:after {
|
|
content: "";
|
|
width: 18px;
|
|
height: 18px;
|
|
background-image: linear-gradient(to bottom, #1756ad, #002680);
|
|
position: absolute;
|
|
top: 4px;
|
|
left: 4px;
|
|
border-radius: 100%;
|
|
-webkit-transition: all 0.2s ease;
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
[type="radio"][disabled]:checked + label:after,
|
|
[type="radio"][disabled]:not(:checked) + label:after {
|
|
background: @color-gunmetal;
|
|
}
|
|
|
|
[type="radio"]:checked + label {
|
|
font-weight: 600;
|
|
}
|
|
[type="radio"]:not(:checked) + label:after {
|
|
opacity: 0;
|
|
-webkit-transform: scale(0);
|
|
transform: scale(0);
|
|
}
|
|
[type="radio"]:checked + label:after {
|
|
opacity: 1;
|
|
-webkit-transform: scale(1);
|
|
transform: scale(1);
|
|
}
|
|
}
|
|
}
|
|
|
|
.@{modal}.@{login},
|
|
.@{modal}.user-info {
|
|
width: @modal-login-width;
|
|
height: @modal-user-info-height;
|
|
top: calc(~"50%" - @modal-user-info-height / 2);
|
|
left: calc(~"50%" - @modal-login-width / 2);
|
|
header {
|
|
background-color: @color-darkish-blue;
|
|
color: @color-white;
|
|
font-family: @font-family;
|
|
font-weight: 600;
|
|
font-size: 24px;
|
|
text-align: left;
|
|
padding: 0px 23px;
|
|
}
|
|
.user-details {
|
|
width: 250px;
|
|
margin: auto;
|
|
margin-bottom: 20px;
|
|
span,
|
|
strong {
|
|
text-align: center;
|
|
display: block;
|
|
margin: 0 0 5px 0;
|
|
font-size: 18px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.@{modal}.machine-info {
|
|
width: @modal-machine-width;
|
|
height: @modal-machine-height;
|
|
top: calc(~"50%" - @modal-machine-height / 2);
|
|
left: calc(~"50%" - @modal-machine-width / 2);
|
|
header {
|
|
background-color: @color-darkish-blue;
|
|
color: @color-white;
|
|
font-family: @font-family;
|
|
font-weight: 600;
|
|
font-size: 24px;
|
|
text-align: left;
|
|
padding: 0px 23px;
|
|
}
|
|
img {
|
|
display: block;
|
|
width: 88px;
|
|
height: 88px;
|
|
margin: auto;
|
|
margin-top: 48px;
|
|
margin-bottom: 40px;
|
|
}
|
|
.details {
|
|
text-align: center;
|
|
color: @color-greyish-brown;
|
|
& > * {
|
|
display: block;
|
|
margin-bottom: 5px;
|
|
height: 20px;
|
|
line-height: 20px;
|
|
}
|
|
& > label {
|
|
text-align: right;
|
|
strong {
|
|
display: inline-block;
|
|
width: 50%;
|
|
text-align: left;
|
|
}
|
|
}
|
|
|
|
& > hr {
|
|
border: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
.@{modal}.@{loader} {
|
|
width: @modal-loader-width;
|
|
height: @modal-loader-height;
|
|
top: calc(~"50%" - @modal-loader-height / 2);
|
|
left: calc(~"50%" - @modal-loader-width / 2);
|
|
header {
|
|
background-color: @color-darkish-blue;
|
|
color: @color-white;
|
|
font-family: @font-family;
|
|
font-weight: 600;
|
|
font-size: 24px;
|
|
text-align: left;
|
|
padding: 0px 23px;
|
|
}
|
|
h2 {
|
|
font-size: 18px;
|
|
text-align: left;
|
|
color: @color-input-light;
|
|
width: 592px;
|
|
margin: auto;
|
|
margin-top: 20px;
|
|
margin-bottom: 20px;
|
|
}
|
|
.progress-line {
|
|
height: 30px;
|
|
width: 592px;
|
|
margin: auto;
|
|
i {
|
|
// width: 25px;
|
|
// height: 25px;
|
|
font-size: 25px;
|
|
margin-right: 15px;
|
|
display: block;
|
|
float: left;
|
|
color: @progress-back-color;
|
|
}
|
|
progress {
|
|
width: 552px;
|
|
height: 24px;
|
|
font-size: 14px;
|
|
float: left;
|
|
background-color: white; // color: @progress-white-color;
|
|
position: relative;
|
|
}
|
|
progress:after {
|
|
display: block;
|
|
content: attr(value) + " %";
|
|
position: absolute;
|
|
height: 24px;
|
|
top: 0;
|
|
left: 10px;
|
|
line-height: 24px;
|
|
color: #fff;
|
|
font-weight: bold;
|
|
}
|
|
progress[value]::-webkit-progress-value {
|
|
color: @progress-white-color;
|
|
background-color: @progress-back-color;
|
|
border-radius: 12px;
|
|
}
|
|
progress[value]::-webkit-progress-bar {
|
|
background-color: #fff;
|
|
border-radius: 12px;
|
|
box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.5);
|
|
}
|
|
}
|
|
|
|
.axes-position-zeroing{
|
|
height: 264px;
|
|
width: 500px;
|
|
display: flex;
|
|
flex-flow: column;
|
|
overflow: auto;
|
|
margin: auto;
|
|
margin-top: 20px;
|
|
.axes{
|
|
min-height: 32px;
|
|
width: 100%;
|
|
display: flex;
|
|
flex-flow: row;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin-top: 8px;
|
|
|
|
&._7{
|
|
min-height: 26px;
|
|
}
|
|
&._8{
|
|
min-height: 22px;
|
|
}
|
|
&._9{
|
|
min-height: 18px;
|
|
}
|
|
|
|
.variable{
|
|
font-size: 48px;
|
|
width: 75px;
|
|
line-height: 0;
|
|
font-weight: bold;
|
|
color: @color-greyish-brown;
|
|
text-align: right;
|
|
margin-right: 10px;
|
|
|
|
&._7{
|
|
font-size: 42px;
|
|
line-height: 42px;
|
|
}
|
|
&._8{
|
|
font-size: 36px;
|
|
line-height: 36px;
|
|
}
|
|
&._9{
|
|
font-size: 29px;
|
|
line-height: 29px;
|
|
}
|
|
&.more9{
|
|
width: 69px;
|
|
}
|
|
}
|
|
.number{
|
|
width: 100%;
|
|
height: 32px;
|
|
border-radius: 2px;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
align-items: center;
|
|
margin-right: 13px;
|
|
color: @color-greyish-brown;
|
|
padding-right: 8px;
|
|
font-size: 20px;
|
|
|
|
&._7{
|
|
height: 26px;
|
|
line-height: 26px;
|
|
}
|
|
&._8{
|
|
height: 22px;
|
|
line-height: 22px;
|
|
}
|
|
&._9{
|
|
height: 18px;
|
|
font-size: 18px;
|
|
line-height: 18px;
|
|
}
|
|
&.more9{
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.umeasure{
|
|
width: 32px;
|
|
margin-left: 5px;
|
|
text-align: left;
|
|
}
|
|
}
|
|
}
|
|
.axes:nth-child(odd) .number{
|
|
background-color: @color-white4;
|
|
}
|
|
.axes:nth-child(even) .number{
|
|
background-color: @color-clear-blue-30;
|
|
}
|
|
.axes:first-child{
|
|
margin-top: 0px;
|
|
}
|
|
.axes:last-child{
|
|
margin-bottom: 16px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.@{backdrop} {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
-webkit-backdrop-filter: blur(10px);
|
|
background-color: @color-backdrop;
|
|
z-index: 900;
|
|
|
|
&.nc {
|
|
z-index: 700;
|
|
}
|
|
|
|
&.internal {
|
|
height: calc(~"100vh - 80px");
|
|
}
|
|
}
|
|
|
|
.@{modal}.modal-confirm-delete {
|
|
height: @modal-confirm-delete-height;
|
|
width: @modal-confirm-delete-width;
|
|
top: calc(~"50%" - @modal-confirm-delete-height / 2);
|
|
left: calc(~"50%" - @modal-confirm-delete-width / 2);
|
|
header {
|
|
background-color: @color-darkish-blue;
|
|
color: @color-white;
|
|
font-family: @font-family;
|
|
font-weight: 600;
|
|
font-size: 24px;
|
|
text-align: left;
|
|
padding: 0px 23px;
|
|
}
|
|
.body {
|
|
text-align: center;
|
|
margin-top: 30px;
|
|
font-size: 18px;
|
|
color: @color-greyish-brown;
|
|
}
|
|
.modal-confirm-delete-footer {
|
|
// height: 20px;
|
|
border-top: 2px solid @color-silver;
|
|
}
|
|
}
|
|
|
|
.@{modal}.create-maintenance {
|
|
width: @modal-create-maintenance-width;
|
|
height: @modal-create-maintenance-height;
|
|
top: calc(~"50%" - @modal-create-maintenance-height / 2);
|
|
left: calc(~"50%" - @modal-create-maintenance-width / 2);
|
|
header {
|
|
font-size: 20px;
|
|
color: @color-cyan-blue;
|
|
padding-left: 23px;
|
|
button.close {
|
|
position: absolute;
|
|
width: 28px;
|
|
height: 28px;
|
|
border-radius: 50%;
|
|
border: none;
|
|
background-color: @color-darkish-blue;
|
|
color: #fff;
|
|
top: calc(50% - 20px);
|
|
right: 14px;
|
|
font-size: 16px;
|
|
cursor: pointer;
|
|
}
|
|
button.close:active {
|
|
background-color: @color-clear-blue;
|
|
color: #fff;
|
|
}
|
|
}
|
|
.typology {
|
|
display: flex;
|
|
flex-flow: column;
|
|
.typology_lbl {
|
|
margin-top: 22px;
|
|
margin-left: 24px;
|
|
font-size: 14px;
|
|
line-height: 1.29;
|
|
color: @color-warm-grey;
|
|
}
|
|
.radiobutton {
|
|
margin-top: 17px;
|
|
font-size: 18px;
|
|
label[for="datefixed"] {
|
|
margin-right: 209px;
|
|
}
|
|
[type="radio"]:checked,
|
|
[type="radio"]:not(:checked) {
|
|
visibility: hidden;
|
|
}
|
|
[type="radio"]:checked + label,
|
|
[type="radio"]:not(:checked) + label {
|
|
position: relative;
|
|
padding-left: 45px;
|
|
cursor: pointer;
|
|
line-height: 25px;
|
|
display: inline-block;
|
|
color: @color-cyan-blue;
|
|
}
|
|
[type="radio"]:checked + label:before,
|
|
[type="radio"]:not(:checked) + label:before {
|
|
content: "";
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
width: 24px;
|
|
height: 24px;
|
|
border: 1px solid #ddd;
|
|
border-radius: 100%;
|
|
background: #fff;
|
|
}
|
|
|
|
[type="radio"][disabled]:checked + label,
|
|
[type="radio"][disabled]:not(:checked) + label {
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
[type="radio"]:checked + label:after,
|
|
[type="radio"]:not(:checked) + label:after {
|
|
content: "";
|
|
width: 18px;
|
|
height: 18px;
|
|
background-image: linear-gradient(to bottom, #1756ad, #002680);
|
|
position: absolute;
|
|
top: 4px;
|
|
left: 4px;
|
|
border-radius: 100%;
|
|
-webkit-transition: all 0.2s ease;
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
[type="radio"][disabled]:checked + label:after,
|
|
[type="radio"][disabled]:not(:checked) + label:after {
|
|
background: @color-gunmetal;
|
|
}
|
|
|
|
[type="radio"]:checked + label {
|
|
font-weight: 600;
|
|
}
|
|
[type="radio"]:not(:checked) + label:after {
|
|
opacity: 0;
|
|
-webkit-transform: scale(0);
|
|
transform: scale(0);
|
|
}
|
|
[type="radio"]:checked + label:after {
|
|
opacity: 1;
|
|
-webkit-transform: scale(1);
|
|
transform: scale(1);
|
|
}
|
|
}
|
|
}
|
|
.title,
|
|
.description {
|
|
display: flex;
|
|
flex-flow: column;
|
|
.title_lbl,
|
|
.description_lbl {
|
|
margin-top: 22px;
|
|
margin-left: 24px;
|
|
font-size: 14px;
|
|
color: @color-warm-grey;
|
|
margin-bottom: 4px;
|
|
}
|
|
input {
|
|
font-size: 18px;
|
|
width: 416px;
|
|
height: 48px;
|
|
margin-left: 24px;
|
|
border-radius: 2px;
|
|
box-shadow: inset 0 1px 3px 0 @color-black-50;
|
|
border: solid 1px @color-silver;
|
|
}
|
|
input[type="text"] {
|
|
padding: 10px;
|
|
box-sizing: border-box;
|
|
}
|
|
textarea {
|
|
border-radius: 2px;
|
|
height: 97px;
|
|
margin-left: 24px;
|
|
margin-right: 24px;
|
|
box-shadow: inset 0 1px 3px 0 @color-black-50;
|
|
border: solid 1px @color-silver;
|
|
padding: 10px;
|
|
box-sizing: border-box;
|
|
resize: none;
|
|
}
|
|
}
|
|
.time {
|
|
display: flex;
|
|
flex-flow: row;
|
|
.date,
|
|
.end_time {
|
|
display: flex;
|
|
flex-flow: column;
|
|
.date_lbl,
|
|
.end_time_lbl {
|
|
margin-top: 22px;
|
|
margin-left: 24px;
|
|
font-size: 14px;
|
|
color: @color-warm-grey;
|
|
margin-bottom: 4px;
|
|
}
|
|
.data_Selector{
|
|
width: 209px;
|
|
height: 48px;
|
|
font-size: 18px;
|
|
margin-left: 24px;
|
|
border-radius: 2px;
|
|
box-shadow: none;
|
|
border: solid 1px @color-silver;
|
|
}
|
|
.time_Selector{
|
|
width: 110px;
|
|
height: 48px;
|
|
font-size: 18px;
|
|
margin-left: 24px;
|
|
border-radius: 2px;
|
|
box-shadow: none;
|
|
border: solid 1px @color-silver;
|
|
}
|
|
.data_Selector, .time_Selector{
|
|
.mx-input{
|
|
border: none;
|
|
border-radius: 0px;
|
|
height: 48px;
|
|
box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.5);
|
|
color: initial;
|
|
}
|
|
.mx-input:focus{
|
|
outline: 5px #1791ff auto;
|
|
}
|
|
.mx-input-append{
|
|
width: 37px;
|
|
}
|
|
.mx-calendar-icon{
|
|
color: @color-cyan-blue;
|
|
stroke-width: 12px;
|
|
}
|
|
.actived{
|
|
background-color:@color-cyan-blue;
|
|
}
|
|
.today{
|
|
background-color: @color-faded-red;
|
|
border-radius: 16px;
|
|
color: #fff;
|
|
}
|
|
}
|
|
|
|
input[type="date"],
|
|
input[type="time"] {
|
|
width: 209px;
|
|
height: 48px;
|
|
font-size: 18px;
|
|
margin-left: 24px;
|
|
border-radius: 2px;
|
|
box-shadow: inset 0 1px 3px 0 @color-black-50;
|
|
border: solid 1px @color-silver;
|
|
}
|
|
input[type="date"]::-webkit-inner-spin-button {
|
|
display: none;
|
|
}
|
|
input[type="date"]::-webkit-calendar-picker-indicator {
|
|
color: rgba(0, 0, 0, 0);
|
|
opacity: 1;
|
|
display: block;
|
|
background: url(/assets/icons/_png/calendar-25x25.png) no-repeat;
|
|
width: 20px;
|
|
height: 20px;
|
|
border-width: thin;
|
|
}
|
|
input[type="time"] {
|
|
width: 112px;
|
|
}
|
|
input[type="time"]::-webkit-inner-spin-button,
|
|
input[type="time"]::-webkit-outer-spin-button {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
.repeat {
|
|
display: flex;
|
|
flex-flow: column;
|
|
.repeat_lbl {
|
|
margin-top: 22px;
|
|
margin-left: 24px;
|
|
font-size: 14px;
|
|
color: @color-warm-grey;
|
|
margin-bottom: 4px;
|
|
}
|
|
.repeat_input {
|
|
display: flex;
|
|
flex-flow: row;
|
|
input[type="text"],
|
|
select {
|
|
width: 56px;
|
|
height: 48px;
|
|
margin-left: 24px;
|
|
border-radius: 2px;
|
|
box-shadow: inset 0 1px 3px 0 @color-black-50;
|
|
border: solid 1px @color-silver;
|
|
box-sizing: border-box;
|
|
}
|
|
input[type="text"]{
|
|
padding: 10px;
|
|
}
|
|
select {
|
|
width: 144px;
|
|
box-shadow: inset 0 1px 3px 0 @color-black-50;
|
|
margin-left: 16px;
|
|
padding-left: 16px;
|
|
}
|
|
select {
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
appearance: none;
|
|
background: url(/assets/icons/_png/carets-up-down-blu-25x25.png)
|
|
no-repeat 99% 50%;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.@{modal}.info-equipment-box {
|
|
width: 896px;
|
|
height: 680px;
|
|
border-radius: 2px;
|
|
background-color: @color-background-white;
|
|
top: calc(~"50%" - @modal-info-equipment-box-height / 2);
|
|
left: calc(~"50%" - @modal-info-equipment-box-width / 2);
|
|
header {
|
|
font-size: 20px;
|
|
color: @color-cyan-blue;
|
|
padding-left: 23px;
|
|
}
|
|
button.close {
|
|
position: absolute;
|
|
width: 28px;
|
|
height: 28px;
|
|
border-radius: 50%;
|
|
border: none;
|
|
background-color: @color-darkish-blue;
|
|
color: #fff;
|
|
top: calc(50% - 20px);
|
|
right: 14px;
|
|
font-size: 16px;
|
|
cursor: pointer;
|
|
}
|
|
button.close:active {
|
|
background-color: @color-clear-blue;
|
|
color: #fff;
|
|
}
|
|
// .info-equipment-header{
|
|
// width: 100%;
|
|
// height: 50px;
|
|
// color: @color-darkish-blue;
|
|
// border-bottom: solid 2px @color-white2;
|
|
// .info-equipment-header-label{
|
|
// font-size: 20px;
|
|
// padding: 16px 0 0 24px;
|
|
// }
|
|
// >.fa{
|
|
// float: right;
|
|
// font-size: 28px;
|
|
// margin-top: 16px;
|
|
// margin-right: 16px;
|
|
// }
|
|
// }
|
|
.tab-box-right {
|
|
height: 81px;
|
|
width: 100%;
|
|
background-color: @color-whitethree;
|
|
display: flex;
|
|
flex-direction: row;
|
|
border: none !important;
|
|
.tab {
|
|
flex-grow: 0;
|
|
flex-shrink: 0;
|
|
float: left !important;
|
|
width: 200px !important;
|
|
height: 100% !important;
|
|
margin: 0 !important;
|
|
border: none !important;
|
|
border-right: solid 1px @color-label-grey !important;
|
|
background-color: @color-whitethree;
|
|
font-size: 18px !important;
|
|
line-height: 1 !important;
|
|
color: @color-greyish-brown !important;
|
|
position: relative;
|
|
&.plus {
|
|
border-right: none !important;
|
|
.btn {
|
|
float: left !important;
|
|
margin: 0;
|
|
width: 48px;
|
|
height: 48px;
|
|
position: absolute;
|
|
top: calc(~"50% - 24px");
|
|
margin-left: 20px;
|
|
padding: 0;
|
|
.fa {
|
|
vertical-align: middle;
|
|
font-size: 21px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.active {
|
|
background-color: @color-white;
|
|
}
|
|
.tab-box-scroll {
|
|
width: 100%;
|
|
overflow-y: hidden;
|
|
overflow-x: auto;
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-basis: auto;
|
|
&::-webkit-scrollbar {
|
|
width: 5px;
|
|
height: 5px;
|
|
}
|
|
&::-webkit-scrollbar-thumb {
|
|
border-radius: 5px;
|
|
height: 1px;
|
|
background-color: rgba(0, 0, 0, 0.3);
|
|
}
|
|
}
|
|
}
|
|
.info-equipment-body {
|
|
height: calc(~"100% - 52px");
|
|
width: 100%;
|
|
display: flex;
|
|
flex-flow: row;
|
|
.info-equipment-body-left {
|
|
width: 320px;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-flow: wrap;
|
|
justify-content: center;
|
|
img {
|
|
width: 280px;
|
|
height: 280px;
|
|
margin-top: 36px;
|
|
background-color: @color-whitegrey;
|
|
}
|
|
.tools {
|
|
width: 100%;
|
|
height: 100px;
|
|
margin-top: 20px;
|
|
text-align: center;
|
|
}
|
|
button {
|
|
width: 280px;
|
|
}
|
|
.fa {
|
|
margin-right: 10px;
|
|
}
|
|
.explain {
|
|
margin-top: 20px;
|
|
text-align: left;
|
|
width: 280px;
|
|
display: inline-block;
|
|
color: #4b4b4b;
|
|
font-size: 15px;
|
|
font-weight: 600;
|
|
}
|
|
}
|
|
.info-equipment-body-right {
|
|
width: calc(~"100% - 320px");
|
|
height: calc(~"100% - 135px");
|
|
table {
|
|
width: 97%;
|
|
height: 467px;
|
|
display: block;
|
|
margin-top: 32px;
|
|
tbody {
|
|
.info-equipment-category {
|
|
text-align: center;
|
|
margin-top: 32px;
|
|
font-size: 18px;
|
|
line-height: 1.11;
|
|
color: @color-greyish-brown;
|
|
}
|
|
tr {
|
|
display: flex;
|
|
width: 100%;
|
|
flex-flow: row;
|
|
td.columnleft,
|
|
td.columnright {
|
|
height: 32px;
|
|
background-color: @color-white2;
|
|
margin: 4px;
|
|
font-size: 18px;
|
|
line-height: 1.11;
|
|
display: flex;
|
|
align-items: center;
|
|
color: @color-greyish-brown;
|
|
span {
|
|
margin-left: 16px;
|
|
}
|
|
}
|
|
td.columnleft {
|
|
width: 256px;
|
|
font-weight: 600;
|
|
}
|
|
td.columnright {
|
|
width: 216px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.height555 {
|
|
height: 555px !important;
|
|
}
|
|
|
|
.@{modal}.load-depot {
|
|
width: 696px;
|
|
height: 462px;
|
|
border-radius: 2px;
|
|
background-color: @color-background-white;
|
|
top: calc(~"50%" - @modal-load-depot-height / 2);
|
|
left: calc(~"50%" - @modal-load-depot-width / 2);
|
|
header {
|
|
font-size: 20px;
|
|
color: @color-cyan-blue;
|
|
padding-left: 23px;
|
|
}
|
|
button.close {
|
|
position: absolute;
|
|
width: 28px;
|
|
height: 28px;
|
|
border-radius: 50%;
|
|
border: none;
|
|
background-color: @color-darkish-blue;
|
|
color: #fff;
|
|
top: calc(50% - 20px);
|
|
right: 14px;
|
|
font-size: 16px;
|
|
cursor: pointer;
|
|
}
|
|
button.close:active {
|
|
background-color: @color-clear-blue;
|
|
color: #fff;
|
|
}
|
|
.load-depot-box {
|
|
height: calc(~"100%" - 230px);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 18px;
|
|
color: @color-cyan-blue;
|
|
margin-top: 20px;
|
|
flex-flow: column;
|
|
.error{
|
|
margin-top: 74px;
|
|
color: #a10518;
|
|
font-size: 22px;
|
|
font-weight: bold;
|
|
}
|
|
.load-depot-box-select {
|
|
margin-top: 15px;
|
|
}
|
|
.input-box {
|
|
height: 70px;
|
|
.title {
|
|
margin: 0 15px;
|
|
font-size: 16px;
|
|
}
|
|
select.arrow {
|
|
height: 36px;
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
}
|
|
footer {
|
|
.pull-right {
|
|
.btn {
|
|
padding: 0 10px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.@{modal}.modal-iframe {
|
|
width: @modal-iframe-width;
|
|
height: @modal-iframe-height;
|
|
border-radius: 2px;
|
|
background-color: @color-background-white;
|
|
top: calc(~"50%" - @modal-iframe-height / 2);
|
|
left: calc(~"50%" - @modal-iframe-width / 2);
|
|
header {
|
|
font-size: 20px;
|
|
color: @color-cyan-blue;
|
|
padding-left: 23px;
|
|
button.close {
|
|
position: absolute;
|
|
width: 28px;
|
|
height: 28px;
|
|
border-radius: 50%;
|
|
border: none;
|
|
background-color: @color-darkish-blue;
|
|
color: #fff;
|
|
top: calc(50% - 20px);
|
|
right: 14px;
|
|
font-size: 16px;
|
|
cursor: pointer;
|
|
}
|
|
button.close:active {
|
|
background-color: @color-clear-blue;
|
|
color: #fff;
|
|
}
|
|
}
|
|
iframe {
|
|
position: absolute;
|
|
height: calc(~"100%" - @modal-header-height + 2px);
|
|
width: 100%;
|
|
border: none;
|
|
}
|
|
}
|
|
|
|
.@{modal}.modal-image {
|
|
width: @modal-iframe-width;
|
|
height: @modal-iframe-height;
|
|
border-radius: 2px;
|
|
background-color: @color-background-white;
|
|
top: calc(~"50%" - @modal-iframe-height / 2);
|
|
left: calc(~"50%" - @modal-iframe-width / 2);
|
|
header {
|
|
font-size: 20px;
|
|
color: @color-cyan-blue;
|
|
padding-left: 23px;
|
|
button.close {
|
|
position: absolute;
|
|
width: 28px;
|
|
height: 28px;
|
|
border-radius: 50%;
|
|
border: none;
|
|
background-color: @color-darkish-blue;
|
|
color: #fff;
|
|
top: calc(50% - 20px);
|
|
right: 14px;
|
|
font-size: 16px;
|
|
cursor: pointer;
|
|
}
|
|
button.close:active {
|
|
background-color: @color-clear-blue;
|
|
color: #fff;
|
|
}
|
|
}
|
|
.body{
|
|
height: calc(~"100%" - 64px);
|
|
overflow: hidden;
|
|
align-items: center;
|
|
justify-content: center;
|
|
display: flex;
|
|
background-color: #cccccc;
|
|
position: relative;
|
|
}
|
|
#imagecontainer{
|
|
position: relative;
|
|
max-width: 100%;
|
|
max-height: 100%;
|
|
}
|
|
}
|
|
|
|
.@{modal}.modal-load-program, .@{modal}.modal-add-element-queue {
|
|
width: @modal-load-program-width;
|
|
height: @modal-load-program-height;
|
|
top: calc(~"50%" - @modal-load-program-height / 2);
|
|
left: calc(~"50%" - @modal-load-program-width / 2);
|
|
background-color: @color-background-white;
|
|
|
|
header {
|
|
display: flex;
|
|
align-items: center;
|
|
padding-left: 24px;
|
|
height: 81px;
|
|
font-size: 20px;
|
|
color: @color-darkish-blue;
|
|
button.close {
|
|
position: absolute;
|
|
width: 28px;
|
|
height: 28px;
|
|
border-radius: 50%;
|
|
border: none;
|
|
background-color: @color-darkish-blue;
|
|
color: #fff;
|
|
top: calc(50% - 20px);
|
|
right: 14px;
|
|
font-size: 16px;
|
|
cursor: pointer;
|
|
}
|
|
button.close:active {
|
|
background-color: @color-clear-blue;
|
|
color: #fff;
|
|
}
|
|
}
|
|
.modal-load-program-header, .modal-add-element-queue-header {
|
|
height: 80px;
|
|
width: 100%;
|
|
display: flex;
|
|
flex-flow: column;
|
|
// .title{
|
|
// height: 81px;
|
|
// display: flex;
|
|
// align-items: center;
|
|
// }
|
|
.box-search {
|
|
width: 100%;
|
|
height: 80px;
|
|
display: flex;
|
|
flex-flow: row;
|
|
align-items: center;
|
|
background-color: @color-label-grey;
|
|
.path {
|
|
display: flex;
|
|
flex-flow: row;
|
|
color: @color-white;
|
|
margin-left: 20px;
|
|
.child {
|
|
display: flex;
|
|
flex-flow: row;
|
|
div + .fa.fa-chevron-right:first-child {
|
|
display: none;
|
|
}
|
|
.fa {
|
|
margin: 0px 22px;
|
|
}
|
|
}
|
|
}
|
|
.search {
|
|
display: flex;
|
|
width: 100%;
|
|
justify-content: flex-end;
|
|
input {
|
|
width: 688px;
|
|
height: 48px;
|
|
border-radius: 2px;
|
|
box-shadow: inset 0 1px 3px @color-black-50;
|
|
border: solid 1px @color-white3;
|
|
background-color: @color-whitetwo;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.modal-load-program-body, .modal-add-element-queue-body {
|
|
height: 631px;
|
|
width: 100%;
|
|
display: flex;
|
|
position: relative;
|
|
flex-flow: row;
|
|
hr {
|
|
width: 5%;
|
|
}
|
|
.first-column {
|
|
min-width: 215px;
|
|
border-right: solid 2px @color-whitethree;
|
|
display: flex;
|
|
flex-flow: column;
|
|
padding-top: 19px;
|
|
.card-folder-path {
|
|
width: 200px;
|
|
display: flex;
|
|
margin-top: 8px 0 8px 5px;
|
|
}
|
|
}
|
|
.second-column {
|
|
height: calc(~"100% - 19px");
|
|
min-width: 445px;
|
|
border-right: solid 2px @color-whitethree;
|
|
display: flex;
|
|
flex-flow: column;
|
|
padding-top: 19px;
|
|
.content {
|
|
width: 94%;
|
|
height: 100%;
|
|
.card-folder-path {
|
|
width: 371px;
|
|
display: flex;
|
|
margin-top: 8px 0 8px 8px;
|
|
}
|
|
}
|
|
.group-btn {
|
|
display: flex;
|
|
flex-flow: row;
|
|
justify-content: center;
|
|
margin-bottom: 16px;
|
|
input {
|
|
width: 360px;
|
|
height: 48px;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
font-size: 18px;
|
|
border: none;
|
|
border-bottom: 1px solid rgba(0, 0, 0, 0.4);
|
|
}
|
|
input[type="text"] {
|
|
padding-left: 5px;
|
|
outline: none ;
|
|
}
|
|
input:focus {
|
|
border-bottom: 1px solid @color-clear-blue;
|
|
box-shadow: none;
|
|
}
|
|
i {
|
|
width: 44px;
|
|
height: 44px;
|
|
padding: 0;
|
|
margin-top: 4px;
|
|
color: @color-darkish-blue;
|
|
}
|
|
}
|
|
}
|
|
.third-column {
|
|
height: calc(~"100% - 19px");
|
|
min-width: 447px;
|
|
border-right: solid 2px @color-whitethree;
|
|
display: flex;
|
|
flex-flow: column;
|
|
padding-top: 19px;
|
|
.content {
|
|
width: 94%;
|
|
height: 100%;
|
|
.card-folder-path {
|
|
width: 371px;
|
|
display: flex;
|
|
margin-top: 8px 0 8px 8px;
|
|
}
|
|
}
|
|
.label-folder-empty {
|
|
display: flex;
|
|
width: 100%;
|
|
height: 100%;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: @color-greyish-brown;
|
|
font-size: 20px;
|
|
}
|
|
.group-btn {
|
|
display: flex;
|
|
flex-flow: row;
|
|
justify-content: center;
|
|
margin-bottom: 16px;
|
|
input {
|
|
width: 360px;
|
|
height: 48px;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
font-size: 18px;
|
|
border: none;
|
|
border-bottom: 1px solid rgba(0, 0, 0, 0.4);
|
|
}
|
|
input[type="text"] {
|
|
padding-left: 5px;
|
|
outline: none ;
|
|
}
|
|
input:focus {
|
|
border-bottom: 1px solid @color-clear-blue;
|
|
box-shadow: none;
|
|
}
|
|
i {
|
|
width: 44px;
|
|
height: 44px;
|
|
padding: 0;
|
|
margin-top: 4px;
|
|
color: @color-darkish-blue;
|
|
}
|
|
}
|
|
}
|
|
.selected-item {
|
|
width: 660px;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-flow: column;
|
|
justify-content: flex-end;
|
|
padding: 0 16px 0 22px;
|
|
.selected-item-header {
|
|
height: 78px;
|
|
width: 100%;
|
|
display: flex;
|
|
flex-flow: row;
|
|
align-items: center;
|
|
.subtitle{
|
|
display: flex;
|
|
flex-flow: row;
|
|
font-size: 13px;
|
|
line-height: 4px;
|
|
.title{
|
|
width: 110px;
|
|
text-align: right;
|
|
color: @color-darkish-blue;
|
|
}
|
|
.text{
|
|
margin-right: 40px;
|
|
color: @color-greyish-brown;
|
|
margin-left: 5px;
|
|
}
|
|
}
|
|
.selected-item-title {
|
|
height: 100%;
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
color: @color-darkish-blue;
|
|
font-size: 26px;
|
|
line-height: 55px;
|
|
// margin-left: 24px;
|
|
}
|
|
.group-button {
|
|
height: 100%;
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
i {
|
|
font-size: 24px;
|
|
}
|
|
}
|
|
}
|
|
.selected-item-body {
|
|
width: 100%;
|
|
height: calc(~"100% - 78px");
|
|
position: relative;
|
|
border-top: solid 2px @color-whitethree;
|
|
display: flex;
|
|
flex-flow: column;
|
|
.selected-item-body-image {
|
|
display: flex;
|
|
width: 100%;
|
|
// margin: auto
|
|
margin-top: 10px;
|
|
height: 336px;
|
|
align-items: center;
|
|
.container{
|
|
margin: auto;
|
|
overflow: visible;
|
|
position: relative;
|
|
cursor: pointer;
|
|
img {
|
|
display: block;
|
|
max-height: 336px;
|
|
max-width: 567px;
|
|
box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.4);
|
|
}
|
|
.eye{
|
|
position: absolute;
|
|
bottom: 2px;
|
|
right: 10px;
|
|
font-size: 25px;
|
|
color: @color-darkish-blue;
|
|
}
|
|
}
|
|
.noimage{
|
|
display: block;
|
|
margin: auto;
|
|
height: 290px;
|
|
width: 90%;
|
|
text-align: center;
|
|
line-height: 290px;
|
|
color: @color-greyish-brown;
|
|
font-size: 24px;
|
|
box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.4);
|
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
|
|
}
|
|
}
|
|
.selected-item-body-description {
|
|
display: flex;
|
|
width: 100%;
|
|
margin-top: 10px;
|
|
overflow-x: hidden;
|
|
height: calc(~"100% - 380px");
|
|
flex-flow: column;
|
|
|
|
.row{
|
|
font-family: monospace;
|
|
white-space:pre;
|
|
height: 32px;
|
|
min-height: 32px;
|
|
display: flex;
|
|
align-items: center;
|
|
color: @color-greyish-brown;
|
|
line-height: 1.78px;
|
|
text-align: justify;
|
|
overflow: hidden;
|
|
label{
|
|
font-size: 18px;
|
|
margin-left: 5px;
|
|
white-space: nowrap;
|
|
}
|
|
}
|
|
.row:nth-child(odd){
|
|
background-color: @color-clear-blue-30;
|
|
}
|
|
.row:nth-child(even){
|
|
background-color: @color-white4;
|
|
}
|
|
|
|
}
|
|
}
|
|
.notselecteditem {
|
|
position: absolute;
|
|
right: 0;
|
|
width: 695px;
|
|
height: 631px;
|
|
background-color: @color-white2;
|
|
padding: 0;
|
|
color: @color-greyish-brown;
|
|
font-size: 24px;
|
|
align-items: center;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
}
|
|
}
|
|
.modal-load-program-footer, .modal-add-element-queue-footer {
|
|
height: 79px;
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
border-top: solid 2px @color-whitethree;
|
|
}
|
|
|
|
.box-description{
|
|
box-sizing: border-box;
|
|
padding-top: 10px;
|
|
height: 120px;
|
|
width: 100%;
|
|
border-top: solid 2px #e7e7e7;
|
|
}
|
|
.box-image{
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
flex-flow: column;
|
|
min-height: 415px;
|
|
width: 100%;
|
|
margin-top: 16px;
|
|
.box-image-container{
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
min-height: 329px;
|
|
width: 100%;
|
|
margin: 25px auto 23px auto;
|
|
img{
|
|
max-width: 577px;
|
|
max-height: 329px;
|
|
box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.4);
|
|
}
|
|
}
|
|
.linenumber{
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
div{
|
|
width: 32px;
|
|
height: 18px;
|
|
button{
|
|
margin: auto 4px;
|
|
border: none;
|
|
padding: 0;
|
|
background: none;
|
|
font-size: 18px;
|
|
line-height: 1;
|
|
color: @color-greyish-brown;
|
|
}
|
|
.target{
|
|
color: @color-clear-blue;
|
|
font-weight: 600;
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.@{modal}.modal-job-add-parameter {
|
|
width: @modal-job-add-parameter-width;
|
|
height: @modal-job-add-parameter-height;
|
|
top: calc(~"50%" - @modal-job-add-parameter-height / 2);
|
|
left: calc(~"50%" - @modal-job-add-parameter-width / 2);
|
|
background-color: @color-background-white;
|
|
header {
|
|
padding-left: 22px;
|
|
font-size: 24px;
|
|
font-weight: 600;
|
|
color: @color-darkish-blue;
|
|
button.close {
|
|
display: flex;
|
|
width: 28px;
|
|
height: 28px;
|
|
border-radius: 50%;
|
|
border: none;
|
|
background-color: #002680;
|
|
color: #fff;
|
|
font-size: 16px;
|
|
float: right;
|
|
cursor: pointer;
|
|
.fa {
|
|
display: flex;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
}
|
|
}
|
|
.job-add-parameter-body {
|
|
height: 464px;
|
|
width: 100%;
|
|
display: flex;
|
|
flex-flow: column;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
.box:first-child {
|
|
margin-top: 15px;
|
|
margin-bottom: 8px;
|
|
}
|
|
.box {
|
|
display: flex;
|
|
margin: 8px;
|
|
width: 656px;
|
|
height: 80px;
|
|
border-radius: 2px;
|
|
background-color: @color-background-white;
|
|
box-shadow: 0 1px 1px 0 @color-black-50;
|
|
flex-flow: row;
|
|
align-items: center;
|
|
.box-title {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
font-size: 18px;
|
|
line-height: 1.11;
|
|
color: @color-greyish-brown;
|
|
label {
|
|
margin-left: 15px;
|
|
}
|
|
}
|
|
.control {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
select {
|
|
width: 304px;
|
|
height: 48px;
|
|
border-radius: 2px;
|
|
margin-right: 16px;
|
|
box-shadow: inset 0 1px 3px 0 @color-black-50;
|
|
background-color: @color-background-white;
|
|
border: solid 1px @color-silver;
|
|
font-size: 18px;
|
|
line-height: 1.11;
|
|
color: @color-greyish-brown;
|
|
padding-left: 16px;
|
|
}
|
|
input {
|
|
width: 304px;
|
|
height: 48px;
|
|
border-radius: 2px;
|
|
box-shadow: inset 0 1px 3px 0 @color-black-50;
|
|
background-color: @color-background-white;
|
|
border: solid 1px @color-silver;
|
|
margin: 16px;
|
|
}
|
|
}
|
|
}
|
|
.items-list {
|
|
width: 475px;
|
|
max-height: 248px;
|
|
display: flex;
|
|
flex-flow: column;
|
|
.title{
|
|
height: 20px;
|
|
font-size: 18px;
|
|
line-height: 1.11;
|
|
margin: 0 10px;
|
|
color: @color-greyish-brown;
|
|
}
|
|
.items{
|
|
width: 100%;
|
|
max-height: 185px;
|
|
min-height: 185px;
|
|
display: flex;
|
|
flex-flow: column;
|
|
overflow: auto;
|
|
.group-item {
|
|
width: 100%;
|
|
min-height: 60px;
|
|
display: flex;
|
|
flex-flow: column;
|
|
.item {
|
|
width: 100%;
|
|
height: 48px;
|
|
display: flex;
|
|
flex-flow: row;
|
|
align-items: center;
|
|
.number {
|
|
font-size: 18px;
|
|
line-height: 1.11;
|
|
color: @color-greyish-brown;
|
|
margin-right: 16px;
|
|
}
|
|
.input-text-box {
|
|
margin-right: 8px;
|
|
input {
|
|
width: 304px;
|
|
height: 48px;
|
|
border-radius: 2px;
|
|
box-shadow: inset 0 1px 3px 0 @color-black-50;
|
|
border: solid 1px @color-silver;
|
|
}
|
|
}
|
|
.group-button {
|
|
button.btn {
|
|
padding: 0 12px;
|
|
.fa {
|
|
font-size: 24px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.item:first-child {
|
|
margin-top: 12px;
|
|
}
|
|
}
|
|
}
|
|
.add-item {
|
|
width: 100%;
|
|
margin-top: 10px;
|
|
display: flex;
|
|
}
|
|
}
|
|
}
|
|
.job-add-parameter-footer {
|
|
width: 100%;
|
|
height: 78px;
|
|
display: flex;
|
|
border-top: solid 2px @color-label-grey;
|
|
flex-flow: row;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
}
|
|
}
|
|
|
|
.@{modal}.modal-edit-job {
|
|
width: @modal-edit-job-width;
|
|
height: @modal-edit-job-height;
|
|
border-radius: 2px;
|
|
top: calc(~"50%" - 392px);
|
|
left: calc(~"50%" - @modal-edit-job-width / 2);
|
|
background-color: @color-background-white;
|
|
header {
|
|
display: flex;
|
|
align-items: center;
|
|
height: 79px;
|
|
padding-left: 23px;
|
|
font-size: 24px;
|
|
font-weight: 600;
|
|
color: @color-darkish-blue;
|
|
button.close {
|
|
display: flex;
|
|
width: 28px;
|
|
height: 28px;
|
|
border-radius: 50%;
|
|
border: none;
|
|
background-color: #002680;
|
|
color: #fff;
|
|
font-size: 16px;
|
|
float: right;
|
|
cursor: pointer;
|
|
.fa {
|
|
display: flex;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
}
|
|
}
|
|
.modal-edit-job-body {
|
|
height: 712px;
|
|
width: 100%;
|
|
display: flex;
|
|
flex-flow: column;
|
|
.tab-box {
|
|
height: 81px;
|
|
width: 100%;
|
|
background-color: @color-whitethree;
|
|
display: flex;
|
|
flex-direction: row;
|
|
border: none !important;
|
|
.tab {
|
|
flex-grow: 0;
|
|
flex-shrink: 0;
|
|
float: left !important;
|
|
width: 238px !important;
|
|
height: 100% !important;
|
|
margin: 0 !important;
|
|
padding: 0;
|
|
border: none !important;
|
|
border-right: solid 1px @color-label-grey !important;
|
|
background-color: @color-whitethree;
|
|
font-size: 18px !important;
|
|
line-height: 1 !important;
|
|
color: @color-greyish-brown !important;
|
|
position: relative;
|
|
&.plus {
|
|
border-right: none !important;
|
|
.btn {
|
|
float: left !important;
|
|
margin: 0;
|
|
width: 48px;
|
|
height: 48px;
|
|
position: absolute;
|
|
top: calc(~"50% - 24px");
|
|
margin-left: 20px;
|
|
padding: 0;
|
|
.fa {
|
|
vertical-align: middle;
|
|
font-size: 21px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.tab:last-child {
|
|
border-right: none !important;
|
|
}
|
|
.active {
|
|
background-color: @color-white;
|
|
border-top: solid 2px @color-clear-blue !important;
|
|
}
|
|
.tab-box-scroll {
|
|
width: 100%;
|
|
overflow-y: hidden;
|
|
overflow-x: auto;
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-basis: auto;
|
|
&::-webkit-scrollbar {
|
|
width: 5px;
|
|
height: 5px;
|
|
}
|
|
&::-webkit-scrollbar-thumb {
|
|
border-radius: 5px;
|
|
height: 1px;
|
|
background-color: rgba(0, 0, 0, 0.3);
|
|
}
|
|
}
|
|
}
|
|
.modal-edit-job-box {
|
|
width: 100%;
|
|
// height: calc(~"100% - 81px");
|
|
display: flex;
|
|
flex-flow: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
.box-image{
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
flex-flow: column;
|
|
height: 415px;
|
|
width: 752px;
|
|
margin-top: 16px;
|
|
margin-bottom: 26px;
|
|
background-color: @color-white4;
|
|
img{
|
|
width: 577px;
|
|
height: 329px;
|
|
margin: 25px auto 23px auto;
|
|
}
|
|
.linenumber{
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
div{
|
|
width: 32px;
|
|
height: 18px;
|
|
button{
|
|
margin: auto 4px;
|
|
border: none;
|
|
padding: 0;
|
|
background: none;
|
|
font-size: 18px;
|
|
line-height: 1;
|
|
color: @color-greyish-brown;
|
|
}
|
|
.target{
|
|
color: @color-clear-blue;
|
|
font-weight: 600;
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
.box-text{
|
|
height: 104px;
|
|
width: 834px;
|
|
display: flex;
|
|
flex-flow: column;
|
|
margin: 0 auto;
|
|
.title{
|
|
display: flex;
|
|
font-size: 18px;
|
|
line-height: 1;
|
|
color: @color-darkish-blue;
|
|
}
|
|
.text{
|
|
display: flex;
|
|
margin-left: 14px;
|
|
width: 820px;
|
|
height: 72px;
|
|
font-size: 18px;
|
|
line-height: 1;
|
|
margin-top: 14px;
|
|
color: @color-greyish-brown;
|
|
}
|
|
}
|
|
.box-tag-tool {
|
|
height: 100%;
|
|
width: 100%;
|
|
.tag-tool-first {
|
|
margin-top: 40px;
|
|
}
|
|
}
|
|
.box-tag-params {
|
|
height: 100%;
|
|
width: 100%;
|
|
display: flex;
|
|
flex-flow: column;
|
|
align-items: center;
|
|
.input-box {
|
|
width: 656px;
|
|
margin: 4px 0px;
|
|
}
|
|
.input-box.tag-params-first {
|
|
margin-top: 36px;
|
|
margin-bottom: 51px;
|
|
}
|
|
.input-box .control input {
|
|
width: 96px;
|
|
}
|
|
}
|
|
.box-tag-times{
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-flow: column;
|
|
align-items: center;
|
|
.row-time{
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
flex-flow: row;
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
line-height: 1.11;
|
|
color: @color-greyish-brown;
|
|
margin-top: 39px;
|
|
.box-time-to-use{
|
|
display: flex;
|
|
float: left;
|
|
flex-flow: column;
|
|
width: 292px;
|
|
height: 109px;
|
|
margin-left: 30px;
|
|
label{
|
|
margin-bottom: 36px;
|
|
text-align: center;
|
|
}
|
|
input{
|
|
width: 288px;
|
|
height: 48px;
|
|
}
|
|
}
|
|
.box-time-average-time{
|
|
display: flex;
|
|
float: right;
|
|
flex-flow: column;
|
|
width: 292px;
|
|
height: 109px;
|
|
label{
|
|
margin-bottom: 48px;
|
|
text-align: center;
|
|
}
|
|
span{
|
|
font-size: 36px;
|
|
line-height: 0.56;
|
|
color: @color-greyish-brown;
|
|
text-align: center;
|
|
}
|
|
}
|
|
}
|
|
.box-history-time{
|
|
.box-history-time-title{
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-top: 64px;
|
|
}
|
|
// table{
|
|
// width: 720px;
|
|
// height: 240px;
|
|
// border-radius: 2px;
|
|
// border: solid 1px @color-label-grey;
|
|
// table-layout: fixed;
|
|
// tr{
|
|
// width: 100%;
|
|
// display: table;
|
|
// }
|
|
// thead tr{
|
|
// height: 48px;
|
|
// }
|
|
// tbody{
|
|
// display: block;
|
|
// width: 720px;
|
|
// height: 192px;
|
|
// tr{
|
|
// height: 64px;
|
|
// width: 100%;
|
|
// td{
|
|
// text-align: center;
|
|
// div{
|
|
// margin: 0 auto;
|
|
// }
|
|
// }
|
|
// }
|
|
// }
|
|
// tr:nth-child(even) {background: #dddddd}
|
|
// tr:nth-child(odd) {background: #FFF}
|
|
// }
|
|
|
|
table{
|
|
width: 720px;
|
|
height: 240px;
|
|
border-collapse: collapse;
|
|
border: solid 1px @color-label-grey;
|
|
margin-top: 10px;
|
|
}
|
|
td, th {
|
|
text-align: center;
|
|
// padding: 8px;
|
|
height: 46px;
|
|
font-size: 14px;
|
|
line-height: 1.43;
|
|
color: @color-greyish-brown;
|
|
}
|
|
td{
|
|
min-height: 46px;
|
|
}
|
|
thead tr th{
|
|
font-size: 14px;
|
|
line-height: 1.43;
|
|
font-weight: 600;
|
|
color: @color-greyish-brown;
|
|
background-color: @color-background-white;
|
|
}
|
|
tr:nth-child(even) {
|
|
background-color: @color-white4;
|
|
}
|
|
tr:nth-child(odd){
|
|
background-color: @color-clear-blue-30;
|
|
}
|
|
input[type=checkbox] {
|
|
visibility: hidden;
|
|
}
|
|
.modal-edit-job-checkbox {
|
|
width: 24px;
|
|
height: 24px;
|
|
display: flex;
|
|
margin-left: 42%;
|
|
align-items: center;
|
|
position: relative;
|
|
}
|
|
.modal-edit-job-checkbox label {
|
|
cursor: pointer;
|
|
position: absolute;
|
|
width: 22px;
|
|
height: 22px;
|
|
top: 0;
|
|
left: 0;
|
|
background-color: @color-white2;
|
|
box-shadow: inset 0 1px 3px @color-black-50;
|
|
border-radius: 2px;
|
|
}
|
|
.modal-edit-job-checkbox label:after {
|
|
opacity: 0;
|
|
content: '';
|
|
position: absolute;
|
|
width: 16px;
|
|
height: 9px;
|
|
background: transparent;
|
|
top: 3px;
|
|
left: 2px;
|
|
border: 5px solid #1791ff;
|
|
border-top: none;
|
|
border-right: none;
|
|
transform: rotate(-48deg);
|
|
}
|
|
.modal-edit-job-checkbox input[type=checkbox]:checked+label{
|
|
cursor: pointer;
|
|
position: absolute;
|
|
width: 22px;
|
|
height: 22px;
|
|
top: 0;
|
|
left: 0;
|
|
background-color: @color-white2;
|
|
border: solid 1px @color-clear-blue;
|
|
border-radius: 2px;
|
|
}
|
|
.modal-edit-job-checkbox input[type=checkbox]:checked+label:after {
|
|
opacity: 1;
|
|
}
|
|
.modal-edit-job-checkbox-label {
|
|
display: flex;
|
|
margin-left: 8px;
|
|
font-size: 18px;
|
|
line-height: 1.11;
|
|
color: @color-greyish-brown;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.modal-edit-job-footer {
|
|
height: 78px;
|
|
border-top: solid 2px @color-label-grey;
|
|
width: 100%;
|
|
.group-btn {
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
.@{modal}.modal-missing-tools{
|
|
width: @modal-missing-tools-width;
|
|
height: @modal-missing-tools-height;
|
|
border-radius: 2px;
|
|
top: calc(~"50%" - @modal-missing-tools-height / 2);
|
|
left: calc(~"50%" - @modal-missing-tools-width / 2);
|
|
background-color: @color-background-white;
|
|
header {
|
|
display: flex;
|
|
align-items: center;
|
|
padding-left: 24px;
|
|
font-size: 20px;
|
|
color: @color-darkish-blue;
|
|
button.close {
|
|
display: flex;
|
|
width: 28px;
|
|
height: 28px;
|
|
border-radius: 50%;
|
|
border: none;
|
|
background-color: #002680;
|
|
color: #fff;
|
|
font-size: 16px;
|
|
float: right;
|
|
cursor: pointer;
|
|
.fa {
|
|
display: flex;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
}
|
|
}
|
|
.modal-missing-tools-body.scrollable{
|
|
height: 325px;
|
|
.modal-missing-tools-box{
|
|
height: 100%;
|
|
width: 100%;
|
|
display: flex;
|
|
flex-flow: column;
|
|
align-items: center;
|
|
margin-top: 22px;
|
|
.title{
|
|
display: flex;
|
|
flex-flow: column;
|
|
label{
|
|
text-align: center;
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
line-height: 1.11;
|
|
color: @color-greyish-brown;
|
|
}
|
|
span{
|
|
font-size: 18px;
|
|
line-height: 1.11;
|
|
color: @color-greyish-brown;
|
|
margin-top: 14px;
|
|
}
|
|
}
|
|
.box-missing-tools{
|
|
margin-top: 26px;
|
|
.missing-tool{
|
|
cursor: pointer;
|
|
}
|
|
.missing-tool.selected{
|
|
background-color: @color-clear-blue;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.modal-missing-tools-footer{
|
|
height: 79px;
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
border-top: solid 2px @color-label-grey;
|
|
}
|
|
}
|
|
|
|
.@{modal}.modal-add-offset-tool {
|
|
width: @modal-add-offset-tool-width;
|
|
height: @modal-add-offset-tool-height;
|
|
border-radius: 2px;
|
|
top: calc(~"50%" - 335px);
|
|
left: calc(~"50%" - @modal-add-offset-tool-width / 2);
|
|
background-color: @color-background-white;
|
|
header {
|
|
display: flex;
|
|
align-items: center;
|
|
height: 79px;
|
|
padding-left: 23px;
|
|
font-size: 24px;
|
|
font-weight: 600;
|
|
color: @color-darkish-blue;
|
|
button.close {
|
|
display: flex;
|
|
width: 28px;
|
|
height: 28px;
|
|
border-radius: 50%;
|
|
border: none;
|
|
background-color: #002680;
|
|
color: #fff;
|
|
font-size: 16px;
|
|
float: right;
|
|
cursor: pointer;
|
|
.fa {
|
|
display: flex;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
}
|
|
}
|
|
.modal-add-offset-tool-body {
|
|
height: 513px;
|
|
width: 100%;
|
|
display: flex;
|
|
flex-flow: column;
|
|
align-items: center;
|
|
.input-box{
|
|
width: 700px;
|
|
margin: 8px 0;
|
|
}
|
|
}
|
|
.modal-add-offset-tool-footer {
|
|
height: 78px;
|
|
border-top: solid 2px @color-label-grey;
|
|
width: 100%;
|
|
.group-btn {
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
}
|
|
}
|
|
}
|
|
|
|
.imageViewerZoom {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: #cccccc;
|
|
top: 0;
|
|
display: block;
|
|
overflow:hidden;
|
|
.container{
|
|
width: 100%;
|
|
height: 100%;
|
|
cursor: -webkit-grab;
|
|
}
|
|
.loading{
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
top: 0;
|
|
left: 0;
|
|
background: #cccccc;
|
|
display: flex;
|
|
align-items: center;
|
|
text-align: center;
|
|
font-size: 4em;
|
|
justify-content: center;
|
|
cursor:wait;
|
|
color: #4b4b4b;
|
|
}
|
|
|
|
img{
|
|
position: absolute;
|
|
user-drag: none;
|
|
-webkit-user-drag: none;
|
|
box-shadow: 0 0px 3px 0 rgba(0, 0, 0, 0.4)
|
|
}
|
|
&::-webkit-scrollbar {
|
|
width: 4px;
|
|
height: 4px;
|
|
background-color: transparent;
|
|
}
|
|
|
|
&::-webkit-scrollbar-thumb {
|
|
border-radius: 2px;
|
|
background-color: rgba(0, 0, 0, 0.3);
|
|
}
|
|
.btngroup_close{
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
margin-right: 20px;
|
|
margin-top: 20px;
|
|
|
|
}
|
|
.btngroup{
|
|
position: absolute;
|
|
bottom: 0;
|
|
right: 0;
|
|
margin-right: 20px;
|
|
margin-bottom: 50px;
|
|
button{
|
|
margin-top: 20px;
|
|
}
|
|
button.searchminus{
|
|
margin-top: 0px;
|
|
}
|
|
}
|
|
button {
|
|
font-size: 20px;
|
|
justify-content: center;
|
|
display: flex;
|
|
background-color: @color-header-button-background-color;
|
|
background-image: linear-gradient(to bottom, #1756ad, #002680);
|
|
box-shadow: @color-header-button-box-shadow;
|
|
border-radius: @header-button-size /2;
|
|
border: none;
|
|
height: @header-button-size;
|
|
max-height: @header-button-size;
|
|
min-width: @header-button-size;
|
|
max-width: @header-button-size;
|
|
cursor: pointer;
|
|
color: #FFF;
|
|
z-index: 1;
|
|
}
|
|
button:disabled {
|
|
background-color: #002680 !important;;
|
|
filter: grayscale(100%);
|
|
}
|
|
button>img {
|
|
margin: auto;
|
|
height: @header-button-size/2;
|
|
margin: auto;
|
|
display: block;
|
|
}
|
|
button>img.h-20 {
|
|
height: 20px;
|
|
}
|
|
button>img.h-24 {
|
|
height: 24px;
|
|
}
|
|
button .machine-info small {
|
|
display: block;
|
|
text-align: left;
|
|
margin-left: 5px;
|
|
font-family: 'Work Sans', sans-serif;
|
|
font-size: 11px;
|
|
}
|
|
button.red {
|
|
background-color: @color-scarlet;
|
|
color: white;
|
|
box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.4), inset 0 1px 3px 0 rgba(0, 0, 0, 0.5);
|
|
}
|
|
button.blue {
|
|
background-color: @color-clear-blue;
|
|
color: white;
|
|
}
|
|
button.dark-blue {
|
|
background-color: @color-darkish-blue;
|
|
color: white;
|
|
}
|
|
button.dark-blue:active {
|
|
background-color: @color-clear-blue;
|
|
}
|
|
button.gray {
|
|
background-color: @color-greyish-brown;
|
|
color: white;
|
|
}
|
|
button.profile {
|
|
width: @header-button-size; // background-image: url(../profile.png);
|
|
color: #000;
|
|
// background-size: cover;
|
|
&.colorWhite{
|
|
color: #FFF;
|
|
}
|
|
}
|
|
button.unclickable {
|
|
cursor: default;
|
|
}
|
|
|
|
|
|
input[type=range] {
|
|
-webkit-appearance: none;
|
|
margin: 18px 0;
|
|
width: 200px;
|
|
transform: rotate(-90deg);
|
|
margin-top:200px;
|
|
}
|
|
input[type=range]:focus {
|
|
outline: none;
|
|
}
|
|
input[type=range]::-webkit-slider-runnable-track {
|
|
width: 100%;
|
|
height: 9px;
|
|
cursor: pointer;
|
|
background: #979797;
|
|
border-radius: 4px;
|
|
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.4);
|
|
}
|
|
input[type=range]::-webkit-slider-thumb {
|
|
height: 30px;
|
|
width: 30px;
|
|
border-radius: 15px;
|
|
background-color: #ffffff;
|
|
background-image: linear-gradient(to left, #1756ad, #002680);
|
|
box-shadow: 0 0px 3px 0 rgba(0, 0, 0, 0.4);
|
|
cursor: pointer;
|
|
-webkit-appearance: none;
|
|
margin-top: -10px;
|
|
}
|
|
.rangecontainer{
|
|
height: 257px;
|
|
width: 44px;
|
|
overflow: hidden;
|
|
.range{
|
|
position: absolute;
|
|
top: -15px;
|
|
left: -79px;
|
|
}
|
|
}
|
|
}
|
|
.imageViewerZoom:active {
|
|
cursor: -webkit-grabbing;
|
|
}
|
|
|
|
.@{modal}.modal-report-select-column {
|
|
width: @modal-report-select-column-width;
|
|
height: @modal-report-select-column-height;
|
|
top: calc(~"50%" - @modal-report-select-column-height / 2);
|
|
left: calc(~"50%" - @modal-report-select-column-width / 2);
|
|
background-color: @color-background-white;
|
|
header {
|
|
display: flex;
|
|
align-items: center;
|
|
height: 63px;
|
|
padding-left: 23px;
|
|
font-size: 20px;
|
|
color: @color-darkish-blue;
|
|
button.close {
|
|
display: flex;
|
|
width: 28px;
|
|
height: 28px;
|
|
border-radius: 50%;
|
|
border: none;
|
|
background-color: #002680;
|
|
color: #fff;
|
|
font-size: 16px;
|
|
float: right;
|
|
cursor: pointer;
|
|
.fa {
|
|
display: flex;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
}
|
|
}
|
|
.modal-report-body-header{
|
|
display: flex;
|
|
flex-flow: column;
|
|
margin-left: 24px;
|
|
margin-top: 20px;
|
|
height: 95px;
|
|
label{
|
|
font-size: 18px;
|
|
line-height: 1.11;
|
|
color: @color-greyish-brown;
|
|
}
|
|
div{
|
|
display: flex;
|
|
flex-flow: row;
|
|
width: 267px;
|
|
height: 24px;
|
|
input[type=checkbox] {
|
|
visibility: hidden;
|
|
}
|
|
.modal-report-select-column-checkbox {
|
|
width: 24px;
|
|
height: 24px;
|
|
display: flex;
|
|
align-items: center;
|
|
position: relative;
|
|
margin-top: 29px;
|
|
}
|
|
.modal-report-select-column-checkbox label {
|
|
cursor: pointer;
|
|
position: absolute;
|
|
width: 22px;
|
|
height: 22px;
|
|
top: 0;
|
|
left: 0;
|
|
background-color: @color-white2;
|
|
box-shadow: inset 0 1px 3px @color-black-50;
|
|
border-radius: 2px;
|
|
}
|
|
.modal-report-select-column-checkbox label:after {
|
|
opacity: 0;
|
|
content: '';
|
|
position: absolute;
|
|
width: 16px;
|
|
height: 9px;
|
|
background: transparent;
|
|
top: 3px;
|
|
left: 2px;
|
|
border: 5px solid #1791ff;
|
|
border-top: none;
|
|
border-right: none;
|
|
transform: rotate(-48deg);
|
|
}
|
|
.modal-report-select-column-checkbox input[type=checkbox]:checked+label{
|
|
cursor: pointer;
|
|
position: absolute;
|
|
width: 22px;
|
|
height: 22px;
|
|
top: 0;
|
|
left: 0;
|
|
background-color: @color-white2;
|
|
border: solid 1px @color-clear-blue;
|
|
border-radius: 2px;
|
|
}
|
|
.modal-report-select-column-checkbox input[type=checkbox]:checked+label:after {
|
|
opacity: 1;
|
|
}
|
|
.modal-report-select-column-checkbox-label {
|
|
display: flex;
|
|
margin-left: 17px;
|
|
margin-top: 29px;
|
|
height: 29px;
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
line-height: 1.11;
|
|
color: @color-darkish-blue;
|
|
}
|
|
}
|
|
}
|
|
.modal-report-body-center{
|
|
width: calc(~"100% - 24px");
|
|
height: 452px;
|
|
display: flex;
|
|
padding-left: 24px;
|
|
flex-flow: column;
|
|
.modal-report-body-center-row{
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-flow: row;
|
|
margin: 24px 0;
|
|
div{
|
|
display: flex;
|
|
flex-flow: row;
|
|
width: 267px;
|
|
height: 24px;
|
|
input[type=checkbox] {
|
|
visibility: hidden;
|
|
}
|
|
.modal-report-select-column-checkbox {
|
|
width: 24px;
|
|
height: 24px;
|
|
display: flex;
|
|
align-items: center;
|
|
position: relative;
|
|
// margin-top: 29px;
|
|
}
|
|
.modal-report-select-column-checkbox label {
|
|
cursor: pointer;
|
|
position: absolute;
|
|
width: 22px;
|
|
height: 22px;
|
|
top: 0;
|
|
left: 0;
|
|
background-color: @color-white2;
|
|
box-shadow: inset 0 1px 3px @color-black-50;
|
|
border-radius: 2px;
|
|
}
|
|
.modal-report-select-column-checkbox label:after {
|
|
opacity: 0;
|
|
content: '';
|
|
position: absolute;
|
|
width: 16px;
|
|
height: 9px;
|
|
background: transparent;
|
|
top: 3px;
|
|
left: 2px;
|
|
border: 5px solid #1791ff;
|
|
border-top: none;
|
|
border-right: none;
|
|
transform: rotate(-48deg);
|
|
}
|
|
.modal-report-select-column-checkbox input[type=checkbox]:checked+label{
|
|
cursor: pointer;
|
|
position: absolute;
|
|
width: 22px;
|
|
height: 22px;
|
|
top: 0;
|
|
left: 0;
|
|
background-color: @color-white2;
|
|
border: solid 1px @color-clear-blue;
|
|
border-radius: 2px;
|
|
}
|
|
.modal-report-select-column-checkbox input[type=checkbox]:checked+label:after {
|
|
opacity: 1;
|
|
}
|
|
.modal-report-select-column-checkbox-label {
|
|
display: flex;
|
|
margin-left: 17px;
|
|
// margin-top: 29px;
|
|
height: 29px;
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
line-height: 1.11;
|
|
color: @color-darkish-blue;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.modal-report-body-footer{
|
|
width: 100%;
|
|
height: 62px;
|
|
display: flex;
|
|
border-top: solid 2px @color-silver;
|
|
flex-flow: row;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
}
|
|
} |