bfg-common 1.4.288 → 1.4.290

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/assets/img/icons/icons-sprite-dark-1.svg +407 -407
  2. package/assets/img/icons/icons-sprite-dark-2.svg +343 -343
  3. package/assets/img/icons/icons-sprite-dark-3.svg +227 -227
  4. package/assets/img/icons/icons-sprite-dark-4.svg +255 -255
  5. package/assets/img/icons/icons-sprite-dark-5.svg +488 -488
  6. package/assets/img/icons/icons-sprite-dark-6.svg +94 -83
  7. package/assets/img/icons/icons-sprite-light-1.svg +407 -407
  8. package/assets/img/icons/icons-sprite-light-2.svg +343 -343
  9. package/assets/img/icons/icons-sprite-light-3.svg +227 -227
  10. package/assets/img/icons/icons-sprite-light-4.svg +255 -255
  11. package/assets/img/icons/icons-sprite-light-5.svg +488 -488
  12. package/assets/img/icons/icons-sprite-light-6.svg +94 -83
  13. package/assets/localization/local_be.json +2 -56
  14. package/assets/localization/local_en.json +2 -56
  15. package/assets/localization/local_hy.json +2 -56
  16. package/assets/localization/local_kk.json +2 -56
  17. package/assets/localization/local_ru.json +2 -56
  18. package/assets/localization/local_zh.json +2 -56
  19. package/assets/scss/common/icons/icons-6.scss +12 -0
  20. package/components/atoms/TheIcon3.vue +50 -50
  21. package/components/atoms/modal/bySteps/BySteps.vue +253 -253
  22. package/components/atoms/stack/StackBlock.vue +185 -185
  23. package/components/atoms/wizard/lib/utils/utils.ts +0 -104
  24. package/components/common/browse/blocks/Title.vue +91 -91
  25. package/components/common/browse/blocks/info/Date.vue +21 -21
  26. package/components/common/context/lib/models/interfaces.ts +30 -30
  27. package/components/common/context/recursion/Recursion.vue +86 -86
  28. package/components/common/context/recursion/RecursionNew.vue +199 -199
  29. package/components/common/context/recursion/RecursionOld.vue +213 -213
  30. package/components/common/modals/confirmation/Confirmation.vue +65 -65
  31. package/components/common/vm/actions/add/Add.vue +617 -617
  32. package/components/common/vm/actions/clone/lib/config/steps.ts +129 -129
  33. package/components/common/vm/actions/common/customizeHardware/virtualHardware/bus/lib/config/options.ts +20 -20
  34. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/Cpu.vue +403 -403
  35. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/Hv.vue +99 -99
  36. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/order/Order.vue +201 -201
  37. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/streamingMode/StreamingMode.vue +85 -85
  38. package/composables/productNameLocal.ts +30 -30
  39. package/package.json +1 -1
  40. package/plugins/date.ts +181 -181
  41. package/plugins/recursion.ts +311 -311
  42. package/public/spice-console/lib/images/bitmap.js +203 -203
  43. package/public/spice-console/network/spicechannel.js +383 -383
  44. package/store/tasks/mappers/recentTasks.ts +45 -45
