@bagelink/vue 0.0.160 → 0.0.162
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.
- package/dist/components/Btn.vue.d.ts +2 -2
- package/dist/components/Btn.vue.d.ts.map +1 -1
- package/dist/components/Comments.vue.d.ts.map +1 -1
- package/dist/components/DropDown.vue.d.ts.map +1 -1
- package/dist/components/FileUploader.vue.d.ts.map +1 -1
- package/dist/components/LangText.vue.d.ts.map +1 -1
- package/dist/components/NavBar.vue.d.ts.map +1 -1
- package/dist/components/PersonPreview.vue.d.ts +1 -1
- package/dist/components/PersonPreview.vue.d.ts.map +1 -1
- package/dist/components/PersonPreviewFormkit.vue.d.ts +1 -1
- package/dist/components/PersonPreviewFormkit.vue.d.ts.map +1 -1
- package/dist/components/RTXEditor.vue.d.ts.map +1 -1
- package/dist/components/TableSchema.vue.d.ts.map +1 -1
- package/dist/components/charts/BarChart.vue.d.ts.map +1 -1
- package/dist/components/dashboard/Lineart.vue.d.ts +1 -1
- package/dist/components/dashboard/Lineart.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/CheckInput.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/Checkbox.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/PasswordInput.vue.d.ts.map +1 -1
- package/dist/components/formkit/AddressArray.vue.d.ts.map +1 -1
- package/dist/components/formkit/BankDetailsArray.vue.d.ts.map +1 -1
- package/dist/components/formkit/ContactArrayFormKit.vue.d.ts.map +1 -1
- package/dist/components/formkit/FileUploader.vue.d.ts.map +1 -1
- package/dist/components/formkit/MiscFields.vue.d.ts.map +1 -1
- package/dist/index.cjs +60 -49
- package/dist/index.mjs +60 -49
- package/dist/style.css +1468 -1402
- package/package.json +1 -1
- package/src/components/Btn.vue +127 -132
- package/src/components/Comments.vue +155 -169
- package/src/components/DropDown.vue +73 -77
- package/src/components/FileUploader.vue +133 -141
- package/src/components/FormKitTable.vue +191 -205
- package/src/components/LangText.vue +14 -14
- package/src/components/NavBar.vue +264 -261
- package/src/components/PersonPreview.vue +123 -148
- package/src/components/PersonPreviewFormkit.vue +124 -148
- package/src/components/RTXEditor.vue +91 -91
- package/src/components/TableSchema.vue +150 -156
- package/src/components/charts/BarChart.vue +212 -227
- package/src/components/dashboard/Lineart.vue +117 -130
- package/src/components/form/inputs/CheckInput.vue +90 -90
- package/src/components/form/inputs/Checkbox.vue +38 -41
- package/src/components/form/inputs/PasswordInput.vue +56 -63
- package/src/components/formkit/AddressArray.vue +150 -173
- package/src/components/formkit/BankDetailsArray.vue +175 -198
- package/src/components/formkit/ContactArrayFormKit.vue +124 -142
- package/src/components/formkit/FileUploader.vue +256 -260
- package/src/components/formkit/MiscFields.vue +42 -42
- package/src/components/formkit/Toggle.vue +97 -97
- package/src/styles/bagel.css +1 -0
- package/src/styles/buttons.css +5 -0
- package/src/styles/dark.css +46 -0
- package/src/styles/fonts/Ploni.css +8 -8
- package/src/styles/inputs.css +57 -13
- package/src/styles/layout.css +43 -0
- package/src/styles/text.css +83 -10
- package/src/styles/theme.css +25 -155
- package/src/styles/fonts/Ploni/ploni-black.eot +0 -0
- package/src/styles/fonts/Ploni/ploni-black.woff +0 -0
- package/src/styles/fonts/Ploni/ploni-black.woff2 +0 -0
- package/src/styles/fonts/Ploni/ploni-bold.eot +0 -0
- package/src/styles/fonts/Ploni/ploni-bold.woff +0 -0
- package/src/styles/fonts/Ploni/ploni-bold.woff2 +0 -0
- package/src/styles/fonts/Ploni/ploni-demibold.eot +0 -0
- package/src/styles/fonts/Ploni/ploni-demibold.woff +0 -0
- package/src/styles/fonts/Ploni/ploni-demibold.woff2 +0 -0
- package/src/styles/fonts/Ploni/ploni-light.eot +0 -0
- package/src/styles/fonts/Ploni/ploni-light.woff +0 -0
- package/src/styles/fonts/Ploni/ploni-light.woff2 +0 -0
- package/src/styles/fonts/Ploni/ploni-medium.eot +0 -0
- package/src/styles/fonts/Ploni/ploni-medium.woff +0 -0
- package/src/styles/fonts/Ploni/ploni-medium.woff2 +0 -0
- package/src/styles/fonts/Ploni/ploni-regular.eot +0 -0
- package/src/styles/fonts/Ploni/ploni-regular.woff +0 -0
- package/src/styles/fonts/Ploni/ploni-regular.woff2 +0 -0
- package/src/styles/fonts/Ploni/ploni-ultrabold.eot +0 -0
- package/src/styles/fonts/Ploni/ploni-ultrabold.woff +0 -0
- package/src/styles/fonts/Ploni/ploni-ultrabold.woff2 +0 -0
- package/src/styles/fonts/Ploni/ploni-ultralight.eot +0 -0
- package/src/styles/fonts/Ploni/ploni-ultralight.woff +0 -0
- package/src/styles/fonts/Ploni/ploni-ultralight.woff2 +0 -0
|
@@ -1,92 +1,85 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
class="icon-font password-icon"
|
|
20
|
-
@mousedown="toggleInputType"
|
|
21
|
-
>
|
|
22
|
-
visibility
|
|
23
|
-
</div>
|
|
24
|
-
</div>
|
|
25
|
-
</div>
|
|
2
|
+
<div class="bagel-input" :title="description" :class="{ small: small }">
|
|
3
|
+
<label v-if="label">
|
|
4
|
+
<LangText :input="label" />
|
|
5
|
+
</label>
|
|
6
|
+
<div class="password-input-wrap">
|
|
7
|
+
<input
|
|
8
|
+
:value="modelValue"
|
|
9
|
+
:type="inputType"
|
|
10
|
+
@input="handleInput"
|
|
11
|
+
:placeholder="placeholder"
|
|
12
|
+
:class="{ 'no-edit': !editMode }"
|
|
13
|
+
/>
|
|
14
|
+
<div class="icon-font password-icon" @mousedown="toggleInputType">
|
|
15
|
+
visibility
|
|
16
|
+
</div>
|
|
17
|
+
</div>
|
|
18
|
+
</div>
|
|
26
19
|
</template>
|
|
27
20
|
|
|
28
21
|
<script setup lang="ts">
|
|
29
|
-
const emits = defineEmits([
|
|
22
|
+
const emits = defineEmits(["update:modelValue"]);
|
|
30
23
|
withDefaults(
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
24
|
+
defineProps<{
|
|
25
|
+
description?: string;
|
|
26
|
+
label?: string;
|
|
27
|
+
modelValue: any;
|
|
28
|
+
placeholder?: string;
|
|
29
|
+
editMode?: boolean;
|
|
30
|
+
small?: boolean;
|
|
31
|
+
}>(),
|
|
32
|
+
{
|
|
33
|
+
description: "",
|
|
34
|
+
editMode: true,
|
|
35
|
+
placeholder: "",
|
|
36
|
+
label: "",
|
|
37
|
+
}
|
|
45
38
|
);
|
|
46
39
|
|
|
47
|
-
let inputType = $ref(
|
|
40
|
+
let inputType = $ref("password");
|
|
48
41
|
const handleInput = (e: Event) => {
|
|
49
|
-
|
|
50
|
-
|
|
42
|
+
const el = e.target as HTMLInputElement;
|
|
43
|
+
emits("update:modelValue", el.value);
|
|
51
44
|
};
|
|
52
45
|
|
|
53
46
|
function toggleInputType() {
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
47
|
+
inputType = "text";
|
|
48
|
+
document.addEventListener(
|
|
49
|
+
"mouseup",
|
|
50
|
+
() => {
|
|
51
|
+
inputType = "password";
|
|
52
|
+
},
|
|
53
|
+
{ once: true }
|
|
54
|
+
);
|
|
62
55
|
}
|
|
63
56
|
</script>
|
|
64
57
|
|
|
65
58
|
<style scoped>
|
|
66
59
|
.password-input-wrap {
|
|
67
|
-
|
|
60
|
+
position: relative;
|
|
68
61
|
}
|
|
69
62
|
|
|
70
63
|
.password-icon {
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
64
|
+
position: absolute;
|
|
65
|
+
top: calc(var(--input-height) / 2 - 10px);
|
|
66
|
+
right: calc(var(--input-height) / 2 - 10px);
|
|
67
|
+
cursor: pointer;
|
|
68
|
+
transition: var(--bgl-transition);
|
|
69
|
+
user-select: none;
|
|
77
70
|
}
|
|
78
71
|
|
|
79
72
|
.password-icon:hover {
|
|
80
|
-
|
|
81
|
-
|
|
73
|
+
filter: var(--bgl-hover-filter);
|
|
74
|
+
color: var(--bgl-primary);
|
|
82
75
|
}
|
|
83
76
|
|
|
84
77
|
.password-icon:active {
|
|
85
|
-
|
|
78
|
+
filter: var(--bgl-active-filter);
|
|
86
79
|
}
|
|
87
80
|
|
|
88
|
-
[dir=
|
|
89
|
-
|
|
90
|
-
|
|
81
|
+
[dir="rtl"] .password-icon {
|
|
82
|
+
left: calc(var(--input-height) / 2 - 10px);
|
|
83
|
+
right: unset;
|
|
91
84
|
}
|
|
92
85
|
</style>
|
|
@@ -1,249 +1,226 @@
|
|
|
1
1
|
<template>
|
|
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
|
-
:placeholder="formPlaceholders?.country"
|
|
61
|
-
type="text"
|
|
62
|
-
>
|
|
63
|
-
</div>
|
|
64
|
-
<div class="bglform-address-del">
|
|
65
|
-
<Btn
|
|
66
|
-
thin
|
|
67
|
-
@click="deleteCandidate = i"
|
|
68
|
-
icon="delete"
|
|
69
|
-
color="gray"
|
|
70
|
-
/>
|
|
71
|
-
</div>
|
|
72
|
-
</div>
|
|
73
|
-
<Btn
|
|
74
|
-
class="add-btn"
|
|
75
|
-
color="blue"
|
|
76
|
-
flat
|
|
77
|
-
thin
|
|
78
|
-
@click="addNew"
|
|
79
|
-
>
|
|
80
|
-
{{ formPlaceholders?.add }}
|
|
81
|
-
{{ context?.label }}
|
|
82
|
-
</Btn>
|
|
83
|
-
</div>
|
|
84
|
-
</div>
|
|
2
|
+
<div class="bagel-input">
|
|
3
|
+
<div class="mt-1">
|
|
4
|
+
<div class="bglform-contact mb-3" v-for="(address, i) in val" :key="i">
|
|
5
|
+
<div class="bglform-contact-confirm" v-if="deleteCandidate === i">
|
|
6
|
+
<p class="txt14">
|
|
7
|
+
{{ formPlaceholders?.sure }}
|
|
8
|
+
</p>
|
|
9
|
+
<Btn thin color="red" @click="deleteContact(address.id)">
|
|
10
|
+
{{ formPlaceholders?.delete }}
|
|
11
|
+
</Btn>
|
|
12
|
+
<Btn thin @click="deleteCandidate = -1">
|
|
13
|
+
{{ formPlaceholders?.cancel }}
|
|
14
|
+
</Btn>
|
|
15
|
+
</div>
|
|
16
|
+
<Checkbox
|
|
17
|
+
v-model="address.primary"
|
|
18
|
+
@update:model-value="($event) => primaryHandler(i, $event)"
|
|
19
|
+
/>
|
|
20
|
+
<input
|
|
21
|
+
class="bglform-contact-label"
|
|
22
|
+
v-model="address.label"
|
|
23
|
+
type="text"
|
|
24
|
+
:placeholder="formPlaceholders?.label"
|
|
25
|
+
/>
|
|
26
|
+
<div class="bglform-contact-address">
|
|
27
|
+
<input
|
|
28
|
+
v-model="address.street"
|
|
29
|
+
:placeholder="formPlaceholders?.street"
|
|
30
|
+
type="text"
|
|
31
|
+
/>
|
|
32
|
+
<div class="bglform-contact-address-flex">
|
|
33
|
+
<input
|
|
34
|
+
v-model="address.city"
|
|
35
|
+
:placeholder="formPlaceholders?.city"
|
|
36
|
+
type="text"
|
|
37
|
+
/>
|
|
38
|
+
<input
|
|
39
|
+
v-model="address.postal_code"
|
|
40
|
+
:placeholder="formPlaceholders?.zip"
|
|
41
|
+
type="text"
|
|
42
|
+
/>
|
|
43
|
+
</div>
|
|
44
|
+
<input
|
|
45
|
+
v-model="address.country"
|
|
46
|
+
:placeholder="formPlaceholders?.country"
|
|
47
|
+
type="text"
|
|
48
|
+
/>
|
|
49
|
+
</div>
|
|
50
|
+
<div class="bglform-address-del">
|
|
51
|
+
<Btn thin @click="deleteCandidate = i" icon="delete" color="gray" />
|
|
52
|
+
</div>
|
|
53
|
+
</div>
|
|
54
|
+
<Btn class="add-btn" color="blue" flat thin @click="addNew">
|
|
55
|
+
{{ formPlaceholders?.add }}
|
|
56
|
+
{{ context?.label }}
|
|
57
|
+
</Btn>
|
|
58
|
+
</div>
|
|
59
|
+
</div>
|
|
85
60
|
</template>
|
|
86
61
|
|
|
87
62
|
<script setup lang="ts">
|
|
88
|
-
import { watch } from
|
|
63
|
+
import { watch } from "vue";
|
|
89
64
|
// import type { BagelField } from '@bagelink/vue';
|
|
90
65
|
|
|
91
|
-
import { Btn, useBagel } from
|
|
92
|
-
import Checkbox from
|
|
66
|
+
import { Btn, useBagel } from "@bagelink/vue";
|
|
67
|
+
import Checkbox from "../form/inputs/Checkbox.vue";
|
|
93
68
|
|
|
94
69
|
export interface AddressArrContext {
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
70
|
+
label?: string;
|
|
71
|
+
id?: string;
|
|
72
|
+
value: any[];
|
|
73
|
+
node: Record<string, any>;
|
|
74
|
+
attrs: {
|
|
75
|
+
formPlaceholders?: {
|
|
76
|
+
add?: string;
|
|
77
|
+
cancel?: string;
|
|
78
|
+
city?: string;
|
|
79
|
+
country?: string;
|
|
80
|
+
delete?: string;
|
|
81
|
+
label?: string;
|
|
82
|
+
sure?: string;
|
|
83
|
+
zip?: string;
|
|
84
|
+
street?: string;
|
|
85
|
+
};
|
|
86
|
+
};
|
|
112
87
|
}
|
|
113
88
|
const bagel = useBagel();
|
|
114
89
|
const props = defineProps<{
|
|
115
|
-
|
|
90
|
+
context: AddressArrContext;
|
|
116
91
|
}>();
|
|
117
|
-
const formPlaceholders = $computed(
|
|
92
|
+
const formPlaceholders = $computed(
|
|
93
|
+
() => props.context?.attrs?.formPlaceholders
|
|
94
|
+
);
|
|
118
95
|
|
|
119
96
|
let val = $ref<any[]>([]);
|
|
120
97
|
const addNew = () => {
|
|
121
|
-
|
|
122
|
-
|
|
98
|
+
if (!val) val = [{}];
|
|
99
|
+
else val.push({});
|
|
123
100
|
};
|
|
124
101
|
|
|
125
102
|
let deleteCandidate = $ref<number>(-1);
|
|
126
103
|
|
|
127
104
|
const del = (i: number) => {
|
|
128
|
-
|
|
105
|
+
val.splice(i, 1);
|
|
129
106
|
};
|
|
130
107
|
|
|
131
108
|
const deleteContact = async (id: string) => {
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
109
|
+
await bagel.delete(`/person/contact/${id}`);
|
|
110
|
+
const index = val.findIndex((v) => v.id === id);
|
|
111
|
+
deleteCandidate = -1;
|
|
112
|
+
del(index);
|
|
136
113
|
};
|
|
137
114
|
|
|
138
115
|
const primaryHandler = (i: number, isPrimary: boolean) => {
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
116
|
+
if (!isPrimary) return;
|
|
117
|
+
val?.forEach((contact, index) => {
|
|
118
|
+
if (index !== i) contact.primary = false;
|
|
119
|
+
});
|
|
143
120
|
};
|
|
144
121
|
|
|
145
122
|
watch(
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
123
|
+
() => props.context?.value,
|
|
124
|
+
() => {
|
|
125
|
+
val = props.context?.value;
|
|
126
|
+
},
|
|
127
|
+
{ immediate: true }
|
|
151
128
|
);
|
|
152
129
|
|
|
153
130
|
watch(
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
131
|
+
() => val,
|
|
132
|
+
() => {
|
|
133
|
+
props.context?.node.input(val);
|
|
134
|
+
}
|
|
158
135
|
);
|
|
159
136
|
</script>
|
|
160
137
|
|
|
161
138
|
<style>
|
|
162
139
|
.bglform-contact-confirm {
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
140
|
+
position: absolute;
|
|
141
|
+
background: rgba(255, 255, 255, 0.5);
|
|
142
|
+
height: 100%;
|
|
143
|
+
width: 100%;
|
|
144
|
+
display: flex;
|
|
145
|
+
align-items: center;
|
|
146
|
+
justify-content: center;
|
|
147
|
+
gap: 0.5rem;
|
|
148
|
+
backdrop-filter: blur(1px);
|
|
172
149
|
}
|
|
173
150
|
</style>
|
|
174
151
|
<style scoped>
|
|
175
152
|
.bglform-contact {
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
153
|
+
display: flex;
|
|
154
|
+
gap: 0.5rem;
|
|
155
|
+
max-width: 700px;
|
|
156
|
+
position: relative;
|
|
180
157
|
}
|
|
181
158
|
|
|
182
159
|
.bglform-contact-label {
|
|
183
|
-
|
|
160
|
+
flex-basis: 140px;
|
|
184
161
|
}
|
|
185
162
|
|
|
186
163
|
.bglform-contact-address {
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
164
|
+
display: flex;
|
|
165
|
+
flex-direction: column;
|
|
166
|
+
gap: 0.5rem;
|
|
190
167
|
}
|
|
191
168
|
|
|
192
|
-
.bglform-contact input[type=
|
|
193
|
-
|
|
194
|
-
|
|
169
|
+
.bglform-contact input[type="checkbox"] {
|
|
170
|
+
width: 30px;
|
|
171
|
+
min-width: 0;
|
|
195
172
|
}
|
|
196
173
|
|
|
197
174
|
.light.thin.btn-txt.btn {
|
|
198
|
-
|
|
199
|
-
|
|
175
|
+
padding-left: calc(var(--btn-padding) / 4);
|
|
176
|
+
padding-right: calc(var(--btn-padding) / 4);
|
|
200
177
|
}
|
|
201
178
|
|
|
202
179
|
.bglform-address-del {
|
|
203
|
-
|
|
180
|
+
margin-top: 6px;
|
|
204
181
|
}
|
|
205
182
|
|
|
206
183
|
.bglform-contact-address-flex {
|
|
207
|
-
|
|
208
|
-
|
|
184
|
+
display: flex;
|
|
185
|
+
gap: 0.5rem;
|
|
209
186
|
}
|
|
210
187
|
|
|
211
188
|
.add-btn {
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
189
|
+
display: flex;
|
|
190
|
+
gap: 0.5rem;
|
|
191
|
+
align-items: center;
|
|
192
|
+
margin-inline-start: 1rem;
|
|
216
193
|
}
|
|
217
194
|
|
|
218
195
|
.add-btn:active {
|
|
219
|
-
|
|
196
|
+
background: none !important;
|
|
220
197
|
}
|
|
221
198
|
|
|
222
199
|
.add-btn::before {
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
200
|
+
content: "+";
|
|
201
|
+
font-size: 10px;
|
|
202
|
+
background: var(--bgl-blue-light);
|
|
203
|
+
border-radius: 100%;
|
|
204
|
+
height: 14px;
|
|
205
|
+
width: 14px;
|
|
206
|
+
display: flex;
|
|
207
|
+
align-items: center;
|
|
208
|
+
justify-content: center;
|
|
209
|
+
color: var(--bgl-primary);
|
|
233
210
|
}
|
|
234
211
|
|
|
235
212
|
.add-btn:hover::before {
|
|
236
|
-
|
|
237
|
-
|
|
213
|
+
background: var(--bgl-primary);
|
|
214
|
+
color: var(--bgl-white);
|
|
238
215
|
}
|
|
239
216
|
|
|
240
217
|
@media screen and (max-width: 910px) {
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
218
|
+
.bglform-contact-address-flex {
|
|
219
|
+
flex-wrap: wrap;
|
|
220
|
+
}
|
|
244
221
|
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
222
|
+
.bglform-contact-label {
|
|
223
|
+
min-width: 0;
|
|
224
|
+
}
|
|
248
225
|
}
|
|
249
226
|
</style>
|