Bin
2025-12-17 2b99d77d73ba568beff0a549534017caaad8a6de
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
.annotators {
  display: grid;
  grid-auto-flow: column;
  grid-column-gap: 4px;
 
  &__item {
    z-index: 1;
    width: 28px;
    height: 28px;
    border-radius: 100%;
    position: relative;
 
    &:hover {
      z-index: 10;
    }
  }
}
 
.userpic-badge {
  width: 10px;
  height: 10px;
  color: var(--color-neutral-background);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  box-shadow: 0 0 0 2px var(--color-neutral-background);
 
  &_accepted {
    background-color: #64BF00;
  }
 
  &_rejected {
    background-color: #D00;
  }
 
  &_fixed {
    background-color: #FA8C16;
  }
}