zs
2025-04-28 adbd9157eeff10b3212417550525d8ff3102edae
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
.flows_pick {
  width: 100%;
  height: 108px;
  box-shadow: 0 0 0 1px var(--cs-input-border-color, var(--cs-border-color))
    inset;
  border-radius: var(--cs-input-border-radius, var(--cs-border-radius-base));
  cursor: pointer;
  background-color: #fff;
  display: flex;
  justify-content: flex-start;
  padding: 10px 10px;
  overflow: auto;
  flex-wrap: wrap;
  padding-right: 0;
  align-items: flex-start;
  align-content: flex-start;
  cursor: no-drop;
  > div {
    margin-bottom: 5px;
  }
  &:hover {
    box-shadow: 0 0 0 1px #c0c4cc inset;
  }
}
.disabled {
  background-color: #f6f7fa;
}
.flowTag {
  display: inline;
  color: #b7bac0;
  margin-top: -10px;
}