mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.0 KiB
52 lines
1.0 KiB
@import '_mixins';
|
|
@import '_vars';
|
|
|
|
$background: #fff;
|
|
|
|
.editor {
|
|
height: 30rem;
|
|
}
|
|
|
|
.editor-container {
|
|
position: relative;
|
|
|
|
.drop-area {
|
|
& {
|
|
@include absolute(80px, 30px, 66px, 30px);
|
|
@include border-radius;
|
|
z-index: 1;
|
|
align-content: center;
|
|
align-items: center;
|
|
display: none;
|
|
border: 2px dashed $color-border;
|
|
font-size: 1.2rem;
|
|
font-weight: normal;
|
|
justify-content: center;
|
|
color: darken($color-border, 30%);
|
|
}
|
|
|
|
&.dragging {
|
|
@include flex-box;
|
|
}
|
|
|
|
&.drag,
|
|
&.dnd-drag-over,
|
|
&.dnd-drag-enter {
|
|
border-color: darken($color-border, 10%);
|
|
cursor: copy;
|
|
color: darken($color-border, 40%);
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
|
|
.drop-text {
|
|
background: $color-dark-foreground;
|
|
}
|
|
}
|
|
|
|
.fullscreen {
|
|
@include fixed(0, 0, 0, 0);
|
|
border: 0;
|
|
background: $background;
|
|
z-index: 100000;
|
|
}
|