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
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
.people-list {
  width: 100%;
  min-width: 650px;
  font-size: 16px;
 
  &__wrapper {
    border-radius: 4px;
    border: 1px solid var(--color-neutral-border);
    background: var(--color-neutral-background);
  }
 
  &__loading {
    width: 100%;
    display: flex;
    min-height: 250px;
    justify-content: center;
    align-items: center;
  }
 
  &__users {
    width: 100%;
    text-align: left;
    border-collapse: collapse;
  }
 
  &__header {
    font-weight: 500;
    display: flex;
  }
 
  &__column,
  &__field {
    z-index: 2;
    height: 48px;
    padding: 0 10px;
    border: none;
    color: var(--color-neutral-content);
    display: flex;
    position: relative;
    align-items: center;
 
    &.avatar {
      width: 28px;
      box-sizing: content-box;
    }
 
    &.name {
      flex: 1;
    }
 
    &.email {
      width: 200px;
    }
 
    &.last-activity {
      width: 160px;
    }
  }
 
  &__field {
    &.last-activity {
      color: var(--color-neutral-content);
    }
  }
 
  &__column {
    font-weight: 500;
    background: none;
  }
 
  &__user {
    cursor: pointer;
    display: flex;
 
    &:nth-child(odd):not(&_active) {
      background-color: var(--color-neutral-emphasis-subtle);
    }
 
    &_active {
      position: relative;
      background-color: var(--color-primary-surface);
 
      &::before,
      &::after {
        top: 0;
        bottom: 0;
        left: 0;
        content: '';
        display: block;
        position: absolute;
      }
 
      &::after {
        z-index: 1;
        background-color: var(--color-neutral-surface);
        width: calc(100% + 22px);
        box-shadow: inset 4px 0 0 var(--grape_500), 1px 0 0 1px var(--color-neutral-border) inset;
      }
 
      &::before {
        z-index: 0;
        height: 100%;
        width: calc(100% + 22px);
      }
    }
  }
}