scratch – Rev 135

Subversion Repositories:
Rev:
.fileupload-process {
  background: whitesmoke;
  border: 0px solid white;
  border-radius: 4px;
  height: 20px;
}

.upload-details-column {
  width: 50% !important;
}

.progress-bar-custom {
  background: #ff99ff;
}

#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; */
    }
  }
}

#uploadpanel {
  min-height: 320px;
  border: 2px dashed #F78700;
  border-radius: 5px;
  box-sizing: border-box;

  /* outline-offset: -24px; */
  background-image: url("../../img/blueprint.png");
  background-repeat: repeat;
}

#total-progress {
  opacity: 0;
  transition: opacity 0.3s linear;
  background: #f5f5f5;
  padding: 0;
  margin: 0;
}

/* 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;
    }
  }
}

.bootstrap-tagsinput {
    width: 100% !important;
}

.input-group {
    width: 100% !important;
}

.upload-filename {
  width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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