@@ -1,21 +1,21 @@
1
- <template>
2
- <div>
3
- <span>{{ props.title }}:</span>
4
- <span>{{ formattedDateString }}</span>
5
- </div>
6
- </template>
7
-
8
- <script setup lang="ts">
9
- import { format } from 'date-fns'
10
- const props = defineProps<{
11
- title: string
12
- value: number
13
- }>()
14
-
15
- const getDateString = (dateAlias: number): string =>
16
- format(new Date(dateAlias), 'MM/dd/yyyy HH:mm:ss a')
17
-
18
- const formattedDateString = computed<string>(() => getDateString(props.value))
19
- </script>
20
-
21
- <style scoped lang="scss"></style>
1
+ <template>
2
+ <div>
3
+ <span>{{ props.title }}:</span>
4
+ <span>{{ formattedDateString }}</span>
5
+ </div>
6
+ </template>
7
+
8
+ <script setup lang="ts">
9
+ import { format } from 'date-fns'
10
+ const props = defineProps<{
11
+ title: string
12
+ value: number
13
+ }>()
14
+
15
+ const getDateString = (dateAlias: number): string =>
16
+ format(new Date(dateAlias), 'MM/dd/yyyy HH:mm:ss a')
17
+
18
+ const formattedDateString = computed<string>(() => getDateString(props.value))
19
+ </script>
20
+
21
+ <style scoped lang="scss"></style>
@@ -1,30 +1,30 @@
1
- import type { UI_I_TreeNode } from '~/components/common/recursionTree/lib/models/interfaces'
2
-
3
- export interface UI_I_ContextMenuByEvent {
4
- event: any
5
- node: UI_I_TreeNode
6
- }
7
- export interface UI_I_ContextMenu<T = string> {
8
- x: number
9
- y: number
10
- id: string | number
11
- type: T
12
- titleText: string
13
- titleIconClassName: string
14
- items: UI_I_ContextMenuItem[]
15
- }
16
- export interface UI_I_ContextMenuItem<T = string> {
17
- name: string
18
- actionType: T | ''
19
- iconClassName: string
20
- items: UI_I_ContextMenuItem<T>[]
21
- shortcut?: string
22
- hasBorderTop?: boolean
23
- isHeader?: boolean
24
- disabled?: boolean
25
- isShowItems?: boolean
26
- testId?: string
27
- style?: {
28
- color: string
29
- }
30
- }
1
+ import type { UI_I_TreeNode } from '~/components/common/recursionTree/lib/models/interfaces'
2
+
3
+ export interface UI_I_ContextMenuByEvent {
4
+ event: any
5
+ node: UI_I_TreeNode
6
+ }
7
+ export interface UI_I_ContextMenu<T = string> {
8
+ x: number
9
+ y: number
10
+ id: string | number
11
+ type: T
12
+ titleText: string
13
+ titleIconClassName: string
14
+ items: UI_I_ContextMenuItem[]
15
+ }
16
+ export interface UI_I_ContextMenuItem<T = string> {
17
+ name: string
18
+ actionType: T | ''
19
+ iconClassName: string
20
+ items: UI_I_ContextMenuItem<T>[]
21
+ shortcut?: string
22
+ hasBorderTop?: boolean
23
+ isHeader?: boolean
24
+ disabled?: boolean
25
+ isShowItems?: boolean
26
+ testId?: string
27
+ style?: {
28
+ color: string
29
+ }
30
+ }
@@ -1,86 +1,86 @@
1
- <template>
2
- <common-context-recursion-new
3
- v-if="isNewView"
4
- :items="props.items"
5
- :action-loading="props.actionLoading"
6
- :is-loading="isLoading"
7
- :test-id="props.testId"
8
- @select-item="selectItem"
9
- @toggle-items="toggleItems"
10
- />
11
- <common-context-recursion-old
12
- v-else
13
- :items="props.items"
14
- :action-loading="props.actionLoading"
15
- :is-loading="isLoading"
16
- :test-id="props.testId"
17
- @select-item="selectItem"
18
- @toggle-items="toggleItems"
19
- />
20
- </template>
21
-
22
- <script setup lang="ts">
23
- import type { UI_I_ContextMenuItem } from '~/components/common/context/lib/models/interfaces'
24
- import type { I_HTMLLiElement } from '~/components/common/context/recursion/lib/models/interfaces'
25
-
26
- const props = defineProps<{
27
- items: UI_I_ContextMenuItem[]
28
- actionLoading: string | null
29
- testId?: string
30
- }>()
31
- const emits = defineEmits<{
32
- (event: 'select-item', value: UI_I_ContextMenuItem): void
33
- }>()
34
-
35
- const { $store }: any = useNuxtApp()
36
- const isNewView = computed<boolean>(() => $store.getters['main/getIsNewView'])
37
-
38
- const isLoading = computed<boolean>(
39
- () => !!props.items.find((item) => item.actionType === props.actionLoading)
40
- )
41
-
42
- const selectItem = (item: UI_I_ContextMenuItem): void => {
43
- if (item.disabled) return
44
-
45
- emits('select-item', item)
46
- }
47
-
48
- const setElementPosition = (event: I_HTMLLiElement): void => {
49
- const top = event.target.getBoundingClientRect().top
50
- const childMenu = event.target.children[1].children[0]
51
- childMenu.style.top = `${top}px`
52
-
53
- const childMenuRect = (childMenu.getBoundingClientRect() as DOMRect) || null
54
-
55
- // Обрабатываем, если попап вишел за viewport (с права)
56
- if (childMenuRect.right > window.innerWidth) {
57
- event.target.classList.add('left')
58
- } else {
59
- event.target.classList.remove('left')
60
- }
61
-
62
- // Обрабатываем, если попап вишел за viewport (с низу)
63
- if (childMenuRect.bottom > window.innerHeight) {
64
- childMenu.style.top = 'auto'
65
- childMenu.style.bottom = '0px'
66
- } else {
67
- childMenu.style.bottom = 'unset'
68
- }
69
- }
70
-
71
- const toggleItems = (
72
- data: [UI_I_ContextMenuItem, boolean, I_HTMLLiElement]
73
- ): void => {
74
- const [item, show, e] = data
75
- if (!item.items.length || item.disabled) {
76
- return
77
- }
78
- item.isShowItems = show
79
-
80
- nextTick(() => {
81
- setElementPosition(e)
82
- })
83
- }
84
- </script>
85
-
86
- <style scoped lang="scss"></style>
1
+ <template>
2
+ <common-context-recursion-new
3
+ v-if="isNewView"
4
+ :items="props.items"
5
+ :action-loading="props.actionLoading"
6
+ :is-loading="isLoading"
7
+ :test-id="props.testId"
8
+ @select-item="selectItem"
9
+ @toggle-items="toggleItems"
10
+ />
11
+ <common-context-recursion-old
12
+ v-else
13
+ :items="props.items"
14
+ :action-loading="props.actionLoading"
15
+ :is-loading="isLoading"
16
+ :test-id="props.testId"
17
+ @select-item="selectItem"
18
+ @toggle-items="toggleItems"
19
+ />
20
+ </template>
21
+
22
+ <script setup lang="ts">
23
+ import type { UI_I_ContextMenuItem } from '~/components/common/context/lib/models/interfaces'
24
+ import type { I_HTMLLiElement } from '~/components/common/context/recursion/lib/models/interfaces'
25
+
26
+ const props = defineProps<{
27
+ items: UI_I_ContextMenuItem[]
28
+ actionLoading: string | null
29
+ testId?: string
30
+ }>()
31
+ const emits = defineEmits<{
32
+ (event: 'select-item', value: UI_I_ContextMenuItem): void
33
+ }>()
34
+
35
+ const { $store }: any = useNuxtApp()
36
+ const isNewView = computed<boolean>(() => $store.getters['main/getIsNewView'])
37
+
38
+ const isLoading = computed<boolean>(
39
+ () => !!props.items.find((item) => item.actionType === props.actionLoading)
40
+ )
41
+
42
+ const selectItem = (item: UI_I_ContextMenuItem): void => {
43
+ if (item.disabled) return
44
+
45
+ emits('select-item', item)
46
+ }
47
+
48
+ const setElementPosition = (event: I_HTMLLiElement): void => {
49
+ const top = event.target.getBoundingClientRect().top
50
+ const childMenu = event.target.children[1].children[0]
51
+ childMenu.style.top = `${top}px`
52
+
53
+ const childMenuRect = (childMenu.getBoundingClientRect() as DOMRect) || null
54
+
55
+ // Обрабатываем, если попап вишел за viewport (с права)
56
+ if (childMenuRect.right > window.innerWidth) {
57
+ event.target.classList.add('left')
58
+ } else {
59
+ event.target.classList.remove('left')
60
+ }
61
+
62
+ // Обрабатываем, если попап вишел за viewport (с низу)
63
+ if (childMenuRect.bottom > window.innerHeight) {
64
+ childMenu.style.top = 'auto'
65
+ childMenu.style.bottom = '0px'
66
+ } else {
67
+ childMenu.style.bottom = 'unset'
68
+ }
69
+ }
70
+
71
+ const toggleItems = (
72
+ data: [UI_I_ContextMenuItem, boolean, I_HTMLLiElement]
73
+ ): void => {
74
+ const [item, show, e] = data
75
+ if (!item.items.length || item.disabled) {
76
+ return
77
+ }
78
+ item.isShowItems = show
79
+
80
+ nextTick(() => {
81
+ setElementPosition(e)
82
+ })
83
+ }
84
+ </script>
85
+
86
+ <style scoped lang="scss"></style>
@@ -1,199 +1,199 @@
1
- <template>
2
- <ul class="context-wrap relative">
3
- <span v-if="props.isLoading">
4
- <ui-loader2 class="context-loader" test-id="context-menu" />
5
- </span>
6
- <li
7
- v-for="(item, key) in props.items"
8
- :key="key"
9
- :class="[
10
- 'menu-item',
11
- { disabled: item.disabled || isLoading },
12
- { 'show-children': item.isShowItems },
13
- { 'has-divider': item.hasBorderTop },
14
- ]"
15
- @mouseenter="emits('toggle-items', [item, true, $event])"
16
- @mouseleave="emits('toggle-items', [item, false, $event])"
17
- >
18
- <span
19
- class="context-link"
20
- :style="item.style"
21
- :data-id="`${item.testId}-context-link`"
22
- @mousedown="emits('select-item', item)"
23
- >
24
- <span :class="['context-icon', item.iconClassName]" />
25
- <span class="menu-item-text">{{ item.name }}</span>
26
- <ui-icon v-if="item.items.length" name="arrow" class="arrow-icon" />
27
- <span v-if="item.shortcut" class="shortcut">{{ item.shortcut }}</span>
28
- </span>
29
-
30
- <div class="context-children">
31
- <common-context-recursion
32
- v-show="item.isShowItems"
33
- :action-loading="props.actionLoading"
34
- :items="item.items"
35
- @select-item="emits('select-item', $event)"
36
- />
37
- </div>
38
- </li>
39
- </ul>
40
- </template>
41
-
42
- <script setup lang="ts">
43
- import type { UI_I_ContextMenuItem } from '~/components/common/context/lib/models/interfaces'
44
- import type { I_HTMLLiElement } from '~/components/common/context/recursion/lib/models/interfaces'
45
-
46
- const props = defineProps<{
47
- items: UI_I_ContextMenuItem[]
48
- actionLoading: string | null
49
- isLoading: boolean
50
- testId?: string
51
- }>()
52
-
53
- const emits = defineEmits<{
54
- (event: 'select-item', value: UI_I_ContextMenuItem): void
55
- (
56
- event: 'toggle-items',
57
- value: [UI_I_ContextMenuItem, boolean, I_HTMLLiElement]
58
- ): void
59
- }>()
60
- </script>
61
-
62
- <style scoped lang="scss">
63
- .context-wrap {
64
- width: auto;
65
- max-width: 400px;
66
- background: var(--context-menu-bg-color);
67
- border-radius: 8px;
68
- user-select: none;
69
- list-style: none;
70
- max-height: 100vh;
71
- box-shadow: 0 4px 20px 0 #0000001f;
72
- padding: 8px;
73
-
74
- .context-loader {
75
- position: absolute;
76
- width: 60px;
77
- top: calc(50% - 30px);
78
- left: calc(50% - 30px);
79
- }
80
-
81
- .menu-item {
82
- position: relative;
83
- color: var(--context-menu-text-color);
84
- cursor: pointer;
85
- border-radius: 4px;
86
-
87
- &.show-children::after {
88
- content: '';
89
- position: absolute;
90
- top: 0;
91
- left: 100%;
92
- width: 12px;
93
- height: 100%;
94
- }
95
-
96
- &:not(:last-child) {
97
- margin-bottom: 8px;
98
- }
99
-
100
- &:not(.disabled) > .context-link:hover {
101
- background-color: var(--context-menu-item-bg-hover-color);
102
- color: var(--context-menu-text-hover-color);
103
- }
104
- &.disabled {
105
- opacity: 0.5;
106
- user-select: none;
107
- cursor: default;
108
- }
109
- &.left {
110
- &.show-children::after {
111
- left: -12px;
112
- }
113
- :deep(.context-children) {
114
- left: -12px;
115
-
116
- .context-wrap {
117
- transform: translateX(-100%);
118
- left: auto;
119
- }
120
- }
121
- }
122
-
123
- &.has-divider::before {
124
- content: '';
125
- display: block;
126
- height: 0.03rem;
127
- background-color: var(--context-menu-border-color);
128
- margin-bottom: 8px;
129
- }
130
-
131
- .context-link {
132
- position: relative;
133
- overflow: hidden;
134
- text-overflow: ellipsis;
135
- white-space: nowrap;
136
- display: flex;
137
- align-items: center;
138
- user-select: none;
139
- border-radius: 4px;
140
- padding: 6px 8px;
141
-
142
- .menu-item-text {
143
- flex: 1 1 0;
144
- font-size: 13px;
145
- font-weight: 400;
146
- line-height: 15.73px;
147
- }
148
-
149
- .context-icon {
150
- margin-right: 8px;
151
- width: 20px;
152
- height: 20px;
153
- }
154
-
155
- .arrow-icon {
156
- position: absolute;
157
- top: 50%;
158
- margin-top: -8px;
159
- right: 4px;
160
- display: inline-block;
161
- width: 16px;
162
- height: 16px;
163
- overflow: hidden;
164
- transform: rotate(90deg);
165
- }
166
-
167
- .shortcut {
168
- padding-left: 10px;
169
- }
170
- }
171
-
172
- .context-children {
173
- position: absolute;
174
- top: 0;
175
- left: calc(100% + 12px);
176
-
177
- .context-wrap {
178
- position: fixed;
179
- }
180
- }
181
- }
182
- }
183
- </style>
184
- <style>
185
- :root.is-new-view {
186
- --context-menu-bg-color: #ffffff;
187
- --context-menu-item-bg-hover-color: rgba(233, 235, 237, 0.4);
188
- --context-menu-text-color: #4d5d69;
189
- --context-menu-text-hover-color: #182531;
190
- --context-menu-border-color: #e9ebed;
191
- }
192
- :root.is-new-view.dark-theme {
193
- --context-menu-bg-color: #334453;
194
- --context-menu-item-bg-hover-color: rgba(233, 235, 237, 0.06);
195
- --context-menu-text-color: #e9eaec;
196
- --context-menu-text-hover-color: #ffffff;
197
- --context-menu-border-color: rgba(233, 235, 237, 0.12);
198
- }
199
- </style>
1
+ <template>
2
+ <ul class="context-wrap relative">
3
+ <span v-if="props.isLoading">
4
+ <ui-loader2 class="context-loader" test-id="context-menu" />
5
+ </span>
6
+ <li
7
+ v-for="(item, key) in props.items"
8
+ :key="key"
9
+ :class="[
10
+ 'menu-item',
11
+ { disabled: item.disabled || isLoading },
12
+ { 'show-children': item.isShowItems },
13
+ { 'has-divider': item.hasBorderTop },
14
+ ]"
15
+ @mouseenter="emits('toggle-items', [item, true, $event])"
16
+ @mouseleave="emits('toggle-items', [item, false, $event])"
17
+ >
18
+ <span
19
+ class="context-link"
20
+ :style="item.style"
21
+ :data-id="`${item.testId}-context-link`"
22
+ @mousedown="emits('select-item', item)"
23
+ >
24
+ <span :class="['context-icon', item.iconClassName]" />
25
+ <span class="menu-item-text">{{ item.name }}</span>
26
+ <ui-icon v-if="item.items.length" name="arrow" class="arrow-icon" />
27
+ <span v-if="item.shortcut" class="shortcut">{{ item.shortcut }}</span>
28
+ </span>
29
+
30
+ <div class="context-children">
31
+ <common-context-recursion
32
+ v-show="item.isShowItems"
33
+ :action-loading="props.actionLoading"
34
+ :items="item.items"
35
+ @select-item="emits('select-item', $event)"
36
+ />
37
+ </div>
38
+ </li>
39
+ </ul>
40
+ </template>
41
+
42
+ <script setup lang="ts">
43
+ import type { UI_I_ContextMenuItem } from '~/components/common/context/lib/models/interfaces'
44
+ import type { I_HTMLLiElement } from '~/components/common/context/recursion/lib/models/interfaces'
45
+
46
+ const props = defineProps<{
47
+ items: UI_I_ContextMenuItem[]
48
+ actionLoading: string | null
49
+ isLoading: boolean
50
+ testId?: string
51
+ }>()
52
+
53
+ const emits = defineEmits<{
54
+ (event: 'select-item', value: UI_I_ContextMenuItem): void
55
+ (
56
+ event: 'toggle-items',
57
+ value: [UI_I_ContextMenuItem, boolean, I_HTMLLiElement]
58
+ ): void
59
+ }>()
60
+ </script>
61
+
62
+ <style scoped lang="scss">
63
+ .context-wrap {
64
+ width: auto;
65
+ max-width: 400px;
66
+ background: var(--context-menu-bg-color);
67
+ border-radius: 8px;
68
+ user-select: none;
69
+ list-style: none;
70
+ max-height: 100vh;
71
+ box-shadow: 0 4px 20px 0 #0000001f;
72
+ padding: 8px;
73
+
74
+ .context-loader {
75
+ position: absolute;
76
+ width: 60px;
77
+ top: calc(50% - 30px);
78
+ left: calc(50% - 30px);
79
+ }
80
+
81
+ .menu-item {
82
+ position: relative;
83
+ color: var(--context-menu-text-color);
84
+ cursor: pointer;
85
+ border-radius: 4px;
86
+
87
+ &.show-children::after {
88
+ content: '';
89
+ position: absolute;
90
+ top: 0;
91
+ left: 100%;
92
+ width: 12px;
93
+ height: 100%;
94
+ }
95
+
96
+ &:not(:last-child) {
97
+ margin-bottom: 8px;
98
+ }
99
+
100
+ &:not(.disabled) > .context-link:hover {
101
+ background-color: var(--context-menu-item-bg-hover-color);
102
+ color: var(--context-menu-text-hover-color);
103
+ }
104
+ &.disabled {
105
+ opacity: 0.5;
106
+ user-select: none;
107
+ cursor: default;
108
+ }
109
+ &.left {
110
+ &.show-children::after {
111
+ left: -12px;
112
+ }
113
+ :deep(.context-children) {
114
+ left: -12px;
115
+
116
+ .context-wrap {
117
+ transform: translateX(-100%);
118
+ left: auto;
119
+ }
120
+ }
121
+ }
122
+
123
+ &.has-divider::before {
124
+ content: '';
125
+ display: block;
126
+ height: 0.03rem;
127
+ background-color: var(--context-menu-border-color);
128
+ margin-bottom: 8px;
129
+ }
130
+
131
+ .context-link {
132
+ position: relative;
133
+ overflow: hidden;
134
+ text-overflow: ellipsis;
135
+ white-space: nowrap;
136
+ display: flex;
137
+ align-items: center;
138
+ user-select: none;
139
+ border-radius: 4px;
140
+ padding: 6px 8px;
141
+
142
+ .menu-item-text {
143
+ flex: 1 1 0;
144
+ font-size: 13px;
145
+ font-weight: 400;
146
+ line-height: 15.73px;
147
+ }
148
+
149
+ .context-icon {
150
+ margin-right: 8px;
151
+ width: 20px;
152
+ height: 20px;
153
+ }
154
+
155
+ .arrow-icon {
156
+ position: absolute;
157
+ top: 50%;
158
+ margin-top: -8px;
159
+ right: 4px;
160
+ display: inline-block;
161
+ width: 16px;
162
+ height: 16px;
163
+ overflow: hidden;
164
+ transform: rotate(90deg);
165
+ }
166
+
167
+ .shortcut {
168
+ padding-left: 10px;
169
+ }
170
+ }
171
+
172
+ .context-children {
173
+ position: absolute;
174
+ top: 0;
175
+ left: calc(100% + 12px);
176
+
177
+ .context-wrap {
178
+ position: fixed;
179
+ }
180
+ }
181
+ }
182
+ }
183
+ </style>
184
+ <style>
185
+ :root.is-new-view {
186
+ --context-menu-bg-color: #ffffff;
187
+ --context-menu-item-bg-hover-color: rgba(233, 235, 237, 0.4);
188
+ --context-menu-text-color: #4d5d69;
189
+ --context-menu-text-hover-color: #182531;
190
+ --context-menu-border-color: #e9ebed;
191
+ }
192
+ :root.is-new-view.dark-theme {
193
+ --context-menu-bg-color: #334453;
194
+ --context-menu-item-bg-hover-color: rgba(233, 235, 237, 0.06);
195
+ --context-menu-text-color: #e9eaec;
196
+ --context-menu-text-hover-color: #ffffff;
197
+ --context-menu-border-color: rgba(233, 235, 237, 0.12);
198
+ }
199
+ </style>