@bagelink/vue 0.0.140 → 0.0.145
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/FormSchema.vue.d.ts +2 -2
- package/dist/components/FormSchema.vue.d.ts.map +1 -1
- package/dist/components/Modal.vue.d.ts.map +1 -1
- package/dist/components/ModalForm.vue.d.ts.map +1 -1
- package/dist/components/formkit/FileUploader.vue.d.ts +4 -4
- package/dist/components/formkit/FileUploader.vue.d.ts.map +1 -1
- package/dist/index.cjs +43 -15
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +44 -16
- package/dist/plugins/modal.d.ts.map +1 -1
- package/dist/style.css +1376 -57
- package/dist/utils/index.d.ts +1 -0
- package/dist/utils/index.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/components/FormSchema.vue +1 -1
- package/src/components/Modal.vue +21 -8
- package/src/components/ModalForm.vue +23 -8
- package/src/components/formkit/FileUploader.vue +2 -2
- package/src/index.ts +1 -0
- package/src/plugins/modal.ts +12 -10
- package/src/styles/bagel.css +37 -0
- package/src/styles/buttons.css +56 -0
- 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
- package/src/styles/fonts/Ploni.css +71 -0
- package/src/styles/inputs.css +315 -0
- package/src/styles/layout.css +268 -0
- package/src/styles/modal.css +55 -54
- package/src/styles/scrollbar.css +18 -0
- package/src/styles/text.css +35 -0
- package/src/styles/theme.css +736 -0
- package/src/styles/transitions.css +47 -0
- package/src/utils/index.ts +6 -0
|
@@ -0,0 +1,736 @@
|
|
|
1
|
+
/* @import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Hebrew:wght@300;400;500;600;700&display=swap"); */
|
|
2
|
+
/*noinspection CssUnknownTarget*/
|
|
3
|
+
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined&display=swap");
|
|
4
|
+
@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@100;200;300;400;500;600;700;800;900&display=swap");
|
|
5
|
+
|
|
6
|
+
:root {
|
|
7
|
+
--bgl-blue: #19b8ea;
|
|
8
|
+
--bgl-blue-tint: #19b8ea80;
|
|
9
|
+
--bgl-blue-20: rgba(46, 91, 255, 20%);
|
|
10
|
+
--bgl-blue-dark: #191c30;
|
|
11
|
+
--bgl-red: #ed6c6f;
|
|
12
|
+
--bgl-red-tint: #fbe2e2;
|
|
13
|
+
--bgl-yellow: #ffbb00;
|
|
14
|
+
--bgl-yellow-light: #fff6d5;
|
|
15
|
+
--bgl-white: #fff;
|
|
16
|
+
--bgl-pink: #f1416c;
|
|
17
|
+
--bgl-gray: #b7b7b7;
|
|
18
|
+
--bgl-gray-light: #f5f8fa;
|
|
19
|
+
--bgl-gray-80: #e8ecef;
|
|
20
|
+
--bgl-gray-20: rgba(183, 183, 183, 0.2);
|
|
21
|
+
--bgl-blue-light: #eef6ff;
|
|
22
|
+
--bgl-green: #75c98f;
|
|
23
|
+
--border-color: #eff2f5;
|
|
24
|
+
--bgl-black: #282929;
|
|
25
|
+
--bgl-black-tint: #28292980;
|
|
26
|
+
--bgl-bg: #f4f6fa;
|
|
27
|
+
--bgl-shadow: #4c577d26;
|
|
28
|
+
--whatsapp-gray: #89959f;
|
|
29
|
+
--whatsapp-green: #e0fcd6;
|
|
30
|
+
--whatsapp-blue: #71bce6;
|
|
31
|
+
--input-border-radius: 7px;
|
|
32
|
+
--card-border-radius: 15px;
|
|
33
|
+
--btn-border-radius: 10px;
|
|
34
|
+
--btn-padding: 30px;
|
|
35
|
+
--input-bg: #f5f8fa;
|
|
36
|
+
--input-color: #00000080;
|
|
37
|
+
--input-height: 40px;
|
|
38
|
+
--btn-height: 40px;
|
|
39
|
+
--input-font-size: 12px;
|
|
40
|
+
--bgl-transition: all 200ms ease;
|
|
41
|
+
--bgl-hover-filter: brightness(90%);
|
|
42
|
+
--bgl-active-filter: brightness(70%);
|
|
43
|
+
--bgl-font: "Lexend", "Ploni", sans-serif;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
[theme="dark"] {}
|
|
47
|
+
|
|
48
|
+
.Vue-Toastification__toast {
|
|
49
|
+
border-radius: var(--card-border-radius);
|
|
50
|
+
box-shadow: none;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.Vue-Toastification__toast--default {
|
|
54
|
+
background: var(--bgl-blue);
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.Vue-Toastification__close-button {
|
|
58
|
+
height: 1rem;
|
|
59
|
+
line-height: 1rem;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
::selection {
|
|
63
|
+
color: var(--bgl-white);
|
|
64
|
+
background: var(--bgl-blue-dark);
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.top-title {
|
|
68
|
+
font-weight: 600;
|
|
69
|
+
font-size: 20px;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.page-top {
|
|
73
|
+
display: flex;
|
|
74
|
+
align-items: center;
|
|
75
|
+
gap: 1rem;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.modal-title {
|
|
79
|
+
text-align: center;
|
|
80
|
+
font-weight: 600;
|
|
81
|
+
font-size: 20px;
|
|
82
|
+
margin-top: 0;
|
|
83
|
+
margin-bottom: 20px;
|
|
84
|
+
width: 100%;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.modal-footer {
|
|
88
|
+
gap: 1rem;
|
|
89
|
+
display: flex;
|
|
90
|
+
justify-content: space-around;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.formkit-actions .formkit-wrapper {
|
|
94
|
+
gap: 1rem;
|
|
95
|
+
display: flex;
|
|
96
|
+
justify-content: flex-end;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
body {
|
|
100
|
+
background-color: var(--bgl-bg);
|
|
101
|
+
color: var(--bgl-black);
|
|
102
|
+
font-family: var(--bgl-font);
|
|
103
|
+
overflow: hidden;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
* {
|
|
107
|
+
box-sizing: border-box;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.display-block {
|
|
111
|
+
display: block;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.card {
|
|
115
|
+
border-radius: var(--card-border-radius);
|
|
116
|
+
background: var(--bgl-white);
|
|
117
|
+
padding: 2rem 2rem;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.card.gray {
|
|
121
|
+
background: var(--bgl-gray-20);
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.card.border {
|
|
125
|
+
border: 1px solid var(--border-color);
|
|
126
|
+
background-color: transparent;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.card.thin {
|
|
130
|
+
padding: 1rem 1rem;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.login-card {
|
|
134
|
+
padding: 3rem 2rem;
|
|
135
|
+
border-radius: calc(var(--card-border-radius) * 2);
|
|
136
|
+
position: absolute;
|
|
137
|
+
left: 0;
|
|
138
|
+
right: 0;
|
|
139
|
+
width: 330px;
|
|
140
|
+
margin: 15vh auto 0;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.login-card h3 {
|
|
144
|
+
font-size: 1.4rem;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.login-card .bagel-input input {
|
|
148
|
+
min-width: calc(var(--input-height) * 2);
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.login-card .loader-wrapper {
|
|
152
|
+
width: 100%;
|
|
153
|
+
margin-top: 1rem;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.btn.thin {
|
|
157
|
+
height: calc(var(--btn-height) * 0.7);
|
|
158
|
+
line-height: calc(var(--btn-height) * 0.7);
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.login-card .btn {
|
|
162
|
+
width: 100%;
|
|
163
|
+
background: var(--bgl-blue);
|
|
164
|
+
color: var(--bgl-white);
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
.login-card .forgot-password {
|
|
168
|
+
margin: -5px 0 10px;
|
|
169
|
+
color: var(--bgl-black);
|
|
170
|
+
text-decoration: none;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.login-card .forgot-password:active {
|
|
174
|
+
filter: brightness(70%);
|
|
175
|
+
color: var(--bgl-blue);
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.login-card .error {
|
|
179
|
+
color: var(--bgl-red);
|
|
180
|
+
font-size: 0.8rem;
|
|
181
|
+
margin-top: -0.75rem;
|
|
182
|
+
margin-bottom: 0.75rem;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.popup {
|
|
186
|
+
border-radius: 15px;
|
|
187
|
+
background: var(--bgl-white);
|
|
188
|
+
box-shadow: 0 1px 2px 0 rgb(0 0 0 / 10%);
|
|
189
|
+
padding: 2rem;
|
|
190
|
+
min-width: 300px;
|
|
191
|
+
text-align: center;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
.icon-font {
|
|
195
|
+
font-family: "Material Symbols Outlined", serif;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.tabs {
|
|
199
|
+
column-gap: 1rem;
|
|
200
|
+
margin-top: 20px;
|
|
201
|
+
margin-bottom: -2rem;
|
|
202
|
+
border-top: 1px solid var(--border-color);
|
|
203
|
+
width: calc(100% + 4rem);
|
|
204
|
+
margin-inline-start: -2rem;
|
|
205
|
+
padding-inline-start: 2rem;
|
|
206
|
+
overflow: auto;
|
|
207
|
+
display: flex;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
.card.thin .tabs {
|
|
211
|
+
margin-bottom: 1rem;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
.card>.card {
|
|
215
|
+
/* padding: 0; */
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
.card .card.tabs-top {
|
|
219
|
+
padding: 0;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
.tab {
|
|
223
|
+
font-size: 14px;
|
|
224
|
+
font-weight: 600;
|
|
225
|
+
line-height: 2.5;
|
|
226
|
+
cursor: pointer;
|
|
227
|
+
transition: var(--bgl-transition);
|
|
228
|
+
border-bottom: 2px solid transparent;
|
|
229
|
+
padding: 0 5px;
|
|
230
|
+
white-space: nowrap;
|
|
231
|
+
text-decoration: none;
|
|
232
|
+
color: inherit;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.tab.active {
|
|
236
|
+
color: var(--bgl-blue);
|
|
237
|
+
border-bottom: 2px solid var(--bgl-blue);
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.tab:hover {
|
|
241
|
+
color: var(--bgl-blue);
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.tab:active {
|
|
245
|
+
filter: brightness(70%);
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.router-tab {
|
|
249
|
+
font-size: 14px;
|
|
250
|
+
font-weight: 600;
|
|
251
|
+
line-height: 2.5;
|
|
252
|
+
cursor: pointer;
|
|
253
|
+
transition: var(--bgl-transition);
|
|
254
|
+
border-bottom: 2px solid transparent;
|
|
255
|
+
padding: 0 5px;
|
|
256
|
+
white-space: nowrap;
|
|
257
|
+
text-decoration: none;
|
|
258
|
+
color: inherit;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.router-tab.router-link-active {
|
|
262
|
+
color: var(--bgl-blue);
|
|
263
|
+
border-bottom: 2px solid var(--bgl-blue);
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
.router-tab:hover {
|
|
267
|
+
color: var(--bgl-blue);
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
.router-tab:active {
|
|
271
|
+
filter: brightness(70%);
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
.pill {
|
|
275
|
+
border-radius: 10px;
|
|
276
|
+
padding: 4px 8px;
|
|
277
|
+
font-size: 10px;
|
|
278
|
+
background: var(--bgl-gray-light);
|
|
279
|
+
white-space: nowrap;
|
|
280
|
+
display: inline;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
.pill.blue {
|
|
284
|
+
background: var(--bgl-blue-light);
|
|
285
|
+
color: var(--bgl-blue);
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
.pill.red {
|
|
289
|
+
background-color: var(--bgl-red-tint);
|
|
290
|
+
color: var(--bgl-red);
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
.hide {
|
|
294
|
+
display: none;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
.pill.green {
|
|
298
|
+
background-color: var(--bgl-green);
|
|
299
|
+
color: var(--bgl-white);
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
.pill.orange {
|
|
303
|
+
background-color: var(--bgl-yellow);
|
|
304
|
+
color: var(--bgl-black);
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
.block {
|
|
308
|
+
display: block;
|
|
309
|
+
width: 100%;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
.pill.yellow {
|
|
313
|
+
background-color: var(--bgl-yellow);
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
.pill.Paid,
|
|
317
|
+
.pill.Active {
|
|
318
|
+
background-color: var(--bgl-green);
|
|
319
|
+
color: white;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
.pill.Error {
|
|
323
|
+
background-color: var(--bgl-red-tint);
|
|
324
|
+
color: var(--bgl-red);
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
.list-item {
|
|
328
|
+
padding: 0.5rem 1rem;
|
|
329
|
+
min-height: fit-content;
|
|
330
|
+
margin: 0.25rem 0;
|
|
331
|
+
border-radius: 10px;
|
|
332
|
+
cursor: pointer;
|
|
333
|
+
transition: var(--bgl-transition);
|
|
334
|
+
color: var(--bgl-black);
|
|
335
|
+
text-decoration: none;
|
|
336
|
+
position: relative;
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
.list-item::after {
|
|
340
|
+
content: "";
|
|
341
|
+
position: absolute;
|
|
342
|
+
left: 0;
|
|
343
|
+
right: 0;
|
|
344
|
+
bottom: -0.25rem;
|
|
345
|
+
border-bottom: 1px solid var(--border-color);
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
.list-item:hover,
|
|
349
|
+
.list-item.router-link-active {
|
|
350
|
+
background-color: var(--bgl-blue-light);
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
.list-item:active {
|
|
354
|
+
filter: var(--bgl-hover-filter);
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
.entity-container {
|
|
358
|
+
display: grid;
|
|
359
|
+
height: 100%;
|
|
360
|
+
/* grid-template-columns: 2fr 0fr; */
|
|
361
|
+
grid-template-columns: minmax(300px, 1fr) 3fr;
|
|
362
|
+
grid-gap: 1rem;
|
|
363
|
+
column-gap: 1rem;
|
|
364
|
+
grid-template-rows: 1fr;
|
|
365
|
+
grid-template-areas: "list-view detail-view";
|
|
366
|
+
transition: grid-template-columns 0.4s cubic-bezier(0.79, 0.01, 0.34, 0.99);
|
|
367
|
+
transition: all 0.5s cubic-bezier(0.79, 0.01, 0.34, 0.99);
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
.flex {
|
|
371
|
+
display: flex;
|
|
372
|
+
align-items: center;
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
.flex-stretch {
|
|
376
|
+
display: flex;
|
|
377
|
+
align-items: stretch;
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
.flex-wrap {
|
|
381
|
+
flex-wrap: wrap;
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
.FormRow {
|
|
385
|
+
display: grid;
|
|
386
|
+
grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
|
|
387
|
+
gap: 1rem;
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
.flex-end {
|
|
391
|
+
justify-content: flex-end;
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
.space-between {
|
|
395
|
+
justify-content: space-between;
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
.detail-main {
|
|
399
|
+
overflow-y: auto;
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
.content-row p {
|
|
403
|
+
margin: 0 0 10px 0;
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
.txt20 {
|
|
407
|
+
font-size: 20px;
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
.txt16 {
|
|
411
|
+
font-size: 16px;
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
.txt14 {
|
|
415
|
+
font-size: 14px;
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
.txt12 {
|
|
419
|
+
font-size: 12px;
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
.txt9 {
|
|
423
|
+
font-size: 9px;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
.no-margin {
|
|
427
|
+
margin: 0;
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
.txtgray {
|
|
431
|
+
color: var(--bgl-gray);
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
.txtblue {
|
|
435
|
+
color: var(--bgl-blue);
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
.font-light {
|
|
439
|
+
font-weight: 100;
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
.id {
|
|
443
|
+
color: var(--bgl-gray);
|
|
444
|
+
font-size: 9px;
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
.empty-box {
|
|
448
|
+
width: 100%;
|
|
449
|
+
background-color: var(--bgl-gray-light);
|
|
450
|
+
color: var(--bgl-gray);
|
|
451
|
+
text-align: center;
|
|
452
|
+
padding: 20px;
|
|
453
|
+
border-radius: 10px;
|
|
454
|
+
justify-content: center;
|
|
455
|
+
flex-direction: column;
|
|
456
|
+
display: flex;
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
.field {
|
|
460
|
+
--field-count: 1;
|
|
461
|
+
--width: calc(100% / var(--field-count));
|
|
462
|
+
grid-auto-columns: minmax(var(--width), var(--width));
|
|
463
|
+
font-size: 10px;
|
|
464
|
+
text-align: z;
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
.card.BagelTable {
|
|
468
|
+
height: 100%;
|
|
469
|
+
overflow: auto;
|
|
470
|
+
padding-top: 0;
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
.detail-view-inner {
|
|
474
|
+
display: grid;
|
|
475
|
+
height: 100%;
|
|
476
|
+
overflow: hidden;
|
|
477
|
+
grid-template-rows: max-content 1fr;
|
|
478
|
+
gap: 1rem;
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
.detail-view-inner-wrap {
|
|
482
|
+
height: 100%;
|
|
483
|
+
overflow: hidden;
|
|
484
|
+
transition: var(--bgl-transition);
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
.table-list-wrap {
|
|
488
|
+
overflow: auto;
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
.overflow-hidden {
|
|
492
|
+
overflow: hidden;
|
|
493
|
+
}
|
|
494
|
+
|
|
495
|
+
.list-logo {
|
|
496
|
+
width: 50px;
|
|
497
|
+
aspect-ratio: 1;
|
|
498
|
+
object-fit: contain;
|
|
499
|
+
line-height: 1;
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
.list-content {
|
|
503
|
+
grid-auto-rows: max-content;
|
|
504
|
+
overflow-y: auto;
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
.DonationsDashbored {
|
|
508
|
+
position: relative;
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
.DonationsDashbored .list-content {
|
|
512
|
+
overflow-y: visible !important;
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
.DonationsDashbored .tabs-top {
|
|
516
|
+
position: sticky;
|
|
517
|
+
padding-top: 1rem;
|
|
518
|
+
inset-inline-start: 0;
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
/* [dir="rtl"] .DonationsDashbored .tabs-top {
|
|
522
|
+
inset-inline-start: 8vw;
|
|
523
|
+
} */
|
|
524
|
+
|
|
525
|
+
.copy-url {
|
|
526
|
+
background-color: var(--bgl-gray-light);
|
|
527
|
+
border-radius: var(--btn-border-radius);
|
|
528
|
+
padding: 0.5rem 1rem;
|
|
529
|
+
align-items: center;
|
|
530
|
+
justify-content: flex-start;
|
|
531
|
+
margin-bottom: 1rem;
|
|
532
|
+
display: flex;
|
|
533
|
+
justify-content: space-between;
|
|
534
|
+
/* gap: 1rem; */
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
.copy-url a {
|
|
538
|
+
margin: 0;
|
|
539
|
+
font-size: 12px;
|
|
540
|
+
opacity: 0.8;
|
|
541
|
+
color: var(--bgl-black);
|
|
542
|
+
word-break: break-all;
|
|
543
|
+
}
|
|
544
|
+
|
|
545
|
+
.list-view {
|
|
546
|
+
grid-area: list-view;
|
|
547
|
+
grid-template-areas: "list-header""list-content";
|
|
548
|
+
grid-template-columns: 1fr;
|
|
549
|
+
overflow-y: auto;
|
|
550
|
+
grid-template-rows: max-content 1fr;
|
|
551
|
+
transition: var(--transition);
|
|
552
|
+
}
|
|
553
|
+
|
|
554
|
+
.shekel {
|
|
555
|
+
line-height: 0;
|
|
556
|
+
}
|
|
557
|
+
|
|
558
|
+
.slide-fade-enter-active {
|
|
559
|
+
transition: all 0.15s ease-out;
|
|
560
|
+
}
|
|
561
|
+
|
|
562
|
+
.slide-fade-leave-active {
|
|
563
|
+
transition: all 0.15s ease-in;
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
.slide-fade-enter-from {
|
|
567
|
+
transform: translateX(20px);
|
|
568
|
+
opacity: 0;
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
.slide-fade-leave-to {
|
|
572
|
+
transform: translateX(-20px);
|
|
573
|
+
opacity: 0;
|
|
574
|
+
}
|
|
575
|
+
|
|
576
|
+
.grid>* {
|
|
577
|
+
min-height: 0;
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
.view-wrapper {
|
|
581
|
+
height: 100%;
|
|
582
|
+
position: relative;
|
|
583
|
+
overflow: hidden;
|
|
584
|
+
}
|
|
585
|
+
|
|
586
|
+
input[type="color"] {
|
|
587
|
+
padding: 0.025rem 0.05rem;
|
|
588
|
+
display: block;
|
|
589
|
+
width: var(--input-height);
|
|
590
|
+
height: var(--input-height);
|
|
591
|
+
border: none;
|
|
592
|
+
-webkit-appearance: none;
|
|
593
|
+
-moz-appearance: none;
|
|
594
|
+
appearance: none;
|
|
595
|
+
cursor: pointer;
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
input[type="color"]::-webkit-color-swatch {
|
|
599
|
+
border-radius: var(--input-border-radius);
|
|
600
|
+
border: none;
|
|
601
|
+
transition: box-shadow 200ms ease;
|
|
602
|
+
}
|
|
603
|
+
|
|
604
|
+
input[type="color"]::-moz-color-swatch {
|
|
605
|
+
border-radius: var(--input-border-radius);
|
|
606
|
+
border: none;
|
|
607
|
+
transition: box-shadow 200ms ease;
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
input[type="color"]::-webkit-color-swatch:hover {
|
|
611
|
+
box-shadow: inset 0 0 10px #00000050;
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
input[type="color"]::-moz-color-swatch:hover {
|
|
615
|
+
box-shadow: inset 0 0 10px #00000050;
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
.ellipsis {
|
|
619
|
+
overflow: hidden;
|
|
620
|
+
display: block;
|
|
621
|
+
width: 100%;
|
|
622
|
+
text-overflow: ellipsis;
|
|
623
|
+
}
|
|
624
|
+
|
|
625
|
+
@media screen and (max-width: 1000px) {
|
|
626
|
+
:root {
|
|
627
|
+
/* --input-font-size: 16px;
|
|
628
|
+
--input-height: 46px;
|
|
629
|
+
--btn-height: 46px; */
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
.entity-container {
|
|
633
|
+
grid-template-columns: minmax(22vw, 1fr) 2fr;
|
|
634
|
+
}
|
|
635
|
+
}
|
|
636
|
+
|
|
637
|
+
@media screen and (max-width: 910px) {
|
|
638
|
+
.tab {
|
|
639
|
+
font-size: 12px;
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
.entity-container {
|
|
643
|
+
grid-template-columns: 1fr;
|
|
644
|
+
gap: 0;
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
.detail-view-inner {
|
|
648
|
+
border-radius: var(--card-border-radius);
|
|
649
|
+
background: var(--bgl-white);
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
.detail-view-inner-wrap {
|
|
653
|
+
position: absolute;
|
|
654
|
+
height: 100%;
|
|
655
|
+
width: 100%;
|
|
656
|
+
background: var(--bgl-bg);
|
|
657
|
+
}
|
|
658
|
+
|
|
659
|
+
.detail-view-inner-wrap.card {
|
|
660
|
+
background: var(--bgl-white);
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
.list-item {
|
|
664
|
+
padding: 0.5rem;
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
.card {
|
|
668
|
+
padding: 1rem 1rem;
|
|
669
|
+
}
|
|
670
|
+
|
|
671
|
+
.tabs {
|
|
672
|
+
column-gap: 10px;
|
|
673
|
+
margin-top: 10px;
|
|
674
|
+
margin-bottom: -15px;
|
|
675
|
+
box-sizing: border-box;
|
|
676
|
+
margin-inline-start: -1rem;
|
|
677
|
+
padding-inline-start: 1rem;
|
|
678
|
+
max-width: calc(100vw - 2rem);
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
.login-card {
|
|
682
|
+
/* padding: 1rem 2.3rem; */
|
|
683
|
+
width: 94%;
|
|
684
|
+
max-width: 400px;
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
.login-card .bagel-input.wider input {
|
|
688
|
+
min-width: 220px;
|
|
689
|
+
}
|
|
690
|
+
|
|
691
|
+
.popup {
|
|
692
|
+
border-radius: 15px;
|
|
693
|
+
background: var(--bgl-white);
|
|
694
|
+
box-shadow: 0 1px 2px 0 rgb(0 0 0 / 10%);
|
|
695
|
+
padding: 2rem;
|
|
696
|
+
min-width: 0;
|
|
697
|
+
max-width: 90%;
|
|
698
|
+
max-height: 90vh;
|
|
699
|
+
overflow-x: auto;
|
|
700
|
+
text-align: center;
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
.detail-main {
|
|
704
|
+
overflow-y: unset;
|
|
705
|
+
}
|
|
706
|
+
|
|
707
|
+
.detail-section {
|
|
708
|
+
height: fit-content;
|
|
709
|
+
}
|
|
710
|
+
|
|
711
|
+
.field {
|
|
712
|
+
display: flex;
|
|
713
|
+
flex-wrap: wrap;
|
|
714
|
+
gap: 0.5rem;
|
|
715
|
+
align-items: center;
|
|
716
|
+
}
|
|
717
|
+
|
|
718
|
+
.top-title {
|
|
719
|
+
font-size: 1.25em;
|
|
720
|
+
margin-bottom: 1rem;
|
|
721
|
+
font-weight: 400;
|
|
722
|
+
margin-inline-start: 0.5rem;
|
|
723
|
+
}
|
|
724
|
+
|
|
725
|
+
.txt20 {
|
|
726
|
+
font-size: 18px;
|
|
727
|
+
}
|
|
728
|
+
|
|
729
|
+
.txt16 {
|
|
730
|
+
font-size: 14px;
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
.txt14 {
|
|
734
|
+
font-size: 12px;
|
|
735
|
+
}
|
|
736
|
+
}
|