app-upload-file-info.less 414 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
.app-upload-file-info{
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: break-all;
  overflow: hidden;
  text-align: left;
  .app-upload-file-info__item{
    display: inline-block;
    padding-left: 4px;
    text-overflow: ellipsis;
    -webkit-transition: color .3s;
    transition: color .3s;
    white-space: nowrap;
    &:hover{
      cursor: pointer;
    }
  }
  i{
    margin-right: 7px;
  }
}