king
2020-05-27 a7d095c78d1320a4e01bd59dbd07043bf0cf68ba
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
.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:hover {
    font-weight: bold;
    background: #e6f7ff;
  }
  tr.ant-quarter-selected {
    font-weight: bold;
    background: #bae7ff!important;
  }
}
 
.quarter-picker-tooltip {
  .ant-tooltip-arrow {
    display: none;
  }
  .ant-tooltip-inner {
    box-shadow: unset;
    background-color: transparent;
  }
}