@import "core/main_dependencies";

bb-uploaded-files {
  .uploaded-files {
    list-style: none;
    padding-left: 0;
    display: table;
    width: 100%;
  }

  .uploaded-files__file {
    display: table-row;

    &:hover {
      background: whitesmoke;
    }
  }

  .file--deleting {
    opacity: .2;
  }

  .file__name {
    display: table-cell;
    @include make-xs-column(8);
    padding-top: 7.5px;
    padding-bottom: 7.5px;
  }

  .file__link {
    display: table-cell;
    @include make-xs-column(2);
    padding-top: 7.5px;
    padding-bottom: 7.5px;
    font-weight: normal;
  }

  .file__delete {
    display: table-cell;
    @include make-xs-column(2);
    padding-top: 7.5px;
    padding-bottom: 7.5px;

    a:hover {
      cursor: pointer;
    }
  }

}