Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
16825 efrain 1
// npm package: dropify
2
// github link: https://github.com/dropzone/dropzone
3
 
4
.dropzone {
5
  overflow: auto;
6
  border: 1px solid $input-border-color;
7
  border-radius: $input-border-radius;
8
  @media (min-width: 1400px) {
9
    min-height: 200px;
10
  }
11
  max-height: 200px;
12
  padding: 0;
13
  &.dz-clickable {
14
    .dz-message {
15
      margin-top: 65px;
16
      * {
17
        @extend .text-muted;
18
      }
19
    }
20
  }
21
  .dz-preview {
22
    &.dz-image-preview,
23
    &.dz-file-preview {
24
      .dz-image {
25
        border-radius: $input-border-radius;
26
      }
27
    }
28
  }
29
}