修改elementUI“分頁組件”的默認樣式

效果圖
在這裏插入圖片描述

<!-- 分頁 -->
<div class="pager-box">
  <el-pagination
    small
    background
    layout="prev, pager, next"
    :total="totalDataCount"
    :current-page="pageInfo.page"
    :page-size="pageInfo.limit"
    @size-change="handleSizeChange"
    @current-change="handleCurrentChange">
  </el-pagination>
</div>
/*重寫element樣式*/
.pager-box >>> button,
.pager-box >>> .el-pager li{
  background-color: transparent !important;
  color: #B4C2DC !important;
  border: 1px solid #0672C4;
}
.pager-box >>> .el-pagination.is-background .el-pager li:not(.disabled).active {
  background-color: #0672C4 !important;
}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章