bfg-common 1.4.351 → 1.4.352
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.
|
@@ -61,6 +61,13 @@
|
|
|
61
61
|
min-width="96px"
|
|
62
62
|
@click="onSubmit"
|
|
63
63
|
>
|
|
64
|
+
<ui-icon
|
|
65
|
+
v-if="selectedTab === 'light-bulb'"
|
|
66
|
+
name="icon-auto-deploy"
|
|
67
|
+
width="20"
|
|
68
|
+
height="20"
|
|
69
|
+
class="feedback__btn-icon"
|
|
70
|
+
/>
|
|
64
71
|
{{ modalFooterButtonNames }}
|
|
65
72
|
</ui-button>
|
|
66
73
|
</div>
|
|
@@ -127,5 +134,8 @@ const onSubmit = (): void => {
|
|
|
127
134
|
line-height: 15.73px;
|
|
128
135
|
margin-top: 24px;
|
|
129
136
|
}
|
|
137
|
+
&__btn-icon {
|
|
138
|
+
margin-right: 5px;
|
|
139
|
+
}
|
|
130
140
|
}
|
|
131
141
|
</style>
|
package/components/common/layout/theHeader/feedback/new/additionalDetails/AdditionalDetails.vue
CHANGED
|
@@ -1,14 +1,12 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="additional-details">
|
|
3
|
-
|
|
3
|
+
<common-layout-the-header-feedback-new-additional-details-headline />
|
|
4
4
|
</div>
|
|
5
5
|
</template>
|
|
6
6
|
|
|
7
|
-
<script lang="ts" setup>
|
|
8
|
-
</script>
|
|
7
|
+
<script lang="ts" setup></script>
|
|
9
8
|
|
|
10
9
|
<style lang="scss" scoped>
|
|
11
10
|
.additional-details {
|
|
12
|
-
|
|
13
11
|
}
|
|
14
12
|
</style>
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="headline">
|
|
3
|
+
<span class="headline__label">
|
|
4
|
+
{{ localization.common.additionalDetails }}
|
|
5
|
+
</span>
|
|
6
|
+
<ui-icon
|
|
7
|
+
id="feedback-additional-details-info-icon"
|
|
8
|
+
name="info"
|
|
9
|
+
width="18"
|
|
10
|
+
height="18"
|
|
11
|
+
:color="isShowInfo ? '#008FD6' : '#9DA6AD'"
|
|
12
|
+
class="info-icon pointer"
|
|
13
|
+
@click="isShowInfo = !isShowInfo"
|
|
14
|
+
/>
|
|
15
|
+
<ui-popup-window
|
|
16
|
+
v-model="isShowInfo"
|
|
17
|
+
width="232px"
|
|
18
|
+
:elem-id="'feedback-additional-details-info-icon'"
|
|
19
|
+
>
|
|
20
|
+
<div class="common-widget-info">
|
|
21
|
+
<div class="headline justify-between flex-align-center">
|
|
22
|
+
<div class="flex-align-center">
|
|
23
|
+
<ui-icon-icon3 name="info-2" width="16px" height="16px" />
|
|
24
|
+
<span class="title">
|
|
25
|
+
{{ localization.feedback.additionalDetailsHelp }}
|
|
26
|
+
</span>
|
|
27
|
+
</div>
|
|
28
|
+
<ui-icon
|
|
29
|
+
name="close"
|
|
30
|
+
class="pointer hide-icon"
|
|
31
|
+
width="16px"
|
|
32
|
+
height="16px"
|
|
33
|
+
@click="isShowInfo = false"
|
|
34
|
+
/>
|
|
35
|
+
</div>
|
|
36
|
+
|
|
37
|
+
<div class="common-widget-info-description">
|
|
38
|
+
{{ localization.feedback.additionalDetailsTooltip }}
|
|
39
|
+
</div>
|
|
40
|
+
</div>
|
|
41
|
+
</ui-popup-window>
|
|
42
|
+
</div>
|
|
43
|
+
</template>
|
|
44
|
+
|
|
45
|
+
<script lang="ts" setup>
|
|
46
|
+
import type { UI_I_Localization } from '~/lib/models/interfaces'
|
|
47
|
+
|
|
48
|
+
const localization = computed<UI_I_Localization>(() => useLocal())
|
|
49
|
+
|
|
50
|
+
const isShowInfo = ref<boolean>(false)
|
|
51
|
+
</script>
|
|
52
|
+
|
|
53
|
+
<style lang="scss" scoped>
|
|
54
|
+
@import 'assets/scss/common/mixins.scss';
|
|
55
|
+
.headline {
|
|
56
|
+
@include flex($align: center);
|
|
57
|
+
margin-top: 16px;
|
|
58
|
+
&__label {
|
|
59
|
+
line-height: 38px;
|
|
60
|
+
font-size: 16px;
|
|
61
|
+
font-weight: 500;
|
|
62
|
+
color: #4d5d69;
|
|
63
|
+
margin-right: 8px;
|
|
64
|
+
}
|
|
65
|
+
.common-widget-info {
|
|
66
|
+
padding: 16px;
|
|
67
|
+
|
|
68
|
+
.title {
|
|
69
|
+
font-size: 14px;
|
|
70
|
+
font-weight: 500;
|
|
71
|
+
line-height: 16.94px;
|
|
72
|
+
color: var(--zabbix-text-color);
|
|
73
|
+
margin-left: 8px;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.common-widget-info-description {
|
|
77
|
+
font-size: 13px;
|
|
78
|
+
line-height: 15.73px;
|
|
79
|
+
color: var(--zabbix-text-color);
|
|
80
|
+
margin-top: 12px;
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
</style>
|