king
2025-05-23 d5edf87014863eceaa44f28809ae4b54a39b9a8e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
.ant-calendar-year-picker {
  top: -30px;
  left: 0px;
 
  .ant-calendar-year-panel-prev-decade-btn, .ant-calendar-year-panel-next-decade-btn {
    cursor: pointer;
  }
 
  tr {
    td {
      .ant-calendar-year-panel-year {
        color: rgba(0, 0, 0, 0.65);
        cursor: pointer;
        background: #ffffff;
        transition: all 0.3s;
      }
      .ant-calendar-year-panel-year:hover {
        color: #40a9ff;
        background: #e6f7ff;
      }
      .ant-calendar-year-panel-year.ant-year-selected {
        color: #fff;
        background: #1890ff;
      }
    }
    td.ant-calendar-year-panel-last-decade-cell {
      .ant-calendar-year-panel-year {
        background: #ffffff;
        color: rgba(0, 0, 0, 0.25);
      }
    }
  }
}
 
.year-picker-tooltip.bottomRight {
  .ant-calendar-year-picker {
    left: auto;
    right: 0;
  }
}
.year-picker-tooltip {
  .ant-tooltip-arrow {
    display: none;
  }
  .ant-tooltip-inner {
    box-shadow: unset;
    background-color: transparent;
  }
}