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
  background: $input-bg;
6
  overflow: auto;
7
  border: 1px solid $input-border-color;
8
  border-radius: $input-border-radius;
9
  @media (min-width: 1400px) {
10
    min-height: 200px;
11
  }
12
  max-height: 200px;
13
  padding: 0;
14
  &.dz-clickable {
15
    .dz-message {
16
      margin-top: 65px;
17
      * {
18
        @extend .text-muted;
19
      }
20
    }
21
  }
22
  .dz-preview {
23
    &.dz-image-preview {
24
      background: $input-bg;
25
    }
26
    &.dz-file-preview,
27
    &.dz-image-preview {
28
     .dz-image {
29
        border-radius: $input-border-radius;
30
     }
31
    }
32
  }
33
}