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
.actionButton {
  --compact-height: 32px;
 
  height: var(--compact-height);
  padding: 0 13px;
  display: flex;
  align-items: center;
 
  &__titleContainer {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: space-between;
  }
 
  &_isTitle {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.5px;
    color: var(--grape_500);
    cursor: initial;
    padding: 16px 12px 8px;
    height: var(--compact-height);
 
    .actionButton {
      &__titleContainer:hover {
        background-color: transparent;
      }
 
      &__title {
        font-size: 12px;
      }
    }
 
    &:hover {
      background-color: transparent !important;
      color: var(--grape_500) !important;
    }
  }
 
  &_isSeparator {
    cursor: initial;
    height: 1px;
    background-color: rgb(137 128 152 / 12%) !important;
    padding: 0;
 
    .actionButton__titleContainer {
      display: none;
    }
 
    &.menu__item {
      height: 1px;
    }
 
    &:hover {
      background-color: transparent;
    }
  }
 
  &_hasSeperator {
    border-top: 1px solid rgb(137 128 152 / 12%);
  }
 
  &__title {
    flex-grow: 1;
    font-size: 16px;
  }
 
  &_hasSubMenu {
    color: var(--color-neutral-content-subtler);
 
    &:hover {
      color: var(--black);
      background-color: var(--black_4);
    }
  }
 
  &_danger {
    color: #d00;
  }
 
  &_disabled {
    background-color: var(--black_4);
    color: rgb(0 0 0 / 25%);
    cursor: initial;
 
    &:hover {
      background-color: var(--black_4) !important;
      color: rgb(0 0 0 / 25%) !important;
      cursor: initial;
    }
  }
}
 
.actionButton-submenu {
  margin: 0;
  padding: 0;
  list-style: none;
}