/**
|
* cUserSignature
|
* @author Tevin
|
*/
|
|
@import "../../common/sassMixin";
|
|
.c-signature-layer {
|
&.at-float-layout {
|
.at-float-layout__container {
|
height: 94%;
|
max-height: 100%;
|
}
|
.layout-body {
|
padding: 0;
|
}
|
.layout-body__content {
|
height: 100%;
|
}
|
}
|
.c-signature-layer-btns {
|
@include position(absolute, n 0 0 n);
|
width: 100%;
|
height: 92px;
|
font-size: 0;
|
.at-button {
|
width: 50%;
|
border-radius: 0;
|
}
|
}
|
.c-signature-layer-draw {
|
position: relative;
|
height: calc(100% - 92px);
|
.size-box-top {
|
@include position(absolute, 3% 3% n n);
|
width: 94%;
|
height: 36px;
|
pointer-events: none;
|
&::before {
|
@include position(absolute, 0 0 n n);
|
width: 36px;
|
height: 36px;
|
border-top: #ccc 1PX solid;
|
border-left: #ccc 1PX solid;
|
border-top-left-radius: 8px;
|
content: " ";
|
}
|
&::after {
|
@include position(absolute, 0 n n 0);
|
width: 36px;
|
height: 36px;
|
border-top: #ccc 1PX solid;
|
border-right: #ccc 1PX solid;
|
border-top-right-radius: 8px;
|
content: " ";
|
}
|
}
|
.size-box-bottom {
|
@include position(absolute, n 3% 3% n);
|
width: 94%;
|
height: 36px;
|
pointer-events: none;
|
&::before {
|
@include position(absolute, n 0 0 n);
|
width: 36px;
|
height: 36px;
|
border-bottom: #ccc 1PX solid;
|
border-left: #ccc 1PX solid;
|
border-bottom-left-radius: 8px;
|
content: " ";
|
}
|
&::after {
|
@include position(absolute, n n 0 0);
|
width: 36px;
|
height: 36px;
|
border-bottom: #ccc 1PX solid;
|
border-right: #ccc 1PX solid;
|
border-bottom-right-radius: 8px;
|
content: " ";
|
}
|
}
|
.drawing {
|
width: 100%;
|
height: 100%;
|
}
|
}
|
}
|