当前位置:   article > 正文

vue3-elementPlus部分组件样式修改_vue3 修改element plus 样式

vue3 修改element plus 样式

前提:在less语言下使用/deep/;在sass语言下使用 ::v-deep 替换 /deep/

但::v-deep的写法已经废弃,建议使用:deep(css选择器)

elementUI样式修改:vue2-elementUI部分组件样式修改_vue2 圆圈选中样式-CSDN博客

 el-dropdown

  1. //下拉框中文字颜色
  2. :deep(.el-dropdown-menu__item:not(.is-disabled):focus) {
  3. background-color: #f5f5f5;
  4. color: #A88D5B;
  5. }
  6. //去除下拉框边框
  7. :deep(.el-tooltip__trigger:focus-visible) {
  8. outline: unset;
  9. }

el-input

  1. //改变输入框选中时边框颜色
  2. .el-input {
  3. --el-input-focus-border-color: #88733c;
  4. }

 el-select

  1. //选中时下拉框边框颜色
  2. :deep(.el-select__wrapper.is-focused){
  3. box-shadow: 0 0 0 1px #88733c inset !important;
  4. }

el-tabs

  1. //标签页选中时文字颜色
  2. :deep(.el-tabs__item.is-active) {
  3. color: #a88d5b !important;
  4. }
  5. //标签页鼠标悬浮时文字颜色
  6. :deep(.el-tabs__item:hover) {
  7. color: #a88d5b !important; //悬浮
  8. }

高度固定

  1. //高度固定
  2. .el-tab-pane {
  3. height: calc(100vh - 380px);
  4. }

el-radio

  1. //单选框颜色
  2. :deep(.el-radio__input.is-checked + .el-radio__label) {
  3. color: #88733c !important;
  4. }
  5. :deep(.el-radio__input.is-checked .el-radio__inner) {
  6. background: #88733c !important;
  7. border-color: #88733c !important;
  8. }

el-date-picker

  1. //时间选择某一天选中时边框颜色
  2. :deep(.el-input__wrapper.is-focus){
  3. box-shadow: 0 0 0 1px #88733c inset !important;
  4. }
  5. //时间选择一段时间选中时边框颜色
  6. :deep(.el-range-editor.is-active) {
  7. box-shadow: 0 0 0 1px #88733c inset !important;
  8. }

因el-date-picker 是将下拉框直接挂载到页面的中,而非自身元素下;若想要修改日期下拉框里的内容样式,需要在组件上设置是否将 date-picker 的下拉列表插入至 body 元素

:teleported="false"
  1. <el-date-picker
  2. v-model="data1"
  3. type="date"
  4. placeholder="请选择数据日期"
  5. :size="size"
  6. :teleported="false"
  7. />

选择某一天的时间选择框样式 :

 

  1. //当天日期颜色
  2. :deep(.el-date-table td.today .el-date-table-cell__text) {
  3. color: #88733c !important;
  4. }
  5. //选中的日期颜色
  6. :deep(.el-date-table td.current:not(.disabled) .el-date-table-cell__text) {
  7. background-color: #88733c !important;
  8. }
  9. //鼠标悬浮经过日期时颜色
  10. :deep(.el-date-table td:hover){
  11. color: #88733c !important;
  12. }
  13. //上方中间文本鼠标悬浮时颜色
  14. :deep(.el-date-picker__header-label:hover){
  15. color: #88733c !important;
  16. }
  17. //当前年份的颜色
  18. :deep(.el-year-table td.today .cell) {
  19. color: #88733c !important;
  20. }
  21. //选中年份的颜色
  22. :deep(.el-year-table td.current:not(.disabled) .cell) {
  23. color: #88733c !important;
  24. }
  25. //鼠标悬浮经过年份时颜色
  26. :deep(.el-year-table td .cell:hover){
  27. color: #88733c !important;
  28. }
  29. //当前月份的颜色
  30. :deep(.el-month-table td.today .cell) {
  31. color: #88733c !important;
  32. }
  33. //选中月份的颜色
  34. :deep(.el-month-table td.current:not(.disabled) .cell) {
  35. color: #88733c !important;
  36. }
  37. //鼠标悬浮经过月份时颜色
  38. :deep(.el-month-table td .cell:hover){
  39. color: #88733c !important;
  40. }
  41. //上方左右跳转按钮悬浮时颜色调整
  42. :deep(.el-picker-panel__icon-btn:hover){
  43. color: #88733c !important;
  44. }

 选择某一段时间的时间选择框样式 :

  1. //一段时间的开始日期背景颜色
  2. :deep(.el-date-table td.start-date .el-date-table-cell__text) {
  3. background-color: #88733c !important;
  4. color: #fff !important;
  5. }
  6. //一段时间的结束日期背景颜色
  7. :deep(.el-date-table td.end-date .el-date-table-cell__text) {
  8. background-color: #88733c !important;
  9. color: #fff !important;
  10. }
  11. //中间时间段背景颜色
  12. :deep(.el-date-table td.in-range .el-date-table-cell) {
  13. background-color: #e3ddd0 !important;
  14. }

el-table

  1. //表格中选择框背景色
  2. :deep(.el-checkbox) {
  3. --el-checkbox-checked-bg-color: #a88d5b;
  4. }
  5. //表格中选择框鼠标悬浮时颜色
  6. :deep(.el-checkbox__input .el-checkbox__inner:hover) {
  7. border-color: #a88d5b !important;
  8. }
  9. //表格中选择框选中时颜色
  10. :deep(.el-checkbox__input.is-checked .el-checkbox__inner) {
  11. border-color: #a88d5b;
  12. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/644770
推荐阅读
相关标签
  

闽ICP备14008679号