@bagelink/vue 0.0.1016 → 0.0.1023
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 +3 -0
- package/dist/components/Btn.vue.d.ts.map +1 -1
- package/dist/components/form/BglField.vue.d.ts.map +1 -1
- package/dist/components/form/FieldArray.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/RangeInput.vue.d.ts +11 -14
- package/dist/components/form/inputs/RangeInput.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/RichText/index.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/TelInput.vue.d.ts +2 -2
- package/dist/components/layout/TabsBody.vue.d.ts.map +1 -1
- package/dist/components/layout/TabsNav.vue.d.ts +25 -1
- package/dist/components/layout/TabsNav.vue.d.ts.map +1 -1
- package/dist/components/lightbox/index.d.ts.map +1 -1
- package/dist/index.cjs +273 -246
- package/dist/index.mjs +273 -246
- package/dist/style.css +373 -338
- package/package.json +1 -1
- package/src/components/Btn.vue +5 -3
- package/src/components/form/BglField.vue +9 -0
- package/src/components/form/FieldArray.vue +31 -23
- package/src/components/form/inputs/RangeInput.vue +142 -77
- package/src/components/form/inputs/RichText/index.vue +2 -2
- package/src/components/layout/TabsBody.vue +2 -2
- package/src/components/layout/TabsNav.vue +14 -12
- package/src/components/lightbox/index.ts +0 -1
- package/src/styles/appearance.css +8 -0
- package/src/styles/theme.css +258 -256
package/package.json
CHANGED
package/src/components/Btn.vue
CHANGED
|
@@ -23,6 +23,7 @@ const props = withDefaults(
|
|
|
23
23
|
href?: string
|
|
24
24
|
round?: boolean
|
|
25
25
|
is?: string
|
|
26
|
+
ripple?: boolean
|
|
26
27
|
onClick?: (e: MouseEvent) => void
|
|
27
28
|
}>(),
|
|
28
29
|
{
|
|
@@ -34,7 +35,8 @@ const props = withDefaults(
|
|
|
34
35
|
role: 'button',
|
|
35
36
|
is: 'button',
|
|
36
37
|
border: false,
|
|
37
|
-
outline: false
|
|
38
|
+
outline: false,
|
|
39
|
+
ripple: true,
|
|
38
40
|
},
|
|
39
41
|
)
|
|
40
42
|
|
|
@@ -54,13 +56,13 @@ const bind = $computed(() => {
|
|
|
54
56
|
}
|
|
55
57
|
return obj
|
|
56
58
|
})
|
|
57
|
-
const slots: SetupContext[
|
|
59
|
+
const slots: SetupContext['slots'] = useSlots()
|
|
58
60
|
</script>
|
|
59
61
|
|
|
60
62
|
<template>
|
|
61
63
|
<component
|
|
62
64
|
:is="isComponent"
|
|
63
|
-
v-ripple v-bind="bind" :disabled="disabled"
|
|
65
|
+
v-ripple="ripple" v-bind="bind" :disabled="disabled"
|
|
64
66
|
class="bgl_btn"
|
|
65
67
|
:class="{
|
|
66
68
|
'bgl_btn-icon': icon && !slots.default && !value,
|
|
@@ -11,6 +11,7 @@ import {
|
|
|
11
11
|
ToggleInput,
|
|
12
12
|
bindAttrs,
|
|
13
13
|
classify,
|
|
14
|
+
BagelForm
|
|
14
15
|
} from '@bagelink/vue'
|
|
15
16
|
import TabsNav from '../layout/TabsNav.vue'
|
|
16
17
|
|
|
@@ -42,6 +43,7 @@ const is = $computed(() => {
|
|
|
42
43
|
if (props.field.$el === 'file') return FileUpload
|
|
43
44
|
if (props.field.$el === 'date') return DateInput
|
|
44
45
|
if (props.field.$el === 'tabs') return TabsNav
|
|
46
|
+
if (props.field.$el === 'form') return BagelForm
|
|
45
47
|
return props.field.$el ?? 'div'
|
|
46
48
|
})
|
|
47
49
|
|
|
@@ -68,6 +70,8 @@ function setFieldData(key: string, val: any) {
|
|
|
68
70
|
return data
|
|
69
71
|
}
|
|
70
72
|
|
|
73
|
+
const isForm = $computed(() => props.field.$el === 'form' || props.field.$el === BagelForm)
|
|
74
|
+
|
|
71
75
|
function getFieldData(obj: any, key: string) {
|
|
72
76
|
if (typeof obj !== 'object' || obj === null) return obj
|
|
73
77
|
const keys = key.split(objPathRegex)
|
|
@@ -84,12 +88,17 @@ function getFieldData(obj: any, key: string) {
|
|
|
84
88
|
|
|
85
89
|
const fieldData = $computed({
|
|
86
90
|
set: (val: any) => {
|
|
91
|
+
if (isForm) {
|
|
92
|
+
emit('update:modelValue', val)
|
|
93
|
+
return
|
|
94
|
+
}
|
|
87
95
|
if (!props.field.id) return
|
|
88
96
|
const data = setFieldData(props.field.id, val)
|
|
89
97
|
emit('update:modelValue', data)
|
|
90
98
|
},
|
|
91
99
|
get: () => {
|
|
92
100
|
if (props.field.id) return getFieldData(props.modelValue, props.field.id)
|
|
101
|
+
if (isForm) return props.modelValue
|
|
93
102
|
return props.field.defaultValue ?? ''
|
|
94
103
|
},
|
|
95
104
|
})
|
|
@@ -8,7 +8,6 @@ import type {
|
|
|
8
8
|
Field,
|
|
9
9
|
} from '@bagelink/vue'
|
|
10
10
|
import { BglForm, Btn } from '@bagelink/vue'
|
|
11
|
-
import Card from '../Card.vue'
|
|
12
11
|
|
|
13
12
|
const props = withDefaults(
|
|
14
13
|
defineProps<{
|
|
@@ -54,21 +53,21 @@ function addItem() {
|
|
|
54
53
|
emitValue()
|
|
55
54
|
}
|
|
56
55
|
|
|
57
|
-
const computedField = $computed(
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
) as Field<Record<string, any>>
|
|
56
|
+
// const computedField = $computed(
|
|
57
|
+
// () => ({
|
|
58
|
+
// label: props.label,
|
|
59
|
+
// placeholder: props.placeholder,
|
|
60
|
+
// children: props.children,
|
|
61
|
+
// class: props.class,
|
|
62
|
+
// attrs: props.attrs,
|
|
63
|
+
// required: props.required,
|
|
64
|
+
// disabled: props.disabled,
|
|
65
|
+
// helptext: props.helptext,
|
|
66
|
+
// options: props.options,
|
|
67
|
+
// defaultValue: props.defaultValue,
|
|
68
|
+
// $el: props.el,
|
|
69
|
+
// }) as Field<T>
|
|
70
|
+
// ) as Field<Record<string, any>>
|
|
72
71
|
</script>
|
|
73
72
|
|
|
74
73
|
<template>
|
|
@@ -76,8 +75,8 @@ const computedField = $computed(
|
|
|
76
75
|
<p class="label mb-05">
|
|
77
76
|
{{ label }}
|
|
78
77
|
</p>
|
|
79
|
-
<div>
|
|
80
|
-
<
|
|
78
|
+
<div class="-ms-05 ps-05 border-start">
|
|
79
|
+
<div v-for="(_, i) in data" :key="i" outline thin class="mb-05 itemBox transition p-05">
|
|
81
80
|
<BglForm v-if="schema" v-model="data[i]" :schema="schema" @update:model-value="emitValue" />
|
|
82
81
|
<Btn
|
|
83
82
|
v-if="props.delete"
|
|
@@ -88,16 +87,25 @@ const computedField = $computed(
|
|
|
88
87
|
flat
|
|
89
88
|
@click="deleteItem(i)"
|
|
90
89
|
/>
|
|
91
|
-
</
|
|
92
|
-
<Btn v-if="add" icon="add" color="gray" class="
|
|
90
|
+
</div>
|
|
91
|
+
<Btn v-if="add" thin icon="add" color="gray" class="txt12" @click="addItem">
|
|
93
92
|
<p>Add {{ label }}</p>
|
|
94
93
|
</Btn>
|
|
95
94
|
</div>
|
|
96
95
|
</div>
|
|
97
96
|
</template>
|
|
98
97
|
|
|
99
|
-
<style
|
|
100
|
-
.itemBox
|
|
101
|
-
|
|
98
|
+
<style>
|
|
99
|
+
.itemBox{
|
|
100
|
+
/* border-top: 2px solid var(--bgl-gray); */
|
|
101
|
+
/* border-bottom: 2px solid var(--bgl-gray); */
|
|
102
|
+
background: var(--input-bg);
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.itemBox .bagel-input input,
|
|
106
|
+
.itemBox .bagel-input textarea,
|
|
107
|
+
.itemBox .bagel-input select,
|
|
108
|
+
.itemBox .custom-select .input {
|
|
109
|
+
background: var(--bgl-white) !important;
|
|
102
110
|
}
|
|
103
111
|
</style>
|
|
@@ -1,110 +1,175 @@
|
|
|
1
|
-
<script lang="ts"
|
|
1
|
+
<script setup lang="ts">
|
|
2
2
|
import { watch } from 'vue'
|
|
3
3
|
|
|
4
|
-
interface
|
|
5
|
-
min
|
|
6
|
-
max
|
|
4
|
+
interface props {
|
|
5
|
+
min: number
|
|
6
|
+
max: number
|
|
7
|
+
modelValue: number | [number, number]
|
|
7
8
|
step?: number
|
|
9
|
+
required?: boolean
|
|
10
|
+
label?: string
|
|
8
11
|
disabled?: boolean
|
|
9
12
|
id?: string
|
|
10
|
-
|
|
11
|
-
required?: boolean
|
|
12
|
-
thickness?: string
|
|
13
|
+
rtl?: boolean
|
|
13
14
|
}
|
|
14
|
-
const { min, max, step, thickness = '8px' } = defineProps<RangeInputProps>()
|
|
15
|
-
const val = defineModel<number>({ default: 0 })
|
|
16
|
-
const range = $ref<HTMLInputElement>()
|
|
17
|
-
|
|
18
|
-
const direction = $computed(() => {
|
|
19
|
-
if (!range) return 'ltr'
|
|
20
|
-
const parent = range.parentElement
|
|
21
|
-
return getComputedStyle(parent!).direction
|
|
22
|
-
})
|
|
23
15
|
|
|
24
|
-
const
|
|
25
|
-
const minVal = min ?? 0
|
|
26
|
-
const maxVal = max ?? 100
|
|
27
|
-
const percentage = ((val.value - minVal) / (maxVal - minVal)) * 100
|
|
16
|
+
const { min = 0, max = 100, step = 1, modelValue, label, disabled, id, rtl } = defineProps<props>()
|
|
28
17
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
18
|
+
const emit = defineEmits(['update:modelValue'])
|
|
19
|
+
|
|
20
|
+
const isRange = $computed(() => Array.isArray(modelValue))
|
|
21
|
+
|
|
22
|
+
let from = $ref<number>(min)
|
|
23
|
+
let to = $ref<number>(max)
|
|
24
|
+
|
|
25
|
+
const validFrom = $computed(() => Math.min(Math.max(from, min), to)) as number
|
|
26
|
+
const validTo = $computed(() => Math.max(Math.min(to, max), from)) as number
|
|
34
27
|
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
28
|
+
function emitValue() {
|
|
29
|
+
emit('update:modelValue', isRange ? [validFrom, validTo] : validFrom)
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
watch(() => validFrom, (newVal) => {
|
|
33
|
+
if (from !== newVal) from = newVal
|
|
34
|
+
})
|
|
35
|
+
watch(() => validTo, (newVal) => {
|
|
36
|
+
if (to !== newVal) to = newVal
|
|
38
37
|
})
|
|
39
38
|
|
|
40
|
-
const
|
|
41
|
-
|
|
39
|
+
const fromPercentage = $computed(() => ((validFrom - min) / (max - min)) * 100)
|
|
40
|
+
const toPercentage = $computed(() => ((validTo - min) / (max - min)) * 100)
|
|
41
|
+
|
|
42
|
+
const rangeStyle = $computed(() => {
|
|
43
|
+
const width = ((validTo - validFrom) / (max - min)) * 100
|
|
44
|
+
if (rtl || isRange) return { left: `${fromPercentage}%`, width: `${width}%` }
|
|
45
|
+
return { right: `${width}%`, width: `${fromPercentage}%` }
|
|
42
46
|
})
|
|
43
47
|
</script>
|
|
44
48
|
|
|
45
49
|
<template>
|
|
46
|
-
<div
|
|
47
|
-
<
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
50
|
+
<div>
|
|
51
|
+
<label class="label">{{ label }}</label>
|
|
52
|
+
<div class="range-slider relative w-100">
|
|
53
|
+
<input
|
|
54
|
+
:id="id"
|
|
55
|
+
v-model="from"
|
|
56
|
+
class="from"
|
|
57
|
+
type="range"
|
|
58
|
+
:min="min"
|
|
59
|
+
:max="max"
|
|
60
|
+
:step="step"
|
|
61
|
+
:required="required"
|
|
62
|
+
:disabled="disabled"
|
|
63
|
+
aria-label="Minimum value"
|
|
64
|
+
@change="emitValue"
|
|
65
|
+
>
|
|
66
|
+
<input
|
|
67
|
+
v-if="isRange"
|
|
68
|
+
v-model="to"
|
|
69
|
+
class="to"
|
|
70
|
+
type="range"
|
|
71
|
+
:min="min"
|
|
72
|
+
:max="max"
|
|
73
|
+
:step="step"
|
|
74
|
+
:required="required"
|
|
75
|
+
:disabled="disabled"
|
|
76
|
+
aria-label="Maximum value"
|
|
77
|
+
@change="emitValue"
|
|
78
|
+
>
|
|
79
|
+
<div class="track absolute pointer-events-none overflow-hidden round">
|
|
80
|
+
<div
|
|
81
|
+
class="active-range absolute h-100 pointer-events-none bg-primary"
|
|
82
|
+
:style="rangeStyle"
|
|
83
|
+
/>
|
|
84
|
+
</div>
|
|
85
|
+
<p
|
|
86
|
+
v-if="from !== min"
|
|
87
|
+
class="txt-center txt-12 range-slider-position-txt absolute line-height-1 opacity-0 "
|
|
88
|
+
:style="{ marginInlineStart: `calc(${fromPercentage}% - 4px)` }"
|
|
89
|
+
>
|
|
90
|
+
<span>
|
|
91
|
+
{{ from }}
|
|
92
|
+
</span>
|
|
93
|
+
</p>
|
|
94
|
+
<p
|
|
95
|
+
v-if="isRange && to !== max"
|
|
96
|
+
class="txt-center txt-12 range-slider-position-txt opacity-0 line-height-1 absolute"
|
|
97
|
+
:style="{ marginInlineStart: `calc(${toPercentage}% - 12px)` }"
|
|
98
|
+
>
|
|
99
|
+
<span>
|
|
100
|
+
{{ to }}
|
|
101
|
+
</span>
|
|
102
|
+
</p>
|
|
103
|
+
</div>
|
|
104
|
+
<p class="txt-center txt-14 range-slider-txt flex space-between opacity-4 mx-05">
|
|
105
|
+
<span>
|
|
106
|
+
{{ min }}
|
|
107
|
+
</span>
|
|
108
|
+
<span>
|
|
109
|
+
{{ max }}
|
|
110
|
+
</span>
|
|
64
111
|
</p>
|
|
65
112
|
</div>
|
|
66
113
|
</template>
|
|
67
114
|
|
|
68
115
|
<style scoped>
|
|
69
|
-
.range-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
116
|
+
.range-slider-position-txt{
|
|
117
|
+
top: calc(var(--bgl-range-thumb-size) / 2 ) ;
|
|
118
|
+
transition: transform 0.1s, opacity 0.5s;
|
|
119
|
+
transform: scale(0.5);
|
|
120
|
+
}
|
|
121
|
+
.range-slider:hover .range-slider-position-txt{
|
|
122
|
+
opacity: 1;
|
|
123
|
+
transform: scale(1);
|
|
124
|
+
}
|
|
125
|
+
.range-slider {
|
|
126
|
+
height: var(--bgl-range-track-size);
|
|
127
|
+
display: flex;
|
|
128
|
+
align-items: center;
|
|
129
|
+
margin-top: calc(var(--bgl-range-thumb-size) / 2 + 0.5rem) ;
|
|
130
|
+
}
|
|
131
|
+
.range-slider-txt{
|
|
132
|
+
margin-top: calc(var(--bgl-range-thumb-size) / 2) !important;
|
|
75
133
|
}
|
|
76
134
|
|
|
77
|
-
|
|
78
|
-
|
|
135
|
+
input[type="range"] {
|
|
136
|
+
position: absolute;
|
|
137
|
+
width: 100%;
|
|
138
|
+
height: 100%;
|
|
139
|
+
height: var(--bgl-range-thumb-size);
|
|
140
|
+
background: transparent;
|
|
141
|
+
pointer-events: none;
|
|
79
142
|
appearance: none;
|
|
80
|
-
|
|
81
|
-
margin-top: 0;
|
|
82
|
-
width: 16px;
|
|
83
|
-
height: 16px;
|
|
84
|
-
background: var(--bgl-primary);
|
|
85
|
-
border: 1px solid var(--input-bg);
|
|
86
|
-
border-radius: 50%;
|
|
87
|
-
cursor: pointer;
|
|
143
|
+
margin: 0;
|
|
88
144
|
}
|
|
89
145
|
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
146
|
+
input[type="range"]::-webkit-slider-thumb {
|
|
147
|
+
pointer-events: all;
|
|
148
|
+
appearance: none;
|
|
149
|
+
width: var(--bgl-range-thumb-size);
|
|
150
|
+
height: var(--bgl-range-thumb-size);
|
|
151
|
+
background: var(--bgl-white);
|
|
96
152
|
border-radius: 50%;
|
|
153
|
+
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
|
|
154
|
+
position: relative;
|
|
155
|
+
z-index: 2;
|
|
97
156
|
cursor: pointer;
|
|
157
|
+
transition: var(--bgl-transition);
|
|
158
|
+
}
|
|
159
|
+
input[type="range"]::-webkit-slider-thumb:hover {
|
|
160
|
+
box-shadow: 0 0 0 calc(var(--bgl-range-thumb-size) / 2) var(--bgl-primary-tint);
|
|
161
|
+
filter: brightness(90%);
|
|
98
162
|
}
|
|
99
163
|
|
|
100
|
-
|
|
101
|
-
|
|
164
|
+
input[type="range"]:focus::-webkit-slider-thumb {
|
|
165
|
+
outline: none;
|
|
166
|
+
box-shadow: 0 0 0 calc(var(--bgl-range-thumb-size) / 2.2) var(--bgl-primary-tint);
|
|
102
167
|
}
|
|
103
168
|
|
|
104
|
-
.
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
169
|
+
.track {
|
|
170
|
+
height: var(--bgl-range-track-height);
|
|
171
|
+
background: var(--bgl-bg);
|
|
172
|
+
margin-inline-start: calc(var(--bgl-range-thumb-size) / 2);
|
|
173
|
+
width: calc(100% - var(--bgl-range-thumb-size));
|
|
109
174
|
}
|
|
110
175
|
</style>
|
|
@@ -50,7 +50,7 @@ watch(() => editor.state.content, (newValue) => {
|
|
|
50
50
|
</script>
|
|
51
51
|
|
|
52
52
|
<template>
|
|
53
|
-
<div class="rich-text-editor rounded pt-05 px-05 pb-075" :class="{ 'fullscreen-mode': editor.state.isFullscreen }">
|
|
53
|
+
<div class="rich-text-editor rounded pt-05 px-05 pb-075 mb-05" :class="{ 'fullscreen-mode': editor.state.isFullscreen }">
|
|
54
54
|
<Toolbar
|
|
55
55
|
v-if="editor.state.hasInit" :config="toolbarConfig" :selectedStyles="editor.state.selectedStyles"
|
|
56
56
|
@action="editor.handleToolbarAction"
|
|
@@ -148,4 +148,4 @@ line-height: 1.65;
|
|
|
148
148
|
.fullscreen-mode .code-editor{
|
|
149
149
|
height: 100% !important;
|
|
150
150
|
}
|
|
151
|
-
</style
|
|
151
|
+
</style>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
|
-
import {
|
|
2
|
+
import type { MaterialIcons } from '@bagelink/vue'
|
|
3
3
|
import { nextTick, onBeforeUnmount, onMounted, ref, watch } from 'vue'
|
|
4
4
|
import { useTabs } from './tabsManager'
|
|
5
5
|
|
|
@@ -80,17 +80,19 @@ onBeforeUnmount(() => {
|
|
|
80
80
|
ref="tabsWrap" class="grid auto-flow-columns relative fit-content bgl_tabs_wrap overflow-hidden"
|
|
81
81
|
:class="{ 'bgl_flat-tabs': flat, 'bgl_vertical-tabs': vertical }"
|
|
82
82
|
>
|
|
83
|
-
<
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
83
|
+
<slot name="tabs" v-bind="{ selectTab, isActive, tabLabel, tabs }">
|
|
84
|
+
<button
|
|
85
|
+
v-for="(tab, i) in props.tabs"
|
|
86
|
+
:key="i"
|
|
87
|
+
type="button"
|
|
88
|
+
:class="{ active: isActive(tab) }"
|
|
89
|
+
class="bgl_tab relative z-1"
|
|
90
|
+
@click="selectTab(tab)"
|
|
91
|
+
>
|
|
92
|
+
<Icon v-if="typeof tab !== 'string' && tab.icon" :icon="tab.icon" />
|
|
93
|
+
{{ tabLabel(tab) }}
|
|
94
|
+
</button>
|
|
95
|
+
</slot>
|
|
94
96
|
</div>
|
|
95
97
|
</template>
|
|
96
98
|
|
|
@@ -11,7 +11,6 @@ let clickHandler: ((e: MouseEvent) => any) = (_e: MouseEvent) => void 0
|
|
|
11
11
|
|
|
12
12
|
const lightboxDirective: Directive = {
|
|
13
13
|
mounted(el: HTMLElement, binding) {
|
|
14
|
-
el.classList.add('hover')
|
|
15
14
|
const item = bindingToItem(binding, el)
|
|
16
15
|
groupHandler(item)
|
|
17
16
|
clickHandler = (e: MouseEvent) => { openClickHandler(e, el, binding) }
|
|
@@ -497,6 +497,10 @@
|
|
|
497
497
|
box-shadow: 0 0 20px 0 var(--bgl-shadow) !important;
|
|
498
498
|
}
|
|
499
499
|
|
|
500
|
+
.shadow-none {
|
|
501
|
+
box-shadow: none !important;
|
|
502
|
+
}
|
|
503
|
+
|
|
500
504
|
.shadow-30 {
|
|
501
505
|
box-shadow: 0 0 30px 0 var(--bgl-shadow) !important;
|
|
502
506
|
}
|
|
@@ -1151,6 +1155,10 @@
|
|
|
1151
1155
|
box-shadow: 0 0 20px 0 var(--bgl-shadow) !important;
|
|
1152
1156
|
}
|
|
1153
1157
|
|
|
1158
|
+
.m_shadow-none {
|
|
1159
|
+
box-shadow: none !important;
|
|
1160
|
+
}
|
|
1161
|
+
|
|
1154
1162
|
.m_shadow-30 {
|
|
1155
1163
|
box-shadow: 0 0 30px 0 var(--bgl-shadow) !important;
|
|
1156
1164
|
}
|