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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
.annotations-list {
  min-width: 264px;
  box-sizing: border-box;
  position: relative;
 
  &__draft {
    border-bottom: 1px solid var(--color-neutral-border);
  }
 
  &__list {
    top: calc(100% - 1px);
    left: -1px;
    right: -1px;
    position: absolute;
    background-color: var(--color-neutral-background);
    box-shadow: 0 0 1px rgb(0 0 0 / 10%), 0 2px 8px -2px rgb(0 0 0 / 10%), 0 0 0 1px rgb(0 0 0 / 10%) inset;
  }
 
  &__create {
    border-bottom: 1px solid var(--color-neutral-border);
  }
 
  &__create,
  &__entity {
    height: 48px;
    display: flex;
    padding: 0 16px;
    align-items: center;
    cursor: pointer;
 
    &:hover {
      background-color: var(--color-primary-surface-content);
    }
  }
 
  &__entity {
    &_selected {
      pointer-events: none;
      background-color: var(--color-primary-surface-content);
    }
  }
 
  &__user {
    font-size: 14px;
    line-height: 16px;
    width: 136px;
    display: flex;
  }
 
  &__icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
 
  &__icon-column {
    display: flex;
    align-items: center;
    justify-content: center;
 
    &:nth-child(2) {
      width: 32px;
      height: 32px;
    }
  }
 
  &__name {
    flex: 1;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
 
  &__entity-id {
    font-size: 11px;
    opacity: 0.5;
    flex: none;
    padding-left: 5px;
  }
 
  &__review {
    font-size: 11px;
    line-height: 13px;
 
    &_state {
      &_accepted {
        color: var(--success_color);
      }
 
      &_fixed {
        color: var(--persimmon_400);
      }
 
      &_rejected {
        color: var(--color-negative-content);
      }
    }
  }
 
  &__created {
    font-size: 11px;
    line-height: 13px;
    color: var(--sand_500);
  }
 
  &__date {
    color: var(--sand_500);
  }
 
  &__counter {
    font-size: 11px;
    line-height: 13px;
    color: var(--sand_500);
  }
 
  &__toggle {
    width: 32px;
    height: 32px;
    position: relative;
 
    &::before {
      top: 50%;
      left: 50%;
      content: '';
      width: 10px;
      height: 10px;
      display: block;
      position: absolute;
      border: 2px solid var(--sand_900);
      border-bottom: none;
      border-right: none;
      margin-top: -3px;
      transform: translate3d(-50%, -50%, 0) rotate(225deg);
    }
 
    &_opened::before {
      margin-top: 3px;
      transform: translate3d(-50%, -50%, 0) rotate(45deg);
    }
  }
}