zhangqian
2023-07-04 32944d1a233be29c0cb27d8ad4f21df868fb98a0
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
.multi-select-combobox__dropdown {
    max-height: 500px;
    overflow-y: auto;
  }
  
  .multi-select-combobox__input {
    background-color: #ffffff;
    border: 1px solid #dddbda;
    border-radius: 0.25rem;
    width: 100%;
    transition: border 0.1s linear, background-color 0.1s linear;
    display: inline-block;
    padding: 0 1rem 0 0.75rem;
    line-height: 1.875rem;
    min-height: calc(1.875rem + (1px * 2));
  }
  
  .multi-select-combobox__input:disabled {
    background-color: #ecebea;
    border: 1px solid #c9c7c5;
  }
  
  .multi-select-combobox__icon {
    margin-right: -3px;
  }
  
  .multi-select-combobox__listbox {
    width: 100%;
  }