king
2020-10-26 c7df940632b5f238f524da651fbf27a91ff6ad36
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
.style-input-popover {
  padding-top: 0px;
  z-index: 1090!important;
  .ant-popover-inner-content {
    padding: 0px 5px;
    .ant-menu-root.ant-menu-vertical {
      border: 0;
      .ant-menu-item {
        height: 30px;
        cursor: pointer;
        line-height: 30px;
      }
      .ant-menu-item:not(:last-child) {
        margin-bottom: 0px;
      }
      .ant-menu-item:first-child {
        margin-top: 10px;
      }
      .ant-menu-item:last-child {
        margin-bottom: 10px;
      }
    }
  }
  .ant-popover-arrow {
    display: none;
  }
  .ant-popover-content::before {
    content: ' ';
    position: absolute;
    width: 100%;
    height: 5px;
    top: -5px;
  }
  .ant-popover-content::after {
    content: ' ';
    position: absolute;
    width: 100%;
    height: 5px;
    bottom: -5px;
  }
}
.style-input-popover.ant-popover-placement-top {
  padding-bottom: 0px;
}