2019-05-17 04:11:10 +08:00
|
|
|
@import "/imports/ui/stylesheets/variables/_all";
|
|
|
|
@import "/imports/ui/components/modal/simple/styles";
|
|
|
|
@import "/imports/ui/stylesheets/mixins/focus";
|
|
|
|
|
|
|
|
.header {
|
2019-05-29 03:19:08 +08:00
|
|
|
display: flex;
|
2019-05-17 04:11:10 +08:00
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
2019-05-29 03:19:08 +08:00
|
|
|
.footer {
|
2019-05-17 04:11:10 +08:00
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
2019-05-29 03:19:08 +08:00
|
|
|
.title {
|
|
|
|
display: block;
|
|
|
|
color: var(--color-background);
|
|
|
|
font-size: 1.4rem;
|
|
|
|
text-align: center;
|
2019-05-17 04:11:10 +08:00
|
|
|
}
|
|
|
|
|
2019-05-29 03:19:08 +08:00
|
|
|
.actions {
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: 3px;
|
2019-05-17 04:11:10 +08:00
|
|
|
|
|
|
|
|
2019-05-29 03:19:08 +08:00
|
|
|
[dir="rtl"] & {
|
|
|
|
margin-right: auto;
|
|
|
|
margin-left: 3px;
|
2019-05-17 04:11:10 +08:00
|
|
|
}
|
|
|
|
|
2019-05-29 03:19:08 +08:00
|
|
|
:first-child {
|
|
|
|
margin-right: 3px;
|
|
|
|
margin-left: inherit;
|
|
|
|
|
|
|
|
[dir="rtl"] & {
|
|
|
|
margin-right: inherit;
|
|
|
|
margin-left: 3px;
|
|
|
|
}
|
2019-05-17 04:11:10 +08:00
|
|
|
}
|
|
|
|
}
|
2019-05-29 03:19:08 +08:00
|
|
|
.modal {
|
|
|
|
@extend .modal;
|
|
|
|
padding: 1rem;
|
|
|
|
}
|
2019-05-17 04:11:10 +08:00
|
|
|
|
2019-05-29 03:19:08 +08:00
|
|
|
.col {
|
2019-05-17 04:11:10 +08:00
|
|
|
display: flex;
|
2019-05-29 03:19:08 +08:00
|
|
|
flex-direction: column;
|
|
|
|
height: 100%;
|
|
|
|
margin: 0 1.5rem 0 0;
|
|
|
|
justify-content: center;
|
2019-05-17 04:11:10 +08:00
|
|
|
|
2019-05-29 03:19:08 +08:00
|
|
|
[dir="rtl"] & {
|
|
|
|
margin: 0 0 0 1.5rem;
|
2019-05-17 04:11:10 +08:00
|
|
|
}
|
|
|
|
|
2019-05-29 03:19:08 +08:00
|
|
|
@include mq($small-only) {
|
|
|
|
width: 100%;
|
|
|
|
height: unset;
|
2019-05-17 04:11:10 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-29 03:19:08 +08:00
|
|
|
.select {
|
|
|
|
background-color: var(--color-white);
|
|
|
|
border-radius: 0.3rem;
|
|
|
|
color: var(--color-gray-label);
|
|
|
|
height: 1.6rem;
|
|
|
|
margin-top: 0.4rem;
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.label {
|
|
|
|
flex: 1 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-05-17 04:11:10 +08:00
|
|
|
.colorPickerOverlay {
|
|
|
|
position: fixed;
|
2019-05-29 03:19:08 +08:00
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
2019-05-17 04:11:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.colorPickerPopover {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1001;
|
|
|
|
}
|
|
|
|
|
|
|
|
.swatch {
|
2019-05-29 03:19:08 +08:00
|
|
|
flex: 1 0 0;
|
2019-05-17 04:11:10 +08:00
|
|
|
@include elementFocus(var(--color-primary));
|
|
|
|
border-radius: var(--border-size);
|
|
|
|
border: var(--border-size) solid var(--color-gray-light);
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.swatchInner {
|
|
|
|
width: auto;
|
|
|
|
height: 1.1rem;
|
|
|
|
border-radius: var(--border-size);
|
|
|
|
}
|
|
|
|
|
|
|
|
.row {
|
2019-05-29 03:19:08 +08:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
padding: .2rem 0 .2rem 0;
|
2019-05-17 04:11:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|