index.scss 657 Bytes
Newer Older
xulili's avatar
xulili committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
.el-pagination{
  position: absolute;
  bottom:00px;
  right: 30px;
}

/*修改滚动条样式*/
div::-webkit-scrollbar{
  width:10px;
  height:10px;
  /**/
}
div::-webkit-scrollbar-track{
  background: rgb(239, 239, 239);
  border-radius:2px;
}
div::-webkit-scrollbar-thumb{
  background: #bfbfbf;
  border-radius:10px;
}
div::-webkit-scrollbar-thumb:hover{
  background: #555;
}
div::-webkit-scrollbar-corner{
  background: #179a16;
}
.el-table.list{
  .el-button--text{
    color: #666666;
    font-weight: normal;
    &:hover{
      color: #333333;
    }
    &.listButtonRed{
      color: #D0021B;
      &:hover{
        color: red;
      }
    }
  }
}