-// Dropzone
-/*
- * The MIT License
- */
-.dz-message {
- font-size: 1em;
- line-height: 2.85;
- font-style: italic;
- color: #888;
- text-align: center;
- cursor: pointer;
- padding: $-l $-m;
- transition: all ease-in-out 120ms;
-}
-
-.dz-drag-hover .dz-message {
- background-color: rgb(16, 126, 210);
- color: #EEE;
-}
-
-@keyframes passing-through {
- 0% {
- opacity: 0;
- transform: translateY(40px);
- }
- 30%, 70% {
- opacity: 1;
- transform: translateY(0px);
- }
- 100% {
- opacity: 0;
- transform: translateY(-40px);
- }
-}
-
-@keyframes slide-in {
- 0% {
- opacity: 0;
- transform: translateY(40px);
- }
- 30% {
- opacity: 1;
- transform: translateY(0px);
- }
-}
-
-@keyframes pulse {
- 0% {
- transform: scale(1);
- }
- 10% {
- transform: scale(1.1);
- }
- 20% {
- transform: scale(1);
- }
-}
-
-.dropzone, .dropzone * {
- box-sizing: border-box;
-}
-
-.dz-preview {
- position: relative;
- display: inline-block;
- vertical-align: top;
- margin: 12px;
- min-height: 80px;
-}
-
-.dz-preview:hover {
- z-index: 1000;
-}
-
-.dz-preview:hover .dz-details {
- opacity: 1;
-}
-
-.dz-preview.dz-file-preview .dz-image {
- border-radius: 4px;
- background: #e9e9e9;
-}
-
-.dz-preview.dz-file-preview .dz-details {
- opacity: 1;
-}
-
-.dz-preview.dz-image-preview {
- background: white;
-}
-
-.dz-preview.dz-image-preview .dz-details {
- transition: opacity 0.2s linear;
-}
-
-.dz-preview .dz-remove {
- font-size: 13px;
- text-align: center;
- display: block;
- cursor: pointer;
- border: none;
- margin-top: 3px;
-}
-
-.dz-preview .dz-remove:hover {
- text-decoration: underline;
-}
-
-.dz-preview:hover .dz-details {
- opacity: 1;
-}
-
-.dz-preview .dz-details {
- z-index: 20;
- position: absolute;
- top: 0;
- left: 0;
- opacity: 0;
- font-size: 10px;
- min-width: 100%;
- max-width: 100%;
- padding: 6px 3px;
- text-align: center;
- color: rgba(0, 0, 0, 0.9);
- line-height: 150%;
-}
-
-.dz-preview .dz-details .dz-size {
- margin-bottom: 0.5em;
- font-size: 12px;
-}
-
-.dz-preview .dz-details .dz-filename {
- white-space: nowrap;
-}
-
-.dz-preview .dz-details .dz-filename:hover span {
- border: 1px solid rgba(200, 200, 200, 0.8);
- background-color: rgba(255, 255, 255, 0.8);
-}
-
-.dz-preview .dz-details .dz-filename:not(:hover) {
- overflow: hidden;
- text-overflow: ellipsis;
-}
-
-.dz-preview .dz-details .dz-filename:not(:hover) span {
- border: 1px solid transparent;
-}
-
-.dz-preview .dz-details .dz-filename span {
- background-color: rgba(255, 255, 255, 0.4);
- padding: 0 0.4em;
- border-radius: 3px;
-}
-
-.dz-preview:hover .dz-image img {
- filter: blur(8px);
-}
-
-.dz-preview .dz-image {
- border-radius: 4px;
- overflow: hidden;
- width: 80px;
- height: 80px;
- position: relative;
- display: block;
- z-index: 10;
-}
-
-.dz-preview .dz-image img {
- display: block;
-}
-
-.dz-preview.dz-success .dz-success-mark {
- animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
-}
-
-.dz-preview.dz-error .dz-error-mark {
- opacity: 1;
- animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
-}
-
-.dz-preview .dz-success-mark, .dz-preview .dz-error-mark {
- pointer-events: none;
- opacity: 0;
- z-index: 1001;
- position: absolute;
- display: block;
- top: 50%;
- left: 50%;
- margin-inline-start: -27px;
- margin-top: -35px;
-}
-
-.dz-preview .dz-success-mark svg, .dz-preview .dz-error-mark svg {
- display: block;
- width: 54px;
- height: 54px;
-}
-
-.dz-preview.dz-processing .dz-progress {
- opacity: 1;
- transition: all 0.2s linear;
-}
-
-.dz-preview.dz-complete .dz-progress {
- opacity: 0;
- transition: opacity 0.4s ease-in;
-}
-
-.dz-preview:not(.dz-processing) .dz-progress {
- animation: pulse 6s ease infinite;
-}
-
-.dz-preview .dz-progress {
- opacity: 1;
- z-index: 1000;
- pointer-events: none;
- position: absolute;
- height: 16px;
- left: 50%;
- top: 50%;
- margin-top: -8px;
- width: 80px;
- margin-inline-start: -40px;
- background: rgba(255, 255, 255, 0.9);
- transform: scale(1);
- border-radius: 8px;
- overflow: hidden;
-}
-
-.dz-preview .dz-progress .dz-upload {
- background: #333;
- background: linear-gradient(to bottom, #666, #444);
- position: absolute;
- top: 0;
- left: 0;
- bottom: 0;
- width: 0;
- transition: width 300ms ease-in-out;
-}
-
-.dz-preview.dz-error .dz-error-message {
- display: block;
-}
-
-.dz-preview.dz-error {
- .dz-image, .dz-details {
- &:hover ~ .dz-error-message {
- opacity: 1;
- pointer-events: auto;
- }