2018-11-07 07:10:56 +08:00
|
|
|
@import "/imports/ui/stylesheets/variables/_all";
|
|
|
|
@import '/imports/ui/stylesheets/mixins/focus';
|
|
|
|
@import "/imports/ui/components/modal/simple/styles";
|
|
|
|
|
|
|
|
.actions {
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.closeBtn {
|
|
|
|
i {
|
|
|
|
color: var(--color-gray-light);
|
|
|
|
}
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.col {
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
width: 30%;
|
2018-12-21 03:04:11 +08:00
|
|
|
@include mq("#{$small-only}") {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2018-11-07 07:10:56 +08:00
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
margin-right: 1.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
|
|
|
display: flex;
|
|
|
|
flex: 3;
|
2018-12-21 03:04:11 +08:00
|
|
|
|
|
|
|
@include mq("#{$small-only}") {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
2018-11-07 07:10:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.footer {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header {
|
|
|
|
display: flex;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.label {
|
|
|
|
font-size: 0.85rem;
|
|
|
|
font-weight: bold;
|
|
|
|
color: var(--color-gray-label);
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal {
|
|
|
|
padding: 1rem;
|
|
|
|
@extend .modal;
|
|
|
|
}
|
|
|
|
|
|
|
|
.overlay {
|
|
|
|
@extend .overlay;
|
|
|
|
}
|
|
|
|
|
|
|
|
.preview {
|
2018-11-15 05:17:44 +08:00
|
|
|
border-radius: 5px;
|
2018-11-07 07:10:56 +08:00
|
|
|
width: 100%;
|
2018-11-17 01:49:46 +08:00
|
|
|
height: 8rem;
|
2018-12-21 03:04:11 +08:00
|
|
|
@include mq("#{$small-only}") {
|
|
|
|
height: 100%;
|
|
|
|
}
|
2018-11-07 07:10:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.row {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.select {
|
|
|
|
margin-top: 0.4rem;
|
|
|
|
width: 100%;
|
|
|
|
height: 1.6rem;
|
|
|
|
|
|
|
|
color: var(--color-gray-label);
|
|
|
|
border-radius: 0.3rem;
|
|
|
|
|
|
|
|
background-color: var(--color-white);
|
|
|
|
}
|
|
|
|
|
|
|
|
.title {
|
|
|
|
font-size: 1.4rem;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|