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.
65 lines
1.1 KiB
65 lines
1.1 KiB
.disabled {
|
|
pointer-events: none;
|
|
}
|
|
|
|
.assets {
|
|
&-container {
|
|
& {
|
|
background: $color-background;
|
|
height: $asset-height + 2rem;
|
|
overflow-x: hidden;
|
|
overflow-y: scroll;
|
|
padding: 1rem;
|
|
padding-bottom: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.list-view {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.body {
|
|
margin-bottom: -.25rem;
|
|
margin-top: 1rem;
|
|
min-height: 1px;
|
|
}
|
|
|
|
.unrow {
|
|
display: block;
|
|
}
|
|
|
|
.drop-area {
|
|
& {
|
|
@include border-radius;
|
|
@include truncate-nowidth;
|
|
border: 2px dashed darken($color-border, 10%);
|
|
color: darken($color-border, 30%);
|
|
cursor: pointer;
|
|
font-size: 1rem;
|
|
font-weight: normal;
|
|
padding: 5px .5rem;
|
|
text-align: center;
|
|
transition: border-color .4s ease;
|
|
}
|
|
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
&-container {
|
|
padding-bottom: 1rem;
|
|
}
|
|
|
|
&.drag {
|
|
border-color: darken($color-border, 15%);
|
|
color: darken($color-border, 40%);
|
|
cursor: copy;
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
|
|
.col-4 {
|
|
padding-left: .5rem;
|
|
padding-right: .5rem;
|
|
}
|