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
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
.menu-wrapper {
  max-width: 100%;
  min-height: 100vh;
  min-width: 100vw;
  font-size: 16px;
}
 
.menu-header {
  top: 0;
  height: var(--header-height);
  z-index: 1000;
  position: sticky;
  display: flex;
  box-sizing: border-box;
  background-color: var(--color-neutral-background);
  border-bottom: 1px solid var(--color-neutral-border);
  transition: background-color 400ms ease-out;
 
  &__spacer {
    width: var(--spacing-tight);
  }
 
  &__context {
    flex: 1;
    display: flex;
    padding: 0 0 0 1.125rem;
    align-items: center;
    justify-content: space-between;
  }
 
  &__context-item {
    &_left,
    &_right {
      height: 100%;
      display: flex;
      align-items: center;
    }
 
    .button-ls {
      height: 32px;
    }
  }
 
  &__hotkeys {
      display: flex;
      padding: 0 var(--spacing-base);
      align-items: center;
  }
 
  &__hotkeys-button {
      button {
        svg {
          width: 20px;
          height: 20px;
          color: var(--color-neutral-content-subtler);
        }
 
        &:hover {
          svg {
            color: var(--color-neutral-icon);
          }
        }
      }
  }
 
  
  &__trigger {
    display: flex;
    padding: 0 20px;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    min-width: 240px;
    max-width: 240px;
    box-sizing: border-box;
    border-right: 1px solid var(--color-neutral-border);
    transition: all 150ms ease-out;
 
    &:hover {
      background-color: var(--color-neutral-emphasis-subtle);
    }
  }
 
  &__logo {
    color: var(--color-neutral-content);
    height: 22px;
    width: 142px;
  }
 
  &__user {
    display: flex;
    margin: 0 var(--spacing-base);
    align-self: center;
    cursor: pointer;
    position: relative;
    align-items: center;
    justify-content: center;
  }
 
  &__userpic-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary_link);
  }
}
 
.newsletter-menu-item {
  width: 200px;
  white-space: normal;
  height: auto;
  padding-bottom: 8px;
  padding-top: 8px;
  margin-top: -8px;
  font-size: 14px;
  position: relative;
  background: var(--color-primary-background);
  color: var(--color-neutral-content);
  line-height: 1.4em;
  transition: 0.2s all;
 
  .main-menu &:hover {
    background: var(--color-primary-emphasis-subtle);
  }
}
 
.newsletter-menu-badge {
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  right: 8px;
  top: 8px;
  border-radius: 50%;
  background: var(--primary_link);
}