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