element-ui 修改时间选择器的样式

element-ui 修改时间选择器的样式

如上篇文章Vue中scoped属性相关中提到的,一般项目中如果设置了scoped属性,可以通过>>>或者/deep/来修改其他第三方组件的样式。

 
  

但是elementUI的时间选择器el-date-picker是将元素直接挂载到页面的中,而非自身元素下,所以使用/deep/穿透也是无法定位到元素的。

这个时候有两种思路,一是查询elementUI的配置项文档,看看能不能将时间选择器挂载到其元素自身下面,而非中,这样就能通过>>>或者/deep/来修改其样式;二也同样是查询elementUI的配置项文档【官方文档很重要!】,看看是否能够其设置单独的样式,且不会影响项目中其他的时间选择器样式。

这里采用方法二,
step1 利用时间选择器的popper-class属性,给其设置样式。

 
  

setp2 然后可以在项目的/assets/下写一个.less文件,在其中编写date-style对应的样式。【注意css层级关系】

.date-style.el-date-picker {
  width: 190px !important;
  height: 235px !important;

  // .el-picker-panel {
      line-height: 0px;
  // }
  .el-picker-panel__content {
      width: 155px !important;
      height: 180px !important;
  }
  table {
      font-size: 11px;
  }
  .el-date-picker__header {
      margin: 5px;
  }
  .el-date-picker__header-label {
      font-size: 11px;
  }
  .el-date-picker__header el-date-picker__header-label {
      font-size: 11px;
  }
  .el-date-table td, .el-date-table td div {
      height: 22px;
  }
  .el-month-table td .cell,
  .el-year-table td .cell,
  .el-date-table td .cell {
      width: 100%;
  }
}

step3 在项目中(比如说APP.vue)引入该样式文件

@import "./assets/style/common.less";

这样,样式就能顺利生效啦。同时该样式只跟类名date-style绑定,不会影响其他的时间选择器。

Tips:
利用多个 //一定要把这个style样式写在scss样式前面

你可能感兴趣的:(前端,vue,css,elementui)