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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
.bottombar {
  .controls {
    flex: 1;
    height: 100%;
    display: grid;
    grid-auto-columns: 1fr;
    column-gap: 8px;
    grid-auto-flow: column;
    justify-content: flex-end;
    padding-right: 8px;
    align-items: center;
 
    & .button {
      width: 160px;
      height: 40px;
      font-size: 16px;
      line-height: 24px;
      border-color: var(--color-neutral-border);
 
      &:hover:not(.button_look_primary) {
        background-color: var(--color-neutral-surface);
        border-color: var(--color-neutral-border-bold);
      }
 
      &_look_danger {
        border-color: var(--color-neutral-border);
      }
    }
 
    .submit {
      border-radius: 4px;
      background: var(--color-primary-surface);
      box-shadow: 0 4px 4px 0 rgb(var(--color-neutral-shadow-raw) / 25%);
      display: flex;
      width: 160px;
      height: 40px;
      justify-content: center;
      align-items: center;
      color: var(--color-primary-surface-content);
      text-align: center;
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: 24px;
      letter-spacing: 0.15px;
      flex-direction: row-reverse;
      padding: 0;
      cursor: pointer;
      transition: all 150ms ease-out;
 
      &:hover {
        background-color: var(--color-primary-surface-hover);
        border-color: var(--color-primary-border-bold);
      }
 
      &_disabled {
        color: var(--color-neutral-content-subtlest);
        background-color: var(--color-neutral-background);
        border: 1px solid var(--color-neutral-border);
        box-shadow: none;
 
        &:hover {
          background-color: var(--color-neutral-background);
          border-color: var(--color-neutral-border);
          color: var(--color-neutral-content-subtlest);
          cursor: not-allowed;
        }
 
      }
 
      &__has_icon {
        justify-content: space-between;
      }
 
      span {
        width: 100%;
      }
 
      &__icon {
        display: flex;
        max-width: 40px;
        height: 100%;
        justify-content: center;
        align-items: center;
        align-self: stretch;
        border-left: 1px solid rgb(255 255 255 / 16%);
 
        div {
          width: 100%;
          height: 100%;
          display: flex;
          align-items: center;
          justify-content: center;
        }
 
        svg {
          pointer-events: none;
          transform: rotate(180deg) scale(1.1);
        }
      }
    }
 
    &__skipped-info {
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 500;
      font-size: 16px;
 
      svg {
        color: var(--color-negative-icon);
        margin: 0 8px 0 4px;
      }
    }
  }
 
  .action-dialog {
    height: 278px;
    width: 319px;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
 
    &__input-title {
      margin-bottom: 4px;
    }
 
    &__input {
      resize: none;
      flex: 1 1 auto;
      margin-bottom: 16px;
      background-color: var(--color-neutral-surface);
      font-size: 16px;
    }
 
    &__footer {
      display: flex;
      flex-direction: row;
      justify-content: flex-end;
    }
  }
}
 
.submit-option {
  padding: 12px 24px;
  display: flex;
  align-items: center;
  align-self: stretch;
  background: var(--color-neutral-background);
  color: var(--color-neutral-content);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  box-shadow: 0 1px 3px 1px rgb(38 38 38 / 15%), 0 1px 2px 0 rgb(38 38 38 / 30%);
 
 
  &::before {
    content: '';
    z-index: -1;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    position: absolute;
    left: 0;
    top: 0;
    margin: 8px;
    border-radius: 4px;
    opacity: 0;
    background: var(--color-primary-emphasis-subtle);
    pointer-events: none;
    transition: all 150ms ease-out;
  }
}