@bagelink/vue 0.0.160 → 0.0.164
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 +2 -2
- 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,90 +1,93 @@
|
|
|
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
|
-
</div>
|
|
40
|
-
</div>
|
|
2
|
+
<div :class="{ open: isOpen, closed: !isOpen }">
|
|
3
|
+
<slot name="top" />
|
|
4
|
+
<div
|
|
5
|
+
class="nav-expend"
|
|
6
|
+
@click="isOpen = !isOpen"
|
|
7
|
+
@keypress.enter="isOpen = !isOpen"
|
|
8
|
+
role="button"
|
|
9
|
+
aria-label="Toggle Navigation"
|
|
10
|
+
tabindex="0"
|
|
11
|
+
>
|
|
12
|
+
<div class="icon-font top-arrow">chevron_right</div>
|
|
13
|
+
</div>
|
|
14
|
+
|
|
15
|
+
<div class="full-nav">
|
|
16
|
+
<div class="nav-scroll">
|
|
17
|
+
<div class="nav-links-wrapper">
|
|
18
|
+
<RouterLink
|
|
19
|
+
v-for="link in links?.()"
|
|
20
|
+
class="nav-button"
|
|
21
|
+
:to="link.to"
|
|
22
|
+
:key="link.label"
|
|
23
|
+
>
|
|
24
|
+
<div class="icon-font">
|
|
25
|
+
{{ link.materialIcon }}
|
|
26
|
+
</div>
|
|
27
|
+
<div class="tooltip">
|
|
28
|
+
{{ link.localized ? link.localized : link.label }}
|
|
29
|
+
</div>
|
|
30
|
+
</RouterLink>
|
|
31
|
+
</div>
|
|
32
|
+
</div>
|
|
33
|
+
|
|
34
|
+
<div class="bot-buttons-wrapper">
|
|
35
|
+
<slot name="floor" />
|
|
36
|
+
</div>
|
|
37
|
+
</div>
|
|
38
|
+
</div>
|
|
41
39
|
</template>
|
|
42
40
|
|
|
43
41
|
<script lang="ts" setup>
|
|
44
42
|
// import LangText from "../translation/LangText.vue"s
|
|
45
|
-
import type { MaterialIcons } from
|
|
43
|
+
import type { MaterialIcons } from "@bagelink/vue";
|
|
46
44
|
|
|
47
45
|
const isOpen = $ref(true);
|
|
48
46
|
|
|
49
47
|
withDefaults(
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
48
|
+
defineProps<{
|
|
49
|
+
links?: () => {
|
|
50
|
+
label: string;
|
|
51
|
+
to: string;
|
|
52
|
+
materialIcon: MaterialIcons;
|
|
53
|
+
localized?: string;
|
|
54
|
+
}[];
|
|
55
|
+
homeIcon?: MaterialIcons;
|
|
56
|
+
homeLabel?: string;
|
|
57
|
+
homeTo?: string;
|
|
58
|
+
}>(),
|
|
59
|
+
{
|
|
60
|
+
homeIcon: "home",
|
|
61
|
+
homeLabel: "Home",
|
|
62
|
+
homeTo: "/",
|
|
63
|
+
}
|
|
61
64
|
);
|
|
62
65
|
</script>
|
|
63
66
|
|
|
64
67
|
<style>
|
|
65
|
-
[dir=
|
|
66
|
-
|
|
68
|
+
[dir="rtl"] .top-arrow {
|
|
69
|
+
transform: rotate(180deg);
|
|
67
70
|
}
|
|
68
71
|
|
|
69
72
|
.nav-expend {
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
73
|
+
text-align: center;
|
|
74
|
+
cursor: pointer;
|
|
75
|
+
background: var(--bgl-white);
|
|
76
|
+
color: var(--bgl-primary);
|
|
77
|
+
display: flex;
|
|
78
|
+
border-radius: 100%;
|
|
79
|
+
font-size: 13px;
|
|
80
|
+
box-shadow: 0 0 50px 0 var(--bgl-shadow);
|
|
81
|
+
height: 22px;
|
|
82
|
+
width: 22px;
|
|
83
|
+
align-items: center;
|
|
84
|
+
justify-content: center;
|
|
85
|
+
position: absolute;
|
|
86
|
+
top: 82px;
|
|
87
|
+
box-sizing: border-box;
|
|
88
|
+
padding-inline-start: 2px;
|
|
89
|
+
margin-inline-start: 55px;
|
|
90
|
+
transition: all 0.4s cubic-bezier(0.36, 0.02, 0.23, 1);
|
|
88
91
|
}
|
|
89
92
|
|
|
90
93
|
/*
|
|
@@ -94,260 +97,260 @@ withDefaults(
|
|
|
94
97
|
*/
|
|
95
98
|
|
|
96
99
|
.nav-expend {
|
|
97
|
-
|
|
100
|
+
background: var(--bgl-white);
|
|
98
101
|
}
|
|
99
102
|
|
|
100
103
|
.nav-expend:hover {
|
|
101
|
-
|
|
102
|
-
|
|
104
|
+
filter: brightness(95%);
|
|
105
|
+
box-shadow: 0 0 20px 0 var(--bgl-primary-tint);
|
|
103
106
|
}
|
|
104
107
|
|
|
105
108
|
.nav-expend:active {
|
|
106
|
-
|
|
109
|
+
filter: var(--bgl-active-filter);
|
|
107
110
|
}
|
|
108
111
|
|
|
109
112
|
.nav {
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
113
|
+
color: var(--bgl-white);
|
|
114
|
+
background: var(--bgl-primary);
|
|
115
|
+
z-index: 100;
|
|
116
|
+
width: 70px;
|
|
117
|
+
transition: all 0.4s cubic-bezier(0.36, 0.02, 0.23, 1);
|
|
118
|
+
display: flex;
|
|
119
|
+
flex-direction: column;
|
|
117
120
|
}
|
|
118
121
|
|
|
119
122
|
.nav * {
|
|
120
|
-
|
|
123
|
+
user-select: none;
|
|
121
124
|
}
|
|
122
125
|
|
|
123
126
|
.nav-button {
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
127
|
+
text-decoration: none;
|
|
128
|
+
cursor: pointer;
|
|
129
|
+
display: flex;
|
|
130
|
+
text-align: start;
|
|
131
|
+
align-items: center;
|
|
132
|
+
position: relative;
|
|
133
|
+
color: var(--bgl-white);
|
|
134
|
+
transition: all 0.2s ease;
|
|
135
|
+
pointer-events: none;
|
|
133
136
|
}
|
|
134
137
|
|
|
135
138
|
.nav-button:hover {
|
|
136
|
-
|
|
137
|
-
|
|
139
|
+
width: fit-content;
|
|
140
|
+
pointer-events: all;
|
|
138
141
|
}
|
|
139
142
|
|
|
140
143
|
.nav-button .icon-font {
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
144
|
+
font-size: 22px;
|
|
145
|
+
margin: 0.25rem 10px;
|
|
146
|
+
padding: 10px;
|
|
147
|
+
width: 50px;
|
|
148
|
+
text-align: center;
|
|
149
|
+
height: 45px;
|
|
150
|
+
flex-grow: 0;
|
|
151
|
+
flex-shrink: 0;
|
|
152
|
+
border-radius: 10px;
|
|
153
|
+
transition: all 0.2s ease;
|
|
154
|
+
pointer-events: all;
|
|
152
155
|
}
|
|
153
156
|
|
|
154
157
|
.nav-button:hover .icon-font,
|
|
155
158
|
.nav-button.router-link-active .icon-font {
|
|
156
|
-
|
|
157
|
-
|
|
159
|
+
background: var(--bgl-white);
|
|
160
|
+
color: var(--bgl-primary);
|
|
158
161
|
}
|
|
159
162
|
|
|
160
163
|
.nav-button:hover .tooltip {
|
|
161
|
-
|
|
162
|
-
|
|
164
|
+
opacity: 1;
|
|
165
|
+
pointer-events: all;
|
|
163
166
|
}
|
|
164
167
|
|
|
165
168
|
.tooltip {
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
169
|
+
background-color: var(--bgl-white);
|
|
170
|
+
color: var(--bgl-primary);
|
|
171
|
+
line-height: 1;
|
|
172
|
+
padding: 0.5rem;
|
|
173
|
+
border-radius: 10px;
|
|
174
|
+
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
|
|
175
|
+
transition: all 0.2s ease;
|
|
176
|
+
border: 5px solid transparent;
|
|
177
|
+
white-space: nowrap;
|
|
178
|
+
pointer-events: none;
|
|
179
|
+
opacity: 0;
|
|
180
|
+
margin-inline-start: 1rem;
|
|
178
181
|
}
|
|
179
182
|
|
|
180
183
|
.tooltip:hover {
|
|
181
|
-
|
|
184
|
+
filter: brightness(95%);
|
|
182
185
|
}
|
|
183
186
|
|
|
184
187
|
.tooltip:active {
|
|
185
|
-
|
|
188
|
+
filter: brightness(90%);
|
|
186
189
|
}
|
|
187
190
|
|
|
188
191
|
.bot-buttons-wrapper {
|
|
189
|
-
|
|
190
|
-
|
|
192
|
+
margin-top: auto;
|
|
193
|
+
width: 100%;
|
|
191
194
|
}
|
|
192
195
|
|
|
193
196
|
.nav-links-wrapper {
|
|
194
|
-
|
|
197
|
+
direction: ltr;
|
|
195
198
|
}
|
|
196
199
|
|
|
197
|
-
[dir=
|
|
198
|
-
|
|
200
|
+
[dir="rtl"] .nav-links-wrapper {
|
|
201
|
+
direction: rtl;
|
|
199
202
|
}
|
|
200
203
|
|
|
201
204
|
.nav-scroll {
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
205
|
+
overflow-y: scroll;
|
|
206
|
+
width: 50vw;
|
|
207
|
+
direction: rtl;
|
|
208
|
+
text-align: end;
|
|
209
|
+
margin-inline-end: -7px;
|
|
210
|
+
pointer-events: none;
|
|
211
|
+
display: flex;
|
|
212
|
+
flex-direction: column;
|
|
210
213
|
}
|
|
211
214
|
|
|
212
215
|
.nav::-webkit-scrollbar-thumb {
|
|
213
|
-
|
|
216
|
+
background-color: transparent;
|
|
214
217
|
}
|
|
215
218
|
|
|
216
219
|
.nav:hover::-webkit-scrollbar-thumb {
|
|
217
|
-
|
|
220
|
+
background-color: var(--bgl-gray);
|
|
218
221
|
}
|
|
219
222
|
|
|
220
|
-
[dir=
|
|
221
|
-
|
|
223
|
+
[dir="rtl"] .nav-scroll {
|
|
224
|
+
direction: ltr;
|
|
222
225
|
}
|
|
223
226
|
|
|
224
227
|
.full-nav {
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
+
height: 100%;
|
|
229
|
+
display: flex;
|
|
230
|
+
flex-direction: column;
|
|
228
231
|
}
|
|
229
232
|
|
|
230
233
|
@media screen and (min-width: 910px) {
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
234
|
+
.nav.open .nav-expend {
|
|
235
|
+
margin-inline-start: 189px;
|
|
236
|
+
transform: rotate(180deg);
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
.nav.open {
|
|
240
|
+
width: 200px;
|
|
241
|
+
text-align: start;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.nav.open .tooltip {
|
|
245
|
+
background-color: transparent;
|
|
246
|
+
color: var(--bgl-white);
|
|
247
|
+
padding: 0;
|
|
248
|
+
box-shadow: none;
|
|
249
|
+
pointer-events: all;
|
|
250
|
+
opacity: 1;
|
|
251
|
+
margin-inline-start: 0rem;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
.nav.open .nav-button .icon-font {
|
|
255
|
+
margin: 0;
|
|
256
|
+
background: transparent;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
.nav.open .nav-button {
|
|
260
|
+
width: 180px;
|
|
261
|
+
border-radius: 10px;
|
|
262
|
+
margin-inline-start: 10px;
|
|
263
|
+
margin-top: 10px;
|
|
264
|
+
margin-bottom: 10px;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
.nav.open .nav-button:hover,
|
|
268
|
+
.nav.open .nav-button.router-link-active {
|
|
269
|
+
background: var(--bgl-white);
|
|
270
|
+
color: var(--bgl-primary);
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.nav.open .nav-button:hover,
|
|
274
|
+
.nav.open .nav-button:hover .tooltip,
|
|
275
|
+
.nav.open .nav-button.router-link-active .tooltip {
|
|
276
|
+
color: var(--bgl-primary);
|
|
277
|
+
}
|
|
275
278
|
}
|
|
276
279
|
|
|
277
280
|
@media screen and (max-width: 910px) {
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
281
|
+
.full-nav {
|
|
282
|
+
height: auto;
|
|
283
|
+
display: flex;
|
|
284
|
+
flex-direction: row;
|
|
285
|
+
width: calc(100vw - 70px);
|
|
286
|
+
position: absolute;
|
|
287
|
+
inset-inline-end: 0;
|
|
288
|
+
overflow-x: auto;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
.nav.open {
|
|
292
|
+
width: initial;
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
.nav {
|
|
296
|
+
width: auto;
|
|
297
|
+
display: flex;
|
|
298
|
+
flex-direction: row;
|
|
299
|
+
margin: 0;
|
|
300
|
+
overflow-x: auto;
|
|
301
|
+
justify-content: flex-start;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.tooltip {
|
|
305
|
+
opacity: 1;
|
|
306
|
+
background: transparent;
|
|
307
|
+
color: var(--bgl-white);
|
|
308
|
+
box-shadow: none;
|
|
309
|
+
font-size: 10px;
|
|
310
|
+
padding: 0;
|
|
311
|
+
margin: 0;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
.nav-button {
|
|
315
|
+
flex-direction: column;
|
|
316
|
+
margin: 12px 0.25rem;
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
.nav-button .icon-font {
|
|
320
|
+
padding: 2px 0 0 0;
|
|
321
|
+
margin: 0;
|
|
322
|
+
height: 30px;
|
|
323
|
+
width: 30px;
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
.nav-links-wrapper {
|
|
327
|
+
display: flex;
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
.bot-buttons-wrapper {
|
|
331
|
+
margin-top: 0;
|
|
332
|
+
width: auto;
|
|
333
|
+
display: flex;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.nav-scroll {
|
|
337
|
+
overflow-y: visible;
|
|
338
|
+
width: auto;
|
|
339
|
+
direction: auto;
|
|
340
|
+
text-align: start;
|
|
341
|
+
margin-inline-end: 0px;
|
|
342
|
+
pointer-events: all;
|
|
343
|
+
display: flex;
|
|
344
|
+
flex-direction: row;
|
|
345
|
+
margin-inline-end: auto;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
.nav::-webkit-scrollbar {
|
|
349
|
+
display: none;
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
.nav-expend {
|
|
353
|
+
display: none;
|
|
354
|
+
}
|
|
352
355
|
}
|
|
353
356
|
</style>
|