index.less 1.91 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
@root-entry-name: 'default';
@import '~antd/es/style/themes/index.less';
@datepicker-custom-prefix-cls: ~'@{ant-prefix}-datepicker-custom';
.@{datepicker-custom-prefix-cls}-quarter-box {
  width: 230px;
}
.@{datepicker-custom-prefix-cls}-quarter {
  // :global {
  .ant-picker-year-panel,
  .ant-picker-quarter-panel {
    width: 230px;
  }
  // 修改选中的年份、季度背景颜⾊
  .ant-picker-cell-selected {
    .ant-picker-cell-inner {
李纪文's avatar
李纪文 committed
16
      background: #1890ff;
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
    }
  }
  // 使⽤CSS改变季度选择器的内容
  .ant-picker-quarter-panel {
    .ant-picker-content {
      // 使季度选择器可以换⾏成两排
      tr {
        display: flex;
        flex-wrap: wrap;
      }
      // 控制按钮外层宽度,使器溢出换⾏
      td {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50%;
        height: 50px;
        padding: 20px;
      }
    }
    // 使before伪元素和按钮背景颜⾊⼀致
    .ant-picker-cell-selected {
      &::before {
        color: #fff;
李纪文's avatar
李纪文 committed
41
        background: #1890ff;
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
      }
    }
    // 控制伪元素所占宽度
    .ant-picker-cell {
      &::before {
        right: auto;
        left: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60%;
      }
    }
    // 隐藏季度选择器的按钮,⽤伪元素代替
    .ant-picker-cell-inner {
      display: none;
    }
    // 根据title更换相应伪元素的content,使其代替原本的按钮
    .ant-picker-cell[title$='-Q1'] {
      &::before {
        content: '第一季度';
      }
    }
    .ant-picker-cell[title$='-Q2'] {
      &::before {
        content: '第二季度';
      }
    }
    .ant-picker-cell[title$='-Q3'] {
      &::before {
        content: '第三季度';
      }
    }
    .ant-picker-cell[title$='-Q4'] {
      &::before {
        content: '第四季度';
      }
    }
  }
  // }
}