Bin
2025-12-16 9e0b2ba2c317b1a86212f24cbae3195ad1f3dbfa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
:global(.htx-taxonomy-item-color) {
  padding: 4px;
  border-radius: 2px;
}
 
// increase specificity to override usual .ant-select-dropdown z-index
:global(.htx-taxonomy-dropdown.ant-select-dropdown) {
  // Create Project popup has 2000 in LSE and 10000 in LSO
  z-index: 11000;
}
 
// wrap long labels for selected items
// we need to increase specificity this way to override the default styles
:global(.htx-taxonomy.ant-select-multiple) {
  :global(.ant-select-selection-item) {
    height: auto;
  }
 
  :global(.ant-select-selection-item-content) {
    white-space: normal;
    word-break: break-word;
  }
}