scratch – Rev 99

Subversion Repositories:
Rev:
#previews {
  display: table;

  .file-row {
    display: table-row;

    > div {
      display: table-cell;
      vertical-align: top;
      border-top: 1px solid #ddd;
      padding: 1em;
      background: #f9f9f9;
    }

    &:nth-child(odd) {
      background: #f9f9f9;

      /* border-top: 1em solid #ddd; */
    }
  }
}

#editorpanel {
  border: 2pt solid #ecf0f1;
}

#total-progress {
  opacity: 0;
  transition: opacity 0.3s linear;
}

/* Hide the progress bar when finished */

#previews .file-row {
  &.dz-success .progress {
    opacity: 0;
    transition: opacity 0.3s linear;
  }

  .remove {
    display: none;
  }

  &.dz-success {
    .start, .cancel {
      opacity: 0.3;
    }

    .remove {
      display: block;
    }
  }
}

/* Hide the delete button initially */
/* Hide the start and cancel buttons and show the delete button */

/*# sourceMappingURL=style.css.map */