XiaoRuby
2023-08-14 4fb8b960f98bb1f2b3eaf39b7479ddbe9e53c5a5
src/App.vue
@@ -26,7 +26,7 @@
</script>
<style>
  /* @import url("../static/img/alifont/iconfont.css"); */
  @import url("//at.alicdn.com/t/c/font_4179845_y48isucsagi.css");
  @import url("//at.alicdn.com/t/c/font_4179845_enf3r8ak8d.css");
  * {
    margin: 0;
@@ -115,4 +115,100 @@
  .el-popper .popper__arrow{
    display: none ;
  }
/**修改全局的滚动条*/
/**滚动条的宽度*/
::-webkit-scrollbar {
   width: 8px;
}
::-webkit-scrollbar-thumb {
   background-color: #bdbfc4;
   border-radius: 3px;
}
/* 全局表格样式 */
  .el-table th.el-table__cell ,
  .has-gutter .el-table__cell {
    background-color: #F0F1F5 !important;
    color: #333;
  }
  .has-gutter .el-table__cell .cell {
    font-size: 16px;
    font-weight: 500;
  }
   .cell {
    color:rgb(51, 51, 51);
    padding-left: 17px !important;
    font-size: 14px;
  }
  .cell span{
    font-size: 14px;
    font-weight: 400;
  }
  .el-table th.el-table__cell>.cell{
    font-size: 16px;
    font-weight: 400;
    color:rgb(51, 51, 51);
  }
/* 全局分页器样式 */
  .el-pager .number {
    font-size: 14px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    margin: 0 2px;
    color: #999;
    font-weight: 500;
  }
  .el-pager .number.active {
    background-color: #004EA2;
    color: #fff;
    border: 0;
  }
  /* 全局模态框样式 */
  .el-dialog__header{
    box-sizing: border-box;
    height: 56px;
    border-bottom: 1px solid rgb(238, 238, 238);
    padding: 0px;
    display: flex;
    align-items: center;
  }
  .el-dialog__header::before{
    content: '';
    display: inline-block;
    width: 4px;
    height: 30.24px;
    background: rgb(0, 95, 201);
    border-radius:10px;
    margin-left: 32px;
    margin-right: 8.5px;
  }
  .el-dialog__header .el-dialog__title{
    font-size: 16px !important;
  }
   .el-dialog__footer .el-button *{
      font-size: 14px !important;
   }
   .el-dialog__footer .el-button{
      height: 36px;
      border: 1px solid rgba(190, 190, 190, 0.44);
      box-shadow: 0px 2px 4px rgba(220, 220, 220, 0.41);
      padding: 0 14px;
   }
   .el-button--primary{
      background: #004EA2;
   }
   .el-dialog__body{
      padding: 15px 20px;
   }
   .el-input.is-disabled input{
      color: #666 !important;
      background-color: rgba(0, 0, 0, 0.05) !important;
   }
  /* 全局输入框样式 */
  /* 全局按钮样式 */
</style>