@bagelink/vue 0.0.302 → 0.0.308
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/Alert.vue.d.ts +1 -0
- package/dist/components/Alert.vue.d.ts.map +1 -1
- package/dist/components/Btn.vue.d.ts.map +1 -1
- package/dist/components/Card.vue.d.ts +6 -2
- package/dist/components/Card.vue.d.ts.map +1 -1
- package/dist/components/Carousel.vue.d.ts +64 -0
- package/dist/components/Carousel.vue.d.ts.map +1 -0
- package/dist/components/ListView.vue.d.ts +2 -26
- package/dist/components/ListView.vue.d.ts.map +1 -1
- package/dist/components/Modal.vue.d.ts +0 -1
- package/dist/components/Modal.vue.d.ts.map +1 -1
- package/dist/components/ModalForm.vue.d.ts.map +1 -1
- package/dist/components/NavBar.vue.d.ts +1 -8
- package/dist/components/NavBar.vue.d.ts.map +1 -1
- package/dist/components/PageTitle.vue.d.ts.map +1 -1
- package/dist/components/Popover.vue.d.ts +10 -0
- package/dist/components/Popover.vue.d.ts.map +1 -0
- package/dist/components/TableSchema.vue.d.ts.map +1 -1
- package/dist/components/form/BglForm.vue.d.ts.map +1 -1
- package/dist/components/form/ItemRef.vue.d.ts +0 -1
- package/dist/components/form/ItemRef.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/DateInput.vue.d.ts +0 -1
- package/dist/components/form/inputs/SelectField.vue.d.ts +4 -1
- package/dist/components/form/inputs/SelectField.vue.d.ts.map +1 -1
- package/dist/components/index.d.ts +1 -1
- package/dist/components/index.d.ts.map +1 -1
- package/dist/index.cjs +355 -211
- package/dist/index.d.ts +0 -1
- package/dist/index.mjs +356 -212
- package/dist/style.css +1166 -859
- package/dist/types/NavLink.d.ts +9 -0
- package/dist/types/NavLink.d.ts.map +1 -0
- package/dist/types/index.d.ts +1 -1
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/materialIcon.d.ts +2 -0
- package/dist/types/materialIcon.d.ts.map +1 -0
- package/package.json +1 -1
- package/src/components/Alert.vue +37 -16
- package/src/components/Avatar.vue +1 -1
- package/src/components/Badge.vue +50 -5
- package/src/components/Btn.vue +137 -135
- package/src/components/Card.vue +46 -3
- package/src/components/Carousel.vue +258 -0
- package/src/components/ListItem.vue +1 -1
- package/src/components/ListView.vue +47 -38
- package/src/components/Modal.vue +38 -2
- package/src/components/ModalForm.vue +4 -2
- package/src/components/NavBar.vue +42 -67
- package/src/components/PageTitle.vue +33 -11
- package/src/components/TabbedLayout.vue +1 -1
- package/src/components/TableSchema.vue +67 -77
- package/src/components/index.ts +1 -1
- package/src/components/whatsapp/form/MsgTemplate.vue +1 -1
- package/src/styles/bagel.css +11 -2
- package/src/styles/buttons.css +1 -0
- package/src/styles/inputs.css +91 -92
- package/src/styles/layout.css +337 -18
- package/src/styles/loginCard.css +48 -0
- package/src/styles/text.css +27 -11
- package/src/styles/theme.css +226 -515
- package/src/styles/transitions.css +18 -0
- package/src/types/NavLink.ts +9 -0
- package/src/types/index.ts +1 -1
- package/dist/components/Drop.vue.d.ts +0 -34
- package/dist/components/Drop.vue.d.ts.map +0 -1
- package/dist/components/FileUploader.vue.d.ts +0 -60
- package/dist/components/FileUploader.vue.d.ts.map +0 -1
- package/src/components/LangText.vue +0 -32
|
@@ -2,13 +2,9 @@
|
|
|
2
2
|
<div class="table-list-wrap h-100">
|
|
3
3
|
<table class="infinite-wrapper">
|
|
4
4
|
<thead class="row first-row">
|
|
5
|
-
<th
|
|
6
|
-
class="col"
|
|
7
|
-
v-for="field in computedSchema"
|
|
8
|
-
:key="field.id" @click="sort(field?.id || '')"
|
|
9
|
-
>
|
|
5
|
+
<th class="col" v-for="field in computedSchema" :key="field.id" @click="sort(field?.id || '')">
|
|
10
6
|
<div class="flex">
|
|
11
|
-
{{ field.id }}
|
|
7
|
+
{{ field.label || keyToLabel(field.id) }}
|
|
12
8
|
<div class="list-arrows" :class="{ sorted: sortField === field.id }">
|
|
13
9
|
<MaterialIcon :class="{ desc: sortDirection === 'DESC' }" icon="keyboard_arrow_up" />
|
|
14
10
|
</div>
|
|
@@ -16,12 +12,7 @@
|
|
|
16
12
|
</th>
|
|
17
13
|
</thead>
|
|
18
14
|
<tbody ref="infinite" class="rows infinite" :class="{ loading }">
|
|
19
|
-
<tr
|
|
20
|
-
v-for="row in data"
|
|
21
|
-
:key="row.id"
|
|
22
|
-
@click="selectElement(row)"
|
|
23
|
-
class="row row-item position-relative"
|
|
24
|
-
>
|
|
15
|
+
<tr v-for="row in data" :key="row.id" @click="selectElement(row)" class="row row-item position-relative">
|
|
25
16
|
<td class="col" v-for="field in computedSchema" :key="`${field.id}-${row.id}`">
|
|
26
17
|
<slot v-if="field.id && slots[field.id]" :name="field.id" :row="row" :field="field" />
|
|
27
18
|
<div v-else>
|
|
@@ -40,14 +31,15 @@ import {
|
|
|
40
31
|
type BglFormSchemaT,
|
|
41
32
|
MaterialIcon,
|
|
42
33
|
BglField,
|
|
34
|
+
keyToLabel,
|
|
43
35
|
} from '@bagelink/vue';
|
|
44
36
|
|
|
45
37
|
const slots = useSlots();
|
|
46
38
|
const loading = $ref(true);
|
|
47
39
|
|
|
48
40
|
const props = defineProps<{
|
|
49
|
-
|
|
50
|
-
|
|
41
|
+
data: any[];
|
|
42
|
+
schema: BglFormSchemaT | (() => BglFormSchemaT);
|
|
51
43
|
}>();
|
|
52
44
|
|
|
53
45
|
const computedSchema = $computed(() => {
|
|
@@ -78,128 +70,126 @@ const sort = (fieldname: string) => {
|
|
|
78
70
|
|
|
79
71
|
<style scoped>
|
|
80
72
|
.list-arrows {
|
|
81
|
-
|
|
73
|
+
opacity: 0;
|
|
82
74
|
}
|
|
83
75
|
|
|
84
76
|
.list-arrows .bgl_icon-font {
|
|
85
|
-
|
|
77
|
+
transition: all ease-in-out 0.2s;
|
|
86
78
|
}
|
|
87
79
|
|
|
88
80
|
.list-arrows.sorted {
|
|
89
|
-
|
|
81
|
+
opacity: 1;
|
|
90
82
|
}
|
|
91
83
|
|
|
92
84
|
.col img {
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
85
|
+
height: 35px;
|
|
86
|
+
margin-top: -14px;
|
|
87
|
+
margin-bottom: -14px;
|
|
88
|
+
border-radius: 5px;
|
|
97
89
|
}
|
|
98
90
|
|
|
99
91
|
.list-arrows.sorted .desc {
|
|
100
|
-
|
|
92
|
+
transform: rotate(180deg);
|
|
101
93
|
}
|
|
102
94
|
|
|
103
95
|
table {
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
96
|
+
border-collapse: separate;
|
|
97
|
+
border-spacing: 0 15px;
|
|
98
|
+
border-collapse: collapse;
|
|
107
99
|
}
|
|
108
100
|
|
|
109
101
|
th {
|
|
110
|
-
|
|
102
|
+
font-weight: 400;
|
|
111
103
|
}
|
|
112
104
|
|
|
113
105
|
.row {
|
|
114
|
-
|
|
115
|
-
|
|
106
|
+
border-bottom: 1px solid var(--border-color);
|
|
107
|
+
cursor: pointer;
|
|
116
108
|
}
|
|
117
109
|
|
|
118
110
|
.row.first-row {
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
111
|
+
font-size: 0.8rem;
|
|
112
|
+
color: var(--bgl-black-tint);
|
|
113
|
+
position: sticky;
|
|
114
|
+
top: 0;
|
|
115
|
+
z-index: 2;
|
|
116
|
+
background: var(--bgl-white);
|
|
117
|
+
height: 50px;
|
|
118
|
+
vertical-align: bottom;
|
|
127
119
|
}
|
|
128
120
|
|
|
129
121
|
.row.first-row::after {
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
122
|
+
content: "";
|
|
123
|
+
border-bottom: 1px solid var(--border-color);
|
|
124
|
+
position: absolute;
|
|
125
|
+
left: 0;
|
|
126
|
+
right: 0;
|
|
127
|
+
bottom: -1px;
|
|
136
128
|
}
|
|
137
129
|
|
|
138
130
|
.first-row .col {
|
|
139
|
-
|
|
140
|
-
|
|
131
|
+
cursor: pointer;
|
|
132
|
+
background: var(--bgl-white);
|
|
141
133
|
}
|
|
142
134
|
|
|
143
135
|
.col {
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
padding-right: 1rem;
|
|
150
|
-
align-items: center;
|
|
136
|
+
white-space: nowrap;
|
|
137
|
+
padding: 0.75rem 0.5rem;
|
|
138
|
+
transition: var(--bgl-transition);
|
|
139
|
+
line-height: 1;
|
|
140
|
+
align-items: center;
|
|
151
141
|
}
|
|
152
142
|
|
|
153
143
|
.col>div {
|
|
154
|
-
|
|
155
|
-
|
|
144
|
+
display: flex;
|
|
145
|
+
gap: 0.5rem;
|
|
156
146
|
}
|
|
157
147
|
|
|
158
148
|
.max-col-width {
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
149
|
+
max-width: 30vw;
|
|
150
|
+
overflow: hidden;
|
|
151
|
+
text-overflow: ellipsis;
|
|
162
152
|
}
|
|
163
153
|
|
|
164
154
|
.col.check .bgl_icon-font {
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
155
|
+
border-radius: 100%;
|
|
156
|
+
background: var(--bgl-blue-20);
|
|
157
|
+
color: var(--bgl-primary);
|
|
158
|
+
width: 20px;
|
|
159
|
+
height: 20px;
|
|
160
|
+
display: flex;
|
|
161
|
+
align-items: center;
|
|
162
|
+
justify-content: center;
|
|
163
|
+
margin-top: -2px;
|
|
174
164
|
}
|
|
175
165
|
|
|
176
166
|
.rows {
|
|
177
|
-
|
|
167
|
+
font-size: 0.8125em;
|
|
178
168
|
}
|
|
179
169
|
|
|
180
170
|
.table-list {
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
171
|
+
height: 100%;
|
|
172
|
+
position: relative;
|
|
173
|
+
padding-left: 0 !important;
|
|
174
|
+
padding-right: 0 !important;
|
|
175
|
+
overflow: auto;
|
|
186
176
|
}
|
|
187
177
|
|
|
188
178
|
.BagelTable .table-list {
|
|
189
|
-
|
|
179
|
+
overflow: unset;
|
|
190
180
|
}
|
|
191
181
|
|
|
192
182
|
.row-item {
|
|
193
|
-
|
|
194
|
-
|
|
183
|
+
height: 50px;
|
|
184
|
+
transition: all 200ms ease;
|
|
195
185
|
}
|
|
196
186
|
|
|
197
187
|
.row-item:hover {
|
|
198
|
-
|
|
188
|
+
background: var(--bgl-gray-light);
|
|
199
189
|
}
|
|
200
190
|
|
|
201
191
|
.infinite-wrapper {
|
|
202
|
-
|
|
203
|
-
|
|
192
|
+
overflow-y: auto;
|
|
193
|
+
width: 100%;
|
|
204
194
|
}
|
|
205
195
|
</style>
|
package/src/components/index.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
export { default as LangText } from './LangText.vue';
|
|
2
1
|
export { default as RTXEditor } from './RTXEditor.vue';
|
|
3
2
|
export { default as MaterialIcon } from './MaterialIcon.vue';
|
|
4
3
|
export { default as Icon } from './MaterialIcon.vue';
|
|
@@ -24,6 +23,7 @@ export { default as ComboBox } from './ComboBox.vue';
|
|
|
24
23
|
export { default as Alert } from './Alert.vue';
|
|
25
24
|
export { default as Badge } from './Badge.vue';
|
|
26
25
|
export { default as BglVideo } from './BglVideo.vue';
|
|
26
|
+
export { default as Carousel } from './Carousel.vue';
|
|
27
27
|
|
|
28
28
|
export * from './form';
|
|
29
29
|
export * from './dashboard';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="main-content">
|
|
3
3
|
<PageTitle>Whatsapp Template</PageTitle>
|
|
4
|
-
<div class="view-wrapper
|
|
4
|
+
<div class="view-wrapper bgl_card thin">
|
|
5
5
|
<div class="whatsapp-wrap">
|
|
6
6
|
<div class="create-template-form">
|
|
7
7
|
<BagelForm :schema="whatsappTemplateSchema" v-model="localWhatsappData" @submit="upsertTemplate" />
|
package/src/styles/bagel.css
CHANGED
|
@@ -3,9 +3,10 @@
|
|
|
3
3
|
@import "buttons.css";
|
|
4
4
|
@import "text.css";
|
|
5
5
|
@import "scrollbar.css";
|
|
6
|
+
@import "transitions.css";
|
|
7
|
+
@import "loginCard.css";
|
|
6
8
|
@import "theme.css";
|
|
7
9
|
@import "dark.css";
|
|
8
|
-
@import "transitions.css";
|
|
9
10
|
@import "./fonts/Ploni.css";
|
|
10
11
|
|
|
11
12
|
:root {
|
|
@@ -14,12 +15,20 @@
|
|
|
14
15
|
}
|
|
15
16
|
|
|
16
17
|
body {
|
|
17
|
-
width: 100vw;
|
|
18
|
+
max-width: 100vw;
|
|
18
19
|
height: 100vh;
|
|
19
20
|
padding: 0;
|
|
20
21
|
margin: 0;
|
|
21
22
|
}
|
|
22
23
|
|
|
24
|
+
.grid>* {
|
|
25
|
+
min-height: 0;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
* {
|
|
29
|
+
box-sizing: border-box;
|
|
30
|
+
}
|
|
31
|
+
|
|
23
32
|
@media (min-width: 992px) {}
|
|
24
33
|
|
|
25
34
|
@media screen and (max-width: 910px) {
|
package/src/styles/buttons.css
CHANGED
package/src/styles/inputs.css
CHANGED
|
@@ -1,212 +1,211 @@
|
|
|
1
1
|
input,
|
|
2
2
|
textarea,
|
|
3
3
|
select {
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
font-family: inherit;
|
|
5
|
+
width: 100%;
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
.bagel-input {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
9
|
+
position: relative;
|
|
10
|
+
display: flex;
|
|
11
|
+
flex-direction: column;
|
|
12
|
+
text-align: start;
|
|
13
|
+
margin-bottom: 0.5rem;
|
|
14
|
+
width: 100%;
|
|
15
|
+
color: var(--bgl-black);
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
.bagel-input::placeholder .bagel-input label {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
19
|
+
display: block;
|
|
20
|
+
font-size: var(--label-font-size);
|
|
21
|
+
margin-bottom: 2px;
|
|
22
|
+
line-height: 1.3;
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
.bagel-input::placeholder {
|
|
26
|
-
|
|
26
|
+
color: var(--placeholder-color);
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
.bagel-input label {
|
|
30
|
-
|
|
30
|
+
color: var(--label-color);
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
.bagel-input input,
|
|
34
34
|
.bagel-input select,
|
|
35
35
|
.custom-select .input {
|
|
36
|
-
|
|
37
|
-
|
|
36
|
+
height: var(--input-height);
|
|
37
|
+
font-size: var(--input-font-size);
|
|
38
38
|
}
|
|
39
39
|
|
|
40
40
|
.bagel-input input,
|
|
41
41
|
.bagel-input textarea,
|
|
42
42
|
.bagel-input select,
|
|
43
43
|
.custom-select .input {
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
44
|
+
background: var(--input-bg);
|
|
45
|
+
border: none;
|
|
46
|
+
padding: 0.7rem;
|
|
47
|
+
border-radius: var(--input-border-radius);
|
|
48
|
+
color: var(--input-color);
|
|
49
|
+
min-width: calc(var(--input-height) * 3);
|
|
50
|
+
width: 100%;
|
|
51
51
|
}
|
|
52
52
|
|
|
53
53
|
.bagel-input input::placeholder,
|
|
54
54
|
.bagel-input textarea::placeholder,
|
|
55
55
|
.bagel-input select::placeholder,
|
|
56
56
|
.custom-select .input::placeholder {
|
|
57
|
-
|
|
57
|
+
color: var(--placeholder-color);
|
|
58
58
|
}
|
|
59
59
|
|
|
60
60
|
.bagel-input.search-wrap {
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
61
|
+
display: flex;
|
|
62
|
+
flex-direction: row;
|
|
63
|
+
align-items: center;
|
|
64
64
|
}
|
|
65
65
|
|
|
66
66
|
.bagel-input.search-wrap input {
|
|
67
|
-
|
|
67
|
+
padding-inline-end: 2rem;
|
|
68
68
|
}
|
|
69
69
|
|
|
70
70
|
.bagel-input.search-wrap .bgl_icon-font {
|
|
71
|
-
|
|
71
|
+
margin-inline-start: -1.75rem;
|
|
72
72
|
}
|
|
73
73
|
|
|
74
74
|
.bagel-input select {
|
|
75
|
-
|
|
75
|
+
height: var(--input-height);
|
|
76
76
|
}
|
|
77
77
|
|
|
78
78
|
.bagel-input textarea {
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
79
|
+
resize: vertical;
|
|
80
|
+
min-height: calc(var(--input-height) * 3);
|
|
81
|
+
line-height: 1.5;
|
|
82
82
|
}
|
|
83
83
|
|
|
84
84
|
.bagel-input.wider input {
|
|
85
|
-
|
|
85
|
+
min-width: 320px;
|
|
86
86
|
}
|
|
87
87
|
|
|
88
88
|
.bagel-input input[type="radio"] {
|
|
89
|
-
|
|
90
|
-
|
|
89
|
+
padding: 0;
|
|
90
|
+
width: fit-content;
|
|
91
91
|
}
|
|
92
92
|
|
|
93
93
|
.bagel-input:focus-within label {
|
|
94
|
-
|
|
94
|
+
color: var(--bgl-primary);
|
|
95
95
|
}
|
|
96
96
|
|
|
97
97
|
.bagel-input select.no-edit,
|
|
98
98
|
.bagel-input input.no-edit,
|
|
99
99
|
.bagel-input textarea.no-edit,
|
|
100
100
|
.bagel-input .switch.no-edit {
|
|
101
|
-
|
|
102
|
-
|
|
101
|
+
pointer-events: none;
|
|
102
|
+
outline: none;
|
|
103
103
|
}
|
|
104
104
|
|
|
105
105
|
.bagel-input label.active {
|
|
106
|
-
|
|
106
|
+
color: var(--bgl-primary);
|
|
107
107
|
}
|
|
108
108
|
|
|
109
109
|
.inline-80 {
|
|
110
|
-
|
|
111
|
-
|
|
110
|
+
display: inline-block;
|
|
111
|
+
width: 80%;
|
|
112
112
|
}
|
|
113
113
|
|
|
114
114
|
.inline-20 {
|
|
115
|
-
|
|
116
|
-
|
|
115
|
+
display: inline-block;
|
|
116
|
+
width: 20%;
|
|
117
117
|
}
|
|
118
118
|
|
|
119
119
|
.inline-10 {
|
|
120
|
-
|
|
121
|
-
|
|
120
|
+
display: inline-block;
|
|
121
|
+
width: 20%;
|
|
122
122
|
}
|
|
123
123
|
|
|
124
124
|
.inline-50 {
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
125
|
+
display: inline-block;
|
|
126
|
+
width: 49%;
|
|
127
|
+
margin: 0 0.5%;
|
|
128
128
|
}
|
|
129
129
|
|
|
130
130
|
.custom-select .input {
|
|
131
|
-
|
|
132
|
-
|
|
131
|
+
height: var(--input-height);
|
|
132
|
+
font-size: var(--input-font-size);
|
|
133
133
|
}
|
|
134
134
|
|
|
135
135
|
.custom-select .input {
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
136
|
+
background: var(--input-bg);
|
|
137
|
+
border: none;
|
|
138
|
+
padding: 0.7rem;
|
|
139
|
+
border-radius: var(--input-border-radius);
|
|
140
|
+
color: var(--input-color);
|
|
141
|
+
min-width: calc(var(--input-height) * 3);
|
|
142
|
+
width: 100%;
|
|
143
143
|
}
|
|
144
144
|
|
|
145
145
|
.input.active,
|
|
146
146
|
.bagel-input input:focus-visible,
|
|
147
147
|
.bagel-input select:focus-visible,
|
|
148
148
|
.bagel-input textarea:focus-visible {
|
|
149
|
-
|
|
150
|
-
|
|
149
|
+
outline: none;
|
|
150
|
+
box-shadow: inset 0 0 10px #00000012;
|
|
151
151
|
}
|
|
152
152
|
|
|
153
153
|
.bagel-input input[type="number"]::-webkit-inner-spin-button,
|
|
154
154
|
.bagel-input input[type="number"]::-webkit-outer-spin-button {
|
|
155
|
-
|
|
155
|
+
-webkit-appearance: none;
|
|
156
156
|
}
|
|
157
157
|
|
|
158
158
|
.label-count-0 label {
|
|
159
|
-
|
|
159
|
+
display: none;
|
|
160
160
|
}
|
|
161
161
|
|
|
162
162
|
.label-count-0 button.bgl_btn.bgl_flatBtn {
|
|
163
|
-
|
|
164
|
-
margin-right: 5px;
|
|
163
|
+
margin-right: 5px;
|
|
165
164
|
}
|
|
166
165
|
|
|
167
166
|
.label-count-0 button.bgl_btn.bgl_flatBtn:hover {
|
|
168
|
-
|
|
167
|
+
background: var(--bgl-hover-filter);
|
|
169
168
|
}
|
|
170
169
|
|
|
171
170
|
.bagel-input input[type="color"] {
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
171
|
+
padding: 0.025rem 0.05rem;
|
|
172
|
+
display: block;
|
|
173
|
+
width: var(--input-height);
|
|
174
|
+
height: var(--input-height);
|
|
175
|
+
border: none;
|
|
176
|
+
-webkit-appearance: none;
|
|
177
|
+
-moz-appearance: none;
|
|
178
|
+
appearance: none;
|
|
179
|
+
cursor: pointer;
|
|
181
180
|
}
|
|
182
181
|
|
|
183
182
|
.bagel-input input[type="color"]::-webkit-color-swatch {
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
183
|
+
border-radius: var(--input-border-radius);
|
|
184
|
+
border: none;
|
|
185
|
+
transition: box-shadow 200ms ease;
|
|
187
186
|
}
|
|
188
187
|
|
|
189
188
|
.bagel-input input[type="color"]::-moz-color-swatch {
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
189
|
+
border-radius: var(--input-border-radius);
|
|
190
|
+
border: none;
|
|
191
|
+
transition: box-shadow 200ms ease;
|
|
193
192
|
}
|
|
194
193
|
|
|
195
194
|
.bagel-input input[type="color"]::-webkit-color-swatch:hover {
|
|
196
|
-
|
|
195
|
+
box-shadow: inset 0 0 10px #00000050;
|
|
197
196
|
}
|
|
198
197
|
|
|
199
198
|
.bagel-input input[type="color"]::-moz-color-swatch:hover {
|
|
200
|
-
|
|
199
|
+
box-shadow: inset 0 0 10px #00000050;
|
|
201
200
|
}
|
|
202
201
|
|
|
203
202
|
@media screen and (max-width: 910px) {
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
}
|
|
203
|
+
.bagel-input.wider input {
|
|
204
|
+
min-width: 120px;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.bagel-input label {
|
|
208
|
+
font-size: calc(var(--input-font-size) / 1.1);
|
|
209
|
+
line-height: 1.2;
|
|
210
|
+
}
|
|
211
|
+
}
|