@dmsej108/design-system 2.2.0
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/Badge/Badge.d.ts +13 -0
- package/dist/components/Badge/Badge.d.ts.map +1 -0
- package/dist/components/Badge/index.d.ts +3 -0
- package/dist/components/Badge/index.d.ts.map +1 -0
- package/dist/components/BaseButton/BaseButton.d.ts +14 -0
- package/dist/components/BaseButton/BaseButton.d.ts.map +1 -0
- package/dist/components/BaseButton/index.d.ts +3 -0
- package/dist/components/BaseButton/index.d.ts.map +1 -0
- package/dist/components/Button/Button.d.ts +14 -0
- package/dist/components/Button/Button.d.ts.map +1 -0
- package/dist/components/Button/index.d.ts +3 -0
- package/dist/components/Button/index.d.ts.map +1 -0
- package/dist/components/Card/Card.d.ts +13 -0
- package/dist/components/Card/Card.d.ts.map +1 -0
- package/dist/components/Card/index.d.ts +3 -0
- package/dist/components/Card/index.d.ts.map +1 -0
- package/dist/components/Checkbox/Checkbox.d.ts +30 -0
- package/dist/components/Checkbox/Checkbox.d.ts.map +1 -0
- package/dist/components/Checkbox/index.d.ts +3 -0
- package/dist/components/Checkbox/index.d.ts.map +1 -0
- package/dist/components/Chip/Chip.d.ts +17 -0
- package/dist/components/Chip/Chip.d.ts.map +1 -0
- package/dist/components/Chip/index.d.ts +3 -0
- package/dist/components/Chip/index.d.ts.map +1 -0
- package/dist/components/DatePicker/DatePicker.d.ts +18 -0
- package/dist/components/DatePicker/DatePicker.d.ts.map +1 -0
- package/dist/components/DatePicker/index.d.ts +3 -0
- package/dist/components/DatePicker/index.d.ts.map +1 -0
- package/dist/components/FileInput/FileInput.d.ts +19 -0
- package/dist/components/FileInput/FileInput.d.ts.map +1 -0
- package/dist/components/FileInput/index.d.ts +3 -0
- package/dist/components/FileInput/index.d.ts.map +1 -0
- package/dist/components/Icon/Icon.d.ts +17 -0
- package/dist/components/Icon/Icon.d.ts.map +1 -0
- package/dist/components/Icon/index.d.ts +3 -0
- package/dist/components/Icon/index.d.ts.map +1 -0
- package/dist/components/Input/Input.d.ts +14 -0
- package/dist/components/Input/Input.d.ts.map +1 -0
- package/dist/components/Input/index.d.ts +3 -0
- package/dist/components/Input/index.d.ts.map +1 -0
- package/dist/components/Modal/Modal.d.ts +18 -0
- package/dist/components/Modal/Modal.d.ts.map +1 -0
- package/dist/components/Modal/index.d.ts +3 -0
- package/dist/components/Modal/index.d.ts.map +1 -0
- package/dist/components/Pagination/Pagination.d.ts +11 -0
- package/dist/components/Pagination/Pagination.d.ts.map +1 -0
- package/dist/components/Pagination/index.d.ts +3 -0
- package/dist/components/Pagination/index.d.ts.map +1 -0
- package/dist/components/Radio/Radio.d.ts +25 -0
- package/dist/components/Radio/Radio.d.ts.map +1 -0
- package/dist/components/Radio/index.d.ts +3 -0
- package/dist/components/Radio/index.d.ts.map +1 -0
- package/dist/components/Select/Select.d.ts +19 -0
- package/dist/components/Select/Select.d.ts.map +1 -0
- package/dist/components/Select/index.d.ts +3 -0
- package/dist/components/Select/index.d.ts.map +1 -0
- package/dist/components/Tab/Tab.d.ts +18 -0
- package/dist/components/Tab/Tab.d.ts.map +1 -0
- package/dist/components/Tab/index.d.ts +3 -0
- package/dist/components/Tab/index.d.ts.map +1 -0
- package/dist/components/Table/Table.d.ts +23 -0
- package/dist/components/Table/Table.d.ts.map +1 -0
- package/dist/components/Table/index.d.ts +3 -0
- package/dist/components/Table/index.d.ts.map +1 -0
- package/dist/components/Textarea/Textarea.d.ts +15 -0
- package/dist/components/Textarea/Textarea.d.ts.map +1 -0
- package/dist/components/Textarea/index.d.ts +3 -0
- package/dist/components/Textarea/index.d.ts.map +1 -0
- package/dist/components/Toast/Toast.d.ts +32 -0
- package/dist/components/Toast/Toast.d.ts.map +1 -0
- package/dist/components/Toast/index.d.ts +3 -0
- package/dist/components/Toast/index.d.ts.map +1 -0
- package/dist/components/Typography/Typography.d.ts +10 -0
- package/dist/components/Typography/Typography.d.ts.map +1 -0
- package/dist/components/Typography/index.d.ts +3 -0
- package/dist/components/Typography/index.d.ts.map +1 -0
- package/dist/index.css +1 -0
- package/dist/index.d.ts +39 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +1407 -0
- package/dist/index.js.map +1 -0
- package/package.json +76 -0
- package/src/styles/base/common.css +2060 -0
- package/src/styles/base/ellipsis.xml +1 -0
- package/src/styles/base/fonts.css +39 -0
- package/src/styles/base/layout.css +864 -0
- package/src/styles/base/reset.css +241 -0
- package/src/styles/components/breadcrumb.css +39 -0
- package/src/styles/components/button.css +423 -0
- package/src/styles/components/dashboard.css +970 -0
- package/src/styles/components/ellipsis.xml +1 -0
- package/src/styles/components/form.css +744 -0
- package/src/styles/components/loading.css +93 -0
- package/src/styles/components/login.css +405 -0
- package/src/styles/components/modal.css +218 -0
- package/src/styles/components/operate.css +85 -0
- package/src/styles/components/tab.css +80 -0
- package/src/styles/components/table.css +1024 -0
- package/src/styles/components/tree.css +284 -0
- package/src/styles/img/kb_logo.png +0 -0
- package/src/styles/index.css +18 -0
- package/src/styles/swiper.min.css +658 -0
- package/src/tokens/Tokens.stories.tsx +185 -0
- package/src/tokens/index.css +295 -0
|
@@ -0,0 +1,658 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Swiper 7.0.6
|
|
3
|
+
* Most modern mobile touch slider and framework with hardware accelerated transitions
|
|
4
|
+
* https://swiperjs.com
|
|
5
|
+
*
|
|
6
|
+
* Copyright 2014-2021 Vladimir Kharlampidi
|
|
7
|
+
*
|
|
8
|
+
* Released under the MIT License
|
|
9
|
+
*
|
|
10
|
+
* Released on: September 16, 2021
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
@font-face {
|
|
14
|
+
font-family: swiper-icons;
|
|
15
|
+
src: url('data:application/font-woff;charset=utf-8;base64, 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');
|
|
16
|
+
font-weight: 400;
|
|
17
|
+
font-style: normal
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
:root {
|
|
21
|
+
--swiper-theme-color: #007aff
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.swiper {
|
|
25
|
+
margin-left: auto;
|
|
26
|
+
margin-right: auto;
|
|
27
|
+
position: relative;
|
|
28
|
+
overflow: hidden;
|
|
29
|
+
list-style: none;
|
|
30
|
+
padding: 0;
|
|
31
|
+
z-index: 1
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.swiper-vertical>.swiper-wrapper {
|
|
35
|
+
flex-direction: column
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.swiper-wrapper {
|
|
39
|
+
position: relative;
|
|
40
|
+
width: 100%;
|
|
41
|
+
height: 100%;
|
|
42
|
+
z-index: 1;
|
|
43
|
+
display: flex;
|
|
44
|
+
transition-property: transform;
|
|
45
|
+
box-sizing: content-box
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.swiper-android .swiper-slide,
|
|
49
|
+
.swiper-wrapper {
|
|
50
|
+
transform: translate3d(0px, 0, 0)
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.swiper-pointer-events {
|
|
54
|
+
touch-action: pan-y
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.swiper-pointer-events.swiper-vertical {
|
|
58
|
+
touch-action: pan-x
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.swiper-slide {
|
|
62
|
+
flex-shrink: 0;
|
|
63
|
+
width: 100%;
|
|
64
|
+
height: 100%;
|
|
65
|
+
position: relative;
|
|
66
|
+
transition-property: transform
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.swiper-slide-invisible-blank {
|
|
70
|
+
visibility: hidden
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.swiper-autoheight,
|
|
74
|
+
.swiper-autoheight .swiper-slide {
|
|
75
|
+
height: auto
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.swiper-autoheight .swiper-wrapper {
|
|
79
|
+
align-items: flex-start;
|
|
80
|
+
transition-property: transform, height
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.swiper-3d,
|
|
84
|
+
.swiper-3d.swiper-css-mode .swiper-wrapper {
|
|
85
|
+
perspective: 1200px
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.swiper-3d .swiper-cube-shadow,
|
|
89
|
+
.swiper-3d .swiper-slide,
|
|
90
|
+
.swiper-3d .swiper-slide-shadow,
|
|
91
|
+
.swiper-3d .swiper-slide-shadow-bottom,
|
|
92
|
+
.swiper-3d .swiper-slide-shadow-left,
|
|
93
|
+
.swiper-3d .swiper-slide-shadow-right,
|
|
94
|
+
.swiper-3d .swiper-slide-shadow-top,
|
|
95
|
+
.swiper-3d .swiper-wrapper {
|
|
96
|
+
transform-style: preserve-3d
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.swiper-3d .swiper-slide-shadow,
|
|
100
|
+
.swiper-3d .swiper-slide-shadow-bottom,
|
|
101
|
+
.swiper-3d .swiper-slide-shadow-left,
|
|
102
|
+
.swiper-3d .swiper-slide-shadow-right,
|
|
103
|
+
.swiper-3d .swiper-slide-shadow-top {
|
|
104
|
+
position: absolute;
|
|
105
|
+
left: 0;
|
|
106
|
+
top: 0;
|
|
107
|
+
width: 100%;
|
|
108
|
+
height: 100%;
|
|
109
|
+
pointer-events: none;
|
|
110
|
+
z-index: 10
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.swiper-3d .swiper-slide-shadow {
|
|
114
|
+
background: rgba(0, 0, 0, .15)
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.swiper-3d .swiper-slide-shadow-left {
|
|
118
|
+
background-image: linear-gradient(to left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.swiper-3d .swiper-slide-shadow-right {
|
|
122
|
+
background-image: linear-gradient(to right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.swiper-3d .swiper-slide-shadow-top {
|
|
126
|
+
background-image: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.swiper-3d .swiper-slide-shadow-bottom {
|
|
130
|
+
background-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.swiper-css-mode>.swiper-wrapper {
|
|
134
|
+
overflow: auto;
|
|
135
|
+
scrollbar-width: none;
|
|
136
|
+
-ms-overflow-style: none
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
|
|
140
|
+
display: none
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.swiper-css-mode>.swiper-wrapper>.swiper-slide {
|
|
144
|
+
scroll-snap-align: start start
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.swiper-horizontal.swiper-css-mode>.swiper-wrapper {
|
|
148
|
+
scroll-snap-type: x mandatory
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.swiper-vertical.swiper-css-mode>.swiper-wrapper {
|
|
152
|
+
scroll-snap-type: y mandatory
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.swiper-centered>.swiper-wrapper::before {
|
|
156
|
+
content: '';
|
|
157
|
+
flex-shrink: 0;
|
|
158
|
+
order: 9999
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
|
|
162
|
+
margin-inline-start: var(--swiper-centered-offset-before)
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.swiper-centered.swiper-horizontal>.swiper-wrapper::before {
|
|
166
|
+
height: 100%;
|
|
167
|
+
min-height: 1px;
|
|
168
|
+
width: var(--swiper-centered-offset-after)
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
|
|
172
|
+
margin-block-start: var(--swiper-centered-offset-before)
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.swiper-centered.swiper-vertical>.swiper-wrapper::before {
|
|
176
|
+
width: 100%;
|
|
177
|
+
min-width: 1px;
|
|
178
|
+
height: var(--swiper-centered-offset-after)
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
.swiper-centered>.swiper-wrapper>.swiper-slide {
|
|
182
|
+
scroll-snap-align: center center
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
|
|
186
|
+
content: '';
|
|
187
|
+
position: absolute;
|
|
188
|
+
left: 0;
|
|
189
|
+
top: 0;
|
|
190
|
+
pointer-events: none
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
|
|
194
|
+
height: 1px;
|
|
195
|
+
width: var(--swiper-virtual-size)
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
|
|
199
|
+
width: 1px;
|
|
200
|
+
height: var(--swiper-virtual-size)
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
:root {
|
|
204
|
+
--swiper-navigation-size: 44px
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.swiper-button-next,
|
|
208
|
+
.swiper-button-prev {
|
|
209
|
+
position: absolute;
|
|
210
|
+
top: 50%;
|
|
211
|
+
width: calc(var(--swiper-navigation-size)/ 44 * 27);
|
|
212
|
+
height: var(--swiper-navigation-size);
|
|
213
|
+
margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
|
|
214
|
+
z-index: 10;
|
|
215
|
+
cursor: pointer;
|
|
216
|
+
display: flex;
|
|
217
|
+
align-items: center;
|
|
218
|
+
justify-content: center;
|
|
219
|
+
color: var(--swiper-navigation-color, var(--swiper-theme-color))
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
.swiper-button-next.swiper-button-disabled,
|
|
223
|
+
.swiper-button-prev.swiper-button-disabled {
|
|
224
|
+
opacity: .35;
|
|
225
|
+
cursor: auto;
|
|
226
|
+
pointer-events: none
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.swiper-button-next:after,
|
|
230
|
+
.swiper-button-prev:after {
|
|
231
|
+
font-family: swiper-icons;
|
|
232
|
+
font-size: var(--swiper-navigation-size);
|
|
233
|
+
text-transform: none !important;
|
|
234
|
+
letter-spacing: 0;
|
|
235
|
+
text-transform: none;
|
|
236
|
+
font-variant: initial;
|
|
237
|
+
line-height: 1
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.swiper-button-prev,
|
|
241
|
+
.swiper-rtl .swiper-button-next {
|
|
242
|
+
left: 0;
|
|
243
|
+
right: auto
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
.swiper-button-next,
|
|
247
|
+
.swiper-rtl .swiper-button-prev {
|
|
248
|
+
right: 0;
|
|
249
|
+
left: auto
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.swiper-button-lock {
|
|
253
|
+
display: none
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.swiper-pagination.swiper-pagination-hidden {
|
|
257
|
+
opacity: 0
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
.swiper-pagination-bullets-dynamic {
|
|
261
|
+
overflow: hidden;
|
|
262
|
+
font-size: 0
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
|
|
266
|
+
transform: scale(.33);
|
|
267
|
+
position: relative
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
|
|
271
|
+
transform: scale(1)
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
|
|
275
|
+
transform: scale(1)
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
|
|
279
|
+
transform: scale(.66)
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
|
|
283
|
+
transform: scale(.33)
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
|
|
287
|
+
transform: scale(.66)
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
|
|
291
|
+
transform: scale(.33)
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
.swiper-pagination-bullet {
|
|
295
|
+
width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
|
|
296
|
+
height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
|
|
297
|
+
display: inline-block;
|
|
298
|
+
border-radius: 50%;
|
|
299
|
+
background: var(--swiper-pagination-bullet-inactive-color, #000);
|
|
300
|
+
opacity: var(--swiper-pagination-bullet-inactive-opacity, .2)
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
button.swiper-pagination-bullet {
|
|
304
|
+
border: none;
|
|
305
|
+
margin: 0;
|
|
306
|
+
padding: 0;
|
|
307
|
+
box-shadow: none;
|
|
308
|
+
-webkit-appearance: none;
|
|
309
|
+
appearance: none
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
.swiper-pagination-clickable .swiper-pagination-bullet {
|
|
313
|
+
cursor: pointer
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
.swiper-pagination-bullet:only-child {
|
|
317
|
+
display: none !important
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
.swiper-pagination-bullet-active {
|
|
321
|
+
opacity: var(--swiper-pagination-bullet-opacity, 1);
|
|
322
|
+
background: var(--swiper-pagination-color, var(--swiper-theme-color))
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
.swiper-pagination-vertical.swiper-pagination-bullets,
|
|
326
|
+
.swiper-vertical>.swiper-pagination-bullets {
|
|
327
|
+
right: 10px;
|
|
328
|
+
top: 50%;
|
|
329
|
+
transform: translate3d(0px, -50%, 0)
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
|
|
333
|
+
.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
|
|
334
|
+
margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
|
|
335
|
+
display: block
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
|
|
339
|
+
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
|
|
340
|
+
top: 50%;
|
|
341
|
+
transform: translateY(-50%);
|
|
342
|
+
width: 8px
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
|
|
346
|
+
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
|
|
347
|
+
display: inline-block;
|
|
348
|
+
transition: .2s transform, .2s top
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
|
|
352
|
+
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
|
|
353
|
+
left: 50%;
|
|
354
|
+
transform: translateX(-50%);
|
|
355
|
+
white-space: nowrap
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
|
|
359
|
+
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
|
|
360
|
+
transition: .2s transform, .2s left
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
|
|
364
|
+
transition: .2s transform, .2s right
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
.swiper-pagination-progressbar {
|
|
368
|
+
background: rgba(0, 0, 0, .25);
|
|
369
|
+
position: absolute
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
|
|
373
|
+
background: var(--swiper-pagination-color, var(--swiper-theme-color));
|
|
374
|
+
position: absolute;
|
|
375
|
+
left: 0;
|
|
376
|
+
top: 0;
|
|
377
|
+
width: 100%;
|
|
378
|
+
height: 100%;
|
|
379
|
+
transform: scale(0);
|
|
380
|
+
transform-origin: left top
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
|
|
384
|
+
transform-origin: right top
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
.swiper-horizontal>.swiper-pagination-progressbar,
|
|
388
|
+
.swiper-pagination-progressbar.swiper-pagination-horizontal,
|
|
389
|
+
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
|
|
390
|
+
.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
|
|
391
|
+
width: 100%;
|
|
392
|
+
height: 4px;
|
|
393
|
+
left: 0;
|
|
394
|
+
top: 0
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
|
|
398
|
+
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
|
|
399
|
+
.swiper-pagination-progressbar.swiper-pagination-vertical,
|
|
400
|
+
.swiper-vertical>.swiper-pagination-progressbar {
|
|
401
|
+
width: 4px;
|
|
402
|
+
height: 100%;
|
|
403
|
+
left: 0;
|
|
404
|
+
top: 0
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
.swiper-pagination-lock {
|
|
408
|
+
display: none
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
.swiper-scrollbar {
|
|
412
|
+
border-radius: 10px;
|
|
413
|
+
position: relative;
|
|
414
|
+
-ms-touch-action: none;
|
|
415
|
+
background: rgba(0, 0, 0, .1)
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
.swiper-horizontal>.swiper-scrollbar {
|
|
419
|
+
position: absolute;
|
|
420
|
+
left: 1%;
|
|
421
|
+
bottom: 3px;
|
|
422
|
+
z-index: 50;
|
|
423
|
+
height: 5px;
|
|
424
|
+
width: 98%
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
.swiper-vertical>.swiper-scrollbar {
|
|
428
|
+
position: absolute;
|
|
429
|
+
right: 3px;
|
|
430
|
+
top: 1%;
|
|
431
|
+
z-index: 50;
|
|
432
|
+
width: 5px;
|
|
433
|
+
height: 98%
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
.swiper-scrollbar-drag {
|
|
437
|
+
height: 100%;
|
|
438
|
+
width: 100%;
|
|
439
|
+
position: relative;
|
|
440
|
+
background: rgba(0, 0, 0, .5);
|
|
441
|
+
border-radius: 10px;
|
|
442
|
+
left: 0;
|
|
443
|
+
top: 0
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
.swiper-scrollbar-cursor-drag {
|
|
447
|
+
cursor: move
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
.swiper-scrollbar-lock {
|
|
451
|
+
display: none
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
.swiper-zoom-container {
|
|
455
|
+
width: 100%;
|
|
456
|
+
height: 100%;
|
|
457
|
+
display: flex;
|
|
458
|
+
justify-content: center;
|
|
459
|
+
align-items: center;
|
|
460
|
+
text-align: center
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
.swiper-zoom-container>canvas,
|
|
464
|
+
.swiper-zoom-container>img,
|
|
465
|
+
.swiper-zoom-container>svg {
|
|
466
|
+
max-width: 100%;
|
|
467
|
+
max-height: 100%;
|
|
468
|
+
object-fit: contain
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
.swiper-slide-zoomed {
|
|
472
|
+
cursor: move
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
.swiper-lazy-preloader {
|
|
476
|
+
width: 42px;
|
|
477
|
+
height: 42px;
|
|
478
|
+
position: absolute;
|
|
479
|
+
left: 50%;
|
|
480
|
+
top: 50%;
|
|
481
|
+
margin-left: -21px;
|
|
482
|
+
margin-top: -21px;
|
|
483
|
+
z-index: 10;
|
|
484
|
+
transform-origin: 50%;
|
|
485
|
+
animation: swiper-preloader-spin 1s infinite linear;
|
|
486
|
+
box-sizing: border-box;
|
|
487
|
+
border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
|
|
488
|
+
border-radius: 50%;
|
|
489
|
+
border-top-color: transparent
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
.swiper-lazy-preloader-white {
|
|
493
|
+
--swiper-preloader-color: #fff
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
.swiper-lazy-preloader-black {
|
|
497
|
+
--swiper-preloader-color: #000
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
@keyframes swiper-preloader-spin {
|
|
501
|
+
100% {
|
|
502
|
+
transform: rotate(360deg)
|
|
503
|
+
}
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
.swiper .swiper-notification {
|
|
507
|
+
position: absolute;
|
|
508
|
+
left: 0;
|
|
509
|
+
top: 0;
|
|
510
|
+
pointer-events: none;
|
|
511
|
+
opacity: 0;
|
|
512
|
+
z-index: -1000
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
.swiper-free-mode>.swiper-wrapper {
|
|
516
|
+
transition-timing-function: ease-out;
|
|
517
|
+
margin: 0 auto
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
.swiper-grid>.swiper-wrapper {
|
|
521
|
+
flex-wrap: wrap
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
.swiper-grid-column>.swiper-wrapper {
|
|
525
|
+
flex-wrap: wrap;
|
|
526
|
+
flex-direction: column
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
.swiper-fade.swiper-free-mode .swiper-slide {
|
|
530
|
+
transition-timing-function: ease-out
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
.swiper-fade .swiper-slide {
|
|
534
|
+
pointer-events: none;
|
|
535
|
+
transition-property: opacity
|
|
536
|
+
}
|
|
537
|
+
|
|
538
|
+
.swiper-fade .swiper-slide .swiper-slide {
|
|
539
|
+
pointer-events: none
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
.swiper-fade .swiper-slide-active,
|
|
543
|
+
.swiper-fade .swiper-slide-active .swiper-slide-active {
|
|
544
|
+
pointer-events: auto
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
.swiper-cube {
|
|
548
|
+
overflow: visible
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
.swiper-cube .swiper-slide {
|
|
552
|
+
pointer-events: none;
|
|
553
|
+
-webkit-backface-visibility: hidden;
|
|
554
|
+
backface-visibility: hidden;
|
|
555
|
+
z-index: 1;
|
|
556
|
+
visibility: hidden;
|
|
557
|
+
transform-origin: 0 0;
|
|
558
|
+
width: 100%;
|
|
559
|
+
height: 100%
|
|
560
|
+
}
|
|
561
|
+
|
|
562
|
+
.swiper-cube .swiper-slide .swiper-slide {
|
|
563
|
+
pointer-events: none
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
.swiper-cube.swiper-rtl .swiper-slide {
|
|
567
|
+
transform-origin: 100% 0
|
|
568
|
+
}
|
|
569
|
+
|
|
570
|
+
.swiper-cube .swiper-slide-active,
|
|
571
|
+
.swiper-cube .swiper-slide-active .swiper-slide-active {
|
|
572
|
+
pointer-events: auto
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
.swiper-cube .swiper-slide-active,
|
|
576
|
+
.swiper-cube .swiper-slide-next,
|
|
577
|
+
.swiper-cube .swiper-slide-next+.swiper-slide,
|
|
578
|
+
.swiper-cube .swiper-slide-prev {
|
|
579
|
+
pointer-events: auto;
|
|
580
|
+
visibility: visible
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
.swiper-cube .swiper-slide-shadow-bottom,
|
|
584
|
+
.swiper-cube .swiper-slide-shadow-left,
|
|
585
|
+
.swiper-cube .swiper-slide-shadow-right,
|
|
586
|
+
.swiper-cube .swiper-slide-shadow-top {
|
|
587
|
+
z-index: 0;
|
|
588
|
+
-webkit-backface-visibility: hidden;
|
|
589
|
+
backface-visibility: hidden
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
.swiper-cube .swiper-cube-shadow {
|
|
593
|
+
position: absolute;
|
|
594
|
+
left: 0;
|
|
595
|
+
bottom: 0px;
|
|
596
|
+
width: 100%;
|
|
597
|
+
height: 100%;
|
|
598
|
+
opacity: .6;
|
|
599
|
+
z-index: 0
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
.swiper-cube .swiper-cube-shadow:before {
|
|
603
|
+
content: '';
|
|
604
|
+
background: #000;
|
|
605
|
+
position: absolute;
|
|
606
|
+
left: 0;
|
|
607
|
+
top: 0;
|
|
608
|
+
bottom: 0;
|
|
609
|
+
right: 0;
|
|
610
|
+
filter: blur(50px)
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
.swiper-flip {
|
|
614
|
+
overflow: visible
|
|
615
|
+
}
|
|
616
|
+
|
|
617
|
+
.swiper-flip .swiper-slide {
|
|
618
|
+
pointer-events: none;
|
|
619
|
+
-webkit-backface-visibility: hidden;
|
|
620
|
+
backface-visibility: hidden;
|
|
621
|
+
z-index: 1
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
.swiper-flip .swiper-slide .swiper-slide {
|
|
625
|
+
pointer-events: none
|
|
626
|
+
}
|
|
627
|
+
|
|
628
|
+
.swiper-flip .swiper-slide-active,
|
|
629
|
+
.swiper-flip .swiper-slide-active .swiper-slide-active {
|
|
630
|
+
pointer-events: auto
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
.swiper-flip .swiper-slide-shadow-bottom,
|
|
634
|
+
.swiper-flip .swiper-slide-shadow-left,
|
|
635
|
+
.swiper-flip .swiper-slide-shadow-right,
|
|
636
|
+
.swiper-flip .swiper-slide-shadow-top {
|
|
637
|
+
z-index: 0;
|
|
638
|
+
-webkit-backface-visibility: hidden;
|
|
639
|
+
backface-visibility: hidden
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
.swiper-creative .swiper-slide {
|
|
643
|
+
-webkit-backface-visibility: hidden;
|
|
644
|
+
backface-visibility: hidden;
|
|
645
|
+
overflow: hidden;
|
|
646
|
+
transition-property: transform, opacity, height
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
.swiper-cards {
|
|
650
|
+
overflow: visible
|
|
651
|
+
}
|
|
652
|
+
|
|
653
|
+
.swiper-cards .swiper-slide {
|
|
654
|
+
transform-origin: center bottom;
|
|
655
|
+
-webkit-backface-visibility: hidden;
|
|
656
|
+
backface-visibility: hidden;
|
|
657
|
+
overflow: hidden
|
|
658
|
+
}
|