king
2024-10-30 c96108bd84050feb01b47db3f5cae96670fda435
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
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
.table-search-date-group {
  white-space: nowrap;
  line-height: 40px;
  position: relative;
  z-index: 1;
 
  .ant-tag-checkable:not(.ant-tag-checkable-checked):hover {
    color: var(--mk-sys-color);
  }
  .ant-tag {
    position: relative;
    cursor: pointer;
 
    .ant-calendar-picker {
      cursor: pointer;
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      right: 0;
      opacity: 0;
      .ant-input {
        display: none;
      }
      .ant-calendar-picker-icon {
        position: absolute;
        top: 0;
        margin: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
      }
      .ant-calendar-picker-input {
        display: inline-block;
        height: 28px;
      }
    }
  }
  .ant-tag.ant-tag-quarter:hover {
    opacity: 1;
  }
  .ant-tag-checkable {
    border-color: #d1d5d9;
    border-radius: 2px;
    margin-right: 2px;
    padding: 2px 6px;
    background: #ffffff;
  }
  .ant-tag-checkable:active {
    background-color: #ffffff;
  }
  .ant-tag-checkable-checked {
    border-color: var(--mk-sys-color);
    background: var(--mk-sys-color);
  }
  .table-search-date-group-value {
    position: absolute;
    line-height: 20px;
    font-size: 12px;
    bottom: -15px;
    color: rgba(0, 0, 0, 0.45);
    padding-right: 25px;
 
    .ant-calendar-picker-clear {
      cursor: pointer;
      right: 5px;
      pointer-events: unset;
    }
  }
  .table-search-date-group-value:hover {
    .ant-calendar-picker-clear {
      opacity: 0.8;
    }
  }
  .ant-form-explain {
    color: #f5222d;
    position: absolute;
    bottom: -18px;
  }
}
 
@media screen and (min-width: 1440px) {
  .table-search-date-group {
    .ant-tag-checkable {
      padding: 2px 7px;
    }
  }
}
@media screen and (min-width: 1600px) {
  .table-search-date-group {
    .ant-tag-checkable {
      padding: 2px 9px;
    }
  }
}
@media screen and (min-width: 1920px) {
  .table-search-date-group {
    .ant-tag-checkable {
      padding: 2px 11px;
    }
  }
}