Bin
2025-12-17 d616898802dfe7e5dd648bcf53c6d1f86b6d3642
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
.node {
  flex-basis: 100%;
  color: var(--labelColor, var(--color-neutral-content-subtler));
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: flex;
 
  &__incomplete {
    display: inline-flex;
    margin-left: 5px;
    align-items: center;
 
    svg {
      width: 20px;
      height: 17px;
      fill: var(--incomplete-warning-color, var(--persimmon_400));
    }
  }
}
 
.node-minimal {
  display: inline-flex;
  align-items: center;
 
  &__counter {
    flex: none;
    padding-right: 7px;
    display: flex;
    color: var(--primary_link);
    align-items: center;
    justify-content: center;
  }
 
  &__icon {
    width: 24px;
    height: 24px;
    margin-right: 5px;
 
    svg {
      width: 24px;
      height: 24px;
    }
  }
}