2018-06-01 23:53:12 +02:00
|
|
|
.dropzone-wrapper {
|
|
|
|
// fill the parent flex container
|
|
|
|
flex: 1 0 auto;
|
|
|
|
// be a flex container for children
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2018-11-15 04:24:36 +01:00
|
|
|
position: relative;
|
2019-01-26 01:37:07 +01:00
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 0px;
|
2018-06-01 23:53:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.dropzone {
|
2019-01-26 01:37:07 +01:00
|
|
|
border: 2px dashed $drop-zone-border-color;
|
2018-06-01 23:53:12 +02:00
|
|
|
// fill the parent flex container
|
|
|
|
flex: 1 0 auto;
|
|
|
|
// be a flex container for children
|
|
|
|
display: flex;
|
2019-01-26 01:37:07 +01:00
|
|
|
padding: $thin-padding;
|
2018-06-01 23:53:12 +02:00
|
|
|
-webkit-flex-direction: column;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2018-11-09 01:44:59 +01:00
|
|
|
user-select: none;
|
2018-06-01 23:53:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.dropzone:hover, .dropzone--active {
|
2019-01-26 01:37:07 +01:00
|
|
|
border: 2px dashed $drop-zone-border-hover;
|
2018-06-01 23:53:12 +02:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropzone-dropit-display, .dropzone-instructions-display {
|
|
|
|
padding: 1em;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2018-11-09 01:44:59 +01:00
|
|
|
.dropzone-dropit-display
|
|
|
|
{
|
|
|
|
color: $primary-color;
|
|
|
|
}
|
|
|
|
|
2018-06-02 00:15:48 +02:00
|
|
|
.dropzone-preview-wrapper {
|
|
|
|
position: relative;
|
2018-06-05 23:24:54 +02:00
|
|
|
width: 100%;
|
2018-06-02 00:15:48 +02:00
|
|
|
.dropzone-preview-overlay {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
-webkit-flex-direction: column;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-03 05:58:54 +02:00
|
|
|
.dropzone-preview-image {
|
|
|
|
display: block;
|
2018-11-15 04:24:36 +01:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropzone-preview-memeify {
|
|
|
|
margin-top: 3em;
|
2018-06-03 05:58:54 +02:00
|
|
|
}
|
2018-11-09 01:44:59 +01:00
|
|
|
|
2018-11-15 03:08:20 +01:00
|
|
|
.dropzone-memeify-button {
|
2018-11-15 04:24:36 +01:00
|
|
|
background: $primary-color;
|
2018-11-15 03:08:20 +01:00
|
|
|
color: #fff;
|
2018-11-15 04:24:36 +01:00
|
|
|
cursor: pointer;
|
2018-11-15 03:08:20 +01:00
|
|
|
font-size: .8em;
|
|
|
|
padding: 3px 6px;
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
z-index: 3;
|
|
|
|
}
|
|
|
|
|
2018-11-30 03:25:49 +01:00
|
|
|
.dropzone-memeify-saveMessage {
|
|
|
|
padding-top: .25em;
|
|
|
|
position: relative;
|
|
|
|
top: .5em;
|
|
|
|
}
|
|
|
|
|
2018-11-15 04:24:36 +01:00
|
|
|
.dropzone-memeify-toolbar {
|
|
|
|
/* TODO: Cleanup `!important` */
|
|
|
|
background: $primary-color !important;
|
|
|
|
left: -1em !important;
|
|
|
|
right: -1em !important;
|
|
|
|
top: -4em !important;
|
|
|
|
}
|
|
|
|
|
2018-11-09 01:44:59 +01:00
|
|
|
.dropzone-instructions-display__chooser-label {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|