2019-11-24 14:16:24 +01:00
|
|
|
.attachments {
|
|
|
|
input[type=file] {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropzone {
|
|
|
|
position: fixed;
|
2020-09-05 22:35:52 +02:00
|
|
|
background: rgba(250, 250, 250, 0.8);
|
2019-11-24 14:16:24 +01:00
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
z-index: 100;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
&.hidden {
|
2020-09-05 22:35:52 +02:00
|
|
|
display: none;
|
2019-11-24 14:16:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.drop-hint {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
width: 100%;
|
|
|
|
font-size: 5em;
|
|
|
|
height: auto;
|
|
|
|
text-shadow: 0 2px 2px rgba(0, 0, 0, .14), 0 3px 1px rgba(0, 0, 0, .2), 0 1px 5px rgba(0, 0, 0, .12);
|
|
|
|
-moz-animation: bounce 2s infinite;
|
|
|
|
-webkit-animation: bounce 2s infinite;
|
|
|
|
animation: bounce 2s infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hint {
|
|
|
|
margin: .5em auto 2em;
|
|
|
|
border-radius: 2px;
|
|
|
|
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .2), 0 1px 5px 0 rgba(0, 0, 0, .12);
|
|
|
|
background: $primary;
|
|
|
|
padding: 1em;
|
|
|
|
color: $white;
|
|
|
|
width: 100%;
|
|
|
|
max-width: 300px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|