king
2021-06-27 69cd43786253e299f6856a200554ae7fc0621877
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
.ant-calendar-quarter-picker {
  top: -30px;
  left: 0px;
 
  .ant-calendar-month-panel-next-year-btn, .ant-calendar-month-panel-prev-year-btn {
    cursor: pointer;
  }
 
  tr {
    background: #ffffff;
    transition: all 0.3s;
    cursor: pointer;
    td {
      .ant-calendar-month-panel-month:hover {
        background: transparent;
      }
    }
  }
  tr:not(.ant-quarter-selected):hover {
    font-weight: bold;
    background: #e6f7ff;
  }
  tr.ant-quarter-selected {
    font-weight: bold;
    background: #bae7ff;
  }
}
.quarter-picker-tooltip.bottomRight {
  .ant-calendar-quarter-picker {
    left: auto;
    right: 0;
  }
}
.quarter-picker-tooltip {
  .ant-tooltip-arrow {
    display: none;
  }
  .ant-tooltip-inner {
    box-shadow: unset;
    background-color: transparent;
  }
}