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
811 B
52 lines
811 B
@import '_vars';
|
|
@import '_mixins';
|
|
|
|
.unrow {
|
|
display: block;
|
|
padding-left: 8px;
|
|
padding-right: 8px;
|
|
margin: 0;
|
|
}
|
|
|
|
.file-drop {
|
|
& {
|
|
@include transition(border-color .4s ease);
|
|
border: 2px dashed $color-border;
|
|
background: transparent;
|
|
padding: 1rem;
|
|
text-align: center;
|
|
margin-bottom: 1rem;
|
|
margin-right: 0;
|
|
}
|
|
|
|
&.drag {
|
|
border-color: darken($color-border, 10%);
|
|
border-style: dashed;
|
|
cursor: copy;
|
|
}
|
|
|
|
&-button-input {
|
|
@include hidden;
|
|
}
|
|
|
|
&-button {
|
|
margin: .5rem 0;
|
|
}
|
|
|
|
&-or {
|
|
font-size: .8rem;
|
|
}
|
|
|
|
&-info {
|
|
color: darken($color-border, 30%);
|
|
}
|
|
}
|
|
|
|
.assets {
|
|
margin-left: -8px;
|
|
margin-right: -8px;
|
|
}
|
|
|
|
.btn {
|
|
cursor: default;
|
|
}
|