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
.view-controls {
  top: 0;
  z-index: 2;
  height: var(--view-controls-height);
  display: grid;
  position: sticky;
  padding: 0 4px;
  align-items: center;
  grid-auto-flow: column;
  grid-auto-columns: min-content;
  grid-column-gap: 4px;
  background-color: var(--color-neutral-background);
  box-shadow: 0 1px 0 rgb(0 0 0 / 10%);
 
 
  &__sort {
    display: flex;
    align-items: center;
  }
 
  &__label {
    width: 100%;
    display: flex;
    align-items: center;
    gap: var(--spacing-tight);
 
    span {
      display: flex;
      align-items: center;
      color: var(--grape_500);
    }
  }
 
  &_collapsed {
    top: 0;
    position: static;
  }
 
  .button {
    height: 24px;
    font-size: 11px;
    font-weight: 400;
    padding: 0;
    justify-content: flex-start;
    white-space: nowrap;
    box-shadow: none;
    gap: var(--spacing-tighter);
 
    &_newUI {
      font-size: 12px;
      font-weight: 500;
      line-height: 24px;
      height: 24px;
      box-shadow: initial;
    }
 
    &__icon {
      flex: none;
      margin: 0;
    }
 
    &:focus {
      box-shadow: none;
    }
 
    &:hover {
      background: var(--color-primary-emphasis-subtle);
      border-radius: 4px;
    }
 
    &[disabled] {
      background-color: var(--color-neutral-background);
      color: var(--color-neutral-content-subtlest);
    }
 
    &_type_text {
      padding: 0 2px !important;
    }
 
    &.dropdown__trigger {
      padding: 0 6px 0 2px;
    }
  }
}