bootstrap-italia 2.13.3 → 2.14.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/_virtual/_commonjsHelpers.js +6 -0
- package/dist/_virtual/_commonjsHelpers.js.map +1 -0
- package/dist/bootstrap-italia.esm.js +1 -2
- package/dist/bootstrap-italia.esm.js.map +1 -1
- package/dist/css/bootstrap-italia.min.css +1 -1
- package/dist/css/bootstrap-italia.min.css.map +1 -1
- package/dist/js/bootstrap-italia.bundle.min.js +14 -8
- package/dist/js/bootstrap-italia.min.js +4 -4
- package/dist/plugins/back-to-top.js +0 -6
- package/dist/plugins/back-to-top.js.map +1 -1
- package/dist/plugins/button.js +3 -3
- package/dist/plugins/button.js.map +1 -1
- package/dist/plugins/carousel.js +183 -402
- package/dist/plugins/carousel.js.map +1 -1
- package/dist/plugins/forward.js.map +1 -1
- package/dist/plugins/header-sticky.js +1 -7
- package/dist/plugins/header-sticky.js.map +1 -1
- package/dist/plugins/input-label.js +5 -1
- package/dist/plugins/input-label.js.map +1 -1
- package/dist/plugins/input-number.js +5 -7
- package/dist/plugins/input-number.js.map +1 -1
- package/dist/plugins/masonry.js +8 -1
- package/dist/plugins/masonry.js.map +1 -1
- package/dist/plugins/select-autocomplete.js +66 -17
- package/dist/plugins/select-autocomplete.js.map +1 -1
- package/dist/plugins/tooltip.js +10 -0
- package/dist/plugins/tooltip.js.map +1 -1
- package/dist/plugins/track-focus.js +0 -6
- package/dist/plugins/track-focus.js.map +1 -1
- package/dist/plugins/util/pageScroll.js +1 -1
- package/dist/plugins/util/pageScroll.js.map +1 -1
- package/dist/plugins/util/youtube-video.js +1 -2
- package/dist/plugins/util/youtube-video.js.map +1 -1
- package/dist/plugins/vendor/accessible-autocomplete.js +9 -0
- package/dist/plugins/vendor/accessible-autocomplete.js.map +1 -0
- package/dist/svg/sprites.svg +1 -1
- package/dist/version.js +1 -1
- package/dist/version.js.map +1 -1
- package/package.json +2 -3
- package/src/js/bootstrap-italia.entry.js +0 -2
- package/src/js/bootstrap-italia.esm.js +1 -2
- package/src/js/icons.js +9 -0
- package/src/js/plugins/back-to-top.js +0 -6
- package/src/js/plugins/button.js +3 -3
- package/src/js/plugins/carousel.js +184 -402
- package/src/js/plugins/forward.js +0 -1
- package/src/js/plugins/header-sticky.js +1 -7
- package/src/js/plugins/input-label.js +5 -1
- package/src/js/plugins/input-number.js +5 -7
- package/src/js/plugins/masonry.js +8 -1
- package/src/js/plugins/select-autocomplete.js +67 -17
- package/src/js/plugins/tooltip.js +10 -0
- package/src/js/plugins/track-focus.js +0 -6
- package/src/js/plugins/util/pageScroll.js +1 -1
- package/src/js/plugins/util/youtube-video.js +1 -2
- package/src/js/plugins/vendor/accessible-autocomplete.js +1 -0
- package/src/js/version.js +1 -1
- package/src/scss/base/_variables.scss +1 -1
- package/src/scss/base/_version.scss +1 -1
- package/src/scss/components/_buttons.scss +3 -3
- package/src/scss/components/_carousel.scss +7 -235
- package/src/scss/components/_navigation.scss +1 -1
- package/src/scss/components/_tab.scss +4 -4
- package/src/scss/forms/_accessible-autocomplete.scss +0 -19
- package/src/scss/forms/_form-input-number.scss +1 -1
- package/src/scss/forms/_form-input-upload.scss +1 -1
- package/src/scss/forms/_form-toggles.scss +1 -1
- package/src/scss/forms/_forms.scss +2 -1
- package/src/scss/forms/_just-validate.scss +4 -4
- package/src/scss/utilities/focus.scss +26 -16
- package/src/svg/it-bluesky.svg +4 -0
- package/src/svg/it-car.svg +4 -0
- package/src/svg/it-cart.svg +5 -0
- package/src/svg/it-file-docx.svg +12 -0
- package/src/svg/it-file-image.svg +5 -0
- package/src/svg/it-file-signed.svg +16 -0
- package/src/svg/it-file-xlsx.svg +11 -0
- package/src/svg/it-sign.svg +8 -0
- package/src/svg/it-spotify.svg +4 -0
- package/types/index.d.ts +0 -2
- package/types/plugins/carousel.d.ts +42 -2
- package/dist/plugins/carousel-bi.js +0 -226
- package/dist/plugins/carousel-bi.js.map +0 -1
- package/dist/plugins/util/swipe.js +0 -150
- package/dist/plugins/util/swipe.js.map +0 -1
- package/src/js/plugins/carousel-bi.js +0 -225
- package/types/plugins/carousel-bi.d.ts +0 -57
|
@@ -1,227 +1,3 @@
|
|
|
1
|
-
// Notes on the classes:
|
|
2
|
-
//
|
|
3
|
-
// 1. .carousel.pointer-event should ideally be pan-y (to allow for users to scroll vertically)
|
|
4
|
-
// even when their scroll action started on a carousel, but for compatibility (with Firefox)
|
|
5
|
-
// we're preventing all actions instead
|
|
6
|
-
// 2. The .carousel-item-start and .carousel-item-end is used to indicate where
|
|
7
|
-
// the active slide is heading.
|
|
8
|
-
// 3. .active.carousel-item is the current slide.
|
|
9
|
-
// 4. .active.carousel-item-start and .active.carousel-item-end is the current
|
|
10
|
-
// slide in its in-transition state. Only one of these occurs at a time.
|
|
11
|
-
// 5. .carousel-item-next.carousel-item-start and .carousel-item-prev.carousel-item-end
|
|
12
|
-
// is the upcoming slide in transition.
|
|
13
|
-
|
|
14
|
-
.carousel {
|
|
15
|
-
position: relative;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
.carousel.pointer-event {
|
|
19
|
-
touch-action: pan-y;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
.carousel-inner {
|
|
23
|
-
position: relative;
|
|
24
|
-
width: 100%;
|
|
25
|
-
overflow: hidden;
|
|
26
|
-
@include clearfix();
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
.carousel-item {
|
|
30
|
-
position: relative;
|
|
31
|
-
display: none;
|
|
32
|
-
float: left;
|
|
33
|
-
width: 100%;
|
|
34
|
-
margin-right: -100%;
|
|
35
|
-
backface-visibility: hidden;
|
|
36
|
-
@include transition($carousel-transition);
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.carousel-item.active,
|
|
40
|
-
.carousel-item-next,
|
|
41
|
-
.carousel-item-prev {
|
|
42
|
-
display: block;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
.carousel-item-next:not(.carousel-item-start),
|
|
46
|
-
.active.carousel-item-end {
|
|
47
|
-
transform: translateX(100%);
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
.carousel-item-prev:not(.carousel-item-end),
|
|
51
|
-
.active.carousel-item-start {
|
|
52
|
-
transform: translateX(-100%);
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
//
|
|
56
|
-
// Alternate transitions
|
|
57
|
-
//
|
|
58
|
-
|
|
59
|
-
.carousel-fade {
|
|
60
|
-
.carousel-item {
|
|
61
|
-
opacity: 0;
|
|
62
|
-
transition-property: opacity;
|
|
63
|
-
transform: none;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
.carousel-item.active,
|
|
67
|
-
.carousel-item-next.carousel-item-start,
|
|
68
|
-
.carousel-item-prev.carousel-item-end {
|
|
69
|
-
z-index: 1;
|
|
70
|
-
opacity: 1;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
.active.carousel-item-start,
|
|
74
|
-
.active.carousel-item-end {
|
|
75
|
-
z-index: 0;
|
|
76
|
-
opacity: 0;
|
|
77
|
-
@include transition(opacity 0s $carousel-transition-duration);
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
//
|
|
82
|
-
// Left/right controls for nav
|
|
83
|
-
//
|
|
84
|
-
|
|
85
|
-
.carousel-control-prev,
|
|
86
|
-
.carousel-control-next {
|
|
87
|
-
position: absolute;
|
|
88
|
-
top: 0;
|
|
89
|
-
bottom: 0;
|
|
90
|
-
z-index: 1;
|
|
91
|
-
// Use flex for alignment (1-3)
|
|
92
|
-
display: flex; // 1. allow flex styles
|
|
93
|
-
align-items: center; // 2. vertically center contents
|
|
94
|
-
justify-content: center; // 3. horizontally center contents
|
|
95
|
-
width: $carousel-control-width;
|
|
96
|
-
padding: 0;
|
|
97
|
-
color: $carousel-control-color;
|
|
98
|
-
text-align: center;
|
|
99
|
-
background: none;
|
|
100
|
-
border: 0;
|
|
101
|
-
opacity: $carousel-control-opacity;
|
|
102
|
-
@include transition($carousel-control-transition);
|
|
103
|
-
|
|
104
|
-
// Hover/focus state
|
|
105
|
-
&:hover,
|
|
106
|
-
&:focus {
|
|
107
|
-
color: $carousel-control-color;
|
|
108
|
-
text-decoration: none;
|
|
109
|
-
outline: 0;
|
|
110
|
-
opacity: $carousel-control-hover-opacity;
|
|
111
|
-
}
|
|
112
|
-
}
|
|
113
|
-
.carousel-control-prev {
|
|
114
|
-
left: 0;
|
|
115
|
-
background-image: if($enable-gradients, linear-gradient(90deg, rgba($black, 0.25), rgba($black, 0.001)), null);
|
|
116
|
-
}
|
|
117
|
-
.carousel-control-next {
|
|
118
|
-
right: 0;
|
|
119
|
-
background-image: if($enable-gradients, linear-gradient(270deg, rgba($black, 0.25), rgba($black, 0.001)), null);
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
// Icons for within
|
|
123
|
-
.carousel-control-prev-icon,
|
|
124
|
-
.carousel-control-next-icon {
|
|
125
|
-
display: inline-block;
|
|
126
|
-
width: $carousel-control-icon-width;
|
|
127
|
-
height: $carousel-control-icon-width;
|
|
128
|
-
background-repeat: no-repeat;
|
|
129
|
-
background-position: 50%;
|
|
130
|
-
background-size: 100% 100%;
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
/* rtl:options: {
|
|
134
|
-
"autoRename": true,
|
|
135
|
-
"stringMap":[ {
|
|
136
|
-
"name" : "prev-next",
|
|
137
|
-
"search" : "prev",
|
|
138
|
-
"replace" : "next"
|
|
139
|
-
} ]
|
|
140
|
-
} */
|
|
141
|
-
.carousel-control-prev-icon {
|
|
142
|
-
background-image: escape-svg($carousel-control-prev-icon-bg);
|
|
143
|
-
}
|
|
144
|
-
.carousel-control-next-icon {
|
|
145
|
-
background-image: escape-svg($carousel-control-next-icon-bg);
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
// Optional indicator pips/controls
|
|
149
|
-
//
|
|
150
|
-
// Add a container (such as a list) with the following class and add an item (ideally a focusable control,
|
|
151
|
-
// like a button) with data-bs-target for each slide your carousel holds.
|
|
152
|
-
|
|
153
|
-
.carousel-indicators {
|
|
154
|
-
position: absolute;
|
|
155
|
-
right: 0;
|
|
156
|
-
bottom: 0;
|
|
157
|
-
left: 0;
|
|
158
|
-
z-index: 2;
|
|
159
|
-
display: flex;
|
|
160
|
-
justify-content: center;
|
|
161
|
-
padding: 0;
|
|
162
|
-
// Use the .carousel-control's width as margin so we don't overlay those
|
|
163
|
-
margin-right: $carousel-control-width;
|
|
164
|
-
margin-bottom: 1rem;
|
|
165
|
-
margin-left: $carousel-control-width;
|
|
166
|
-
list-style: none;
|
|
167
|
-
|
|
168
|
-
[data-bs-target] {
|
|
169
|
-
box-sizing: content-box;
|
|
170
|
-
flex: 0 1 auto;
|
|
171
|
-
width: $carousel-indicator-width;
|
|
172
|
-
height: $carousel-indicator-height;
|
|
173
|
-
padding: 0;
|
|
174
|
-
margin-right: $carousel-indicator-spacer;
|
|
175
|
-
margin-left: $carousel-indicator-spacer;
|
|
176
|
-
text-indent: -999px;
|
|
177
|
-
cursor: pointer;
|
|
178
|
-
background-color: $carousel-indicator-active-bg;
|
|
179
|
-
background-clip: padding-box;
|
|
180
|
-
border: 0;
|
|
181
|
-
// Use transparent borders to increase the hit area by 10px on top and bottom.
|
|
182
|
-
border-top: $carousel-indicator-hit-area-height solid transparent;
|
|
183
|
-
border-bottom: $carousel-indicator-hit-area-height solid transparent;
|
|
184
|
-
opacity: $carousel-indicator-opacity;
|
|
185
|
-
@include transition($carousel-indicator-transition);
|
|
186
|
-
}
|
|
187
|
-
|
|
188
|
-
.active {
|
|
189
|
-
opacity: $carousel-indicator-active-opacity;
|
|
190
|
-
}
|
|
191
|
-
}
|
|
192
|
-
|
|
193
|
-
// Optional captions
|
|
194
|
-
//
|
|
195
|
-
//
|
|
196
|
-
|
|
197
|
-
.carousel-caption {
|
|
198
|
-
position: absolute;
|
|
199
|
-
right: (100% - $carousel-caption-width) * 0.5;
|
|
200
|
-
bottom: $carousel-caption-spacer;
|
|
201
|
-
left: (100% - $carousel-caption-width) * 0.5;
|
|
202
|
-
padding-top: $carousel-caption-padding-y;
|
|
203
|
-
padding-bottom: $carousel-caption-padding-y;
|
|
204
|
-
color: $carousel-caption-color;
|
|
205
|
-
text-align: center;
|
|
206
|
-
}
|
|
207
|
-
|
|
208
|
-
// Dark mode carousel
|
|
209
|
-
|
|
210
|
-
.carousel-dark {
|
|
211
|
-
.carousel-control-prev-icon,
|
|
212
|
-
.carousel-control-next-icon {
|
|
213
|
-
filter: $carousel-dark-control-icon-filter;
|
|
214
|
-
}
|
|
215
|
-
|
|
216
|
-
.carousel-indicators [data-bs-target] {
|
|
217
|
-
background-color: $carousel-dark-indicator-active-bg;
|
|
218
|
-
}
|
|
219
|
-
|
|
220
|
-
.carousel-caption {
|
|
221
|
-
color: $carousel-dark-caption-color;
|
|
222
|
-
}
|
|
223
|
-
}
|
|
224
|
-
|
|
225
1
|
@import '@splidejs/splide/src/css/core/index';
|
|
226
2
|
|
|
227
3
|
//mobile
|
|
@@ -232,8 +8,8 @@
|
|
|
232
8
|
margin-left: 0;
|
|
233
9
|
padding-left: 0;
|
|
234
10
|
button {
|
|
235
|
-
width: $crs-dots-
|
|
236
|
-
height: $crs-dots-
|
|
11
|
+
width: $crs-dots-dimension;
|
|
12
|
+
height: $crs-dots-dimension;
|
|
237
13
|
background: $crs-dots-color;
|
|
238
14
|
display: inline-block;
|
|
239
15
|
transition: all 0.3s;
|
|
@@ -386,16 +162,11 @@
|
|
|
386
162
|
display: flex;
|
|
387
163
|
flex-basis: 100%;
|
|
388
164
|
width: 100%;
|
|
389
|
-
|
|
165
|
+
// img
|
|
166
|
+
.img-responsive-wrapper {
|
|
390
167
|
flex-basis: 50%;
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
.img-responsive {
|
|
394
|
-
padding-bottom: inherit;
|
|
395
|
-
position: absolute;
|
|
396
|
-
width: 100%;
|
|
397
|
-
height: 100%;
|
|
398
|
-
}
|
|
168
|
+
.img-responsive {
|
|
169
|
+
height: 100%;
|
|
399
170
|
}
|
|
400
171
|
}
|
|
401
172
|
.it-text-slider-wrapper-outside {
|
|
@@ -434,6 +205,7 @@
|
|
|
434
205
|
bottom: $crs-landcape-bottom;
|
|
435
206
|
text-align: left;
|
|
436
207
|
justify-content: left;
|
|
208
|
+
margin-bottom: 8px;
|
|
437
209
|
}
|
|
438
210
|
}
|
|
439
211
|
&.it-carousel-landscape-abstract-three-cols-arrow-visible {
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
border-right: 2px solid transparent;
|
|
66
66
|
white-space: normal;
|
|
67
67
|
position: relative;
|
|
68
|
-
&:focus:not(
|
|
68
|
+
&:focus:not([data-focus-mouse='true']) {
|
|
69
69
|
box-shadow: inset 0 0px 0 2px $focus-outline-color !important;
|
|
70
70
|
}
|
|
71
71
|
&:hover {
|
|
@@ -117,7 +117,7 @@
|
|
|
117
117
|
border-bottom-color: transparent;
|
|
118
118
|
}
|
|
119
119
|
|
|
120
|
-
&:focus:not(
|
|
120
|
+
&:focus:not([data-focus-mouse='true']) {
|
|
121
121
|
box-shadow: inset 0 1px 0 2px $focus-outline-color !important;
|
|
122
122
|
}
|
|
123
123
|
|
|
@@ -326,7 +326,7 @@
|
|
|
326
326
|
.nav-link {
|
|
327
327
|
border-bottom: none;
|
|
328
328
|
border-top: 2px solid transparent;
|
|
329
|
-
&:focus:not(
|
|
329
|
+
&:focus:not([data-focus-mouse='true']) {
|
|
330
330
|
box-shadow: inset 0 -1px 0 2px $focus-outline-color !important;
|
|
331
331
|
}
|
|
332
332
|
}
|
|
@@ -356,7 +356,7 @@
|
|
|
356
356
|
border-bottom: none;
|
|
357
357
|
border-right: none;
|
|
358
358
|
border-left: 2px solid transparent;
|
|
359
|
-
&:focus:not(
|
|
359
|
+
&:focus:not([data-focus-mouse='true']) {
|
|
360
360
|
box-shadow: inset 0px 0px 0 2px $focus-outline-color !important;
|
|
361
361
|
}
|
|
362
362
|
&:hover {
|
|
@@ -11,7 +11,6 @@
|
|
|
11
11
|
}
|
|
12
12
|
|
|
13
13
|
.autocomplete__input {
|
|
14
|
-
background-color: transparent;
|
|
15
14
|
position: relative;
|
|
16
15
|
}
|
|
17
16
|
|
|
@@ -138,27 +137,11 @@
|
|
|
138
137
|
cursor: not-allowed;
|
|
139
138
|
}
|
|
140
139
|
|
|
141
|
-
.autocomplete__hint,
|
|
142
|
-
.autocomplete__input,
|
|
143
|
-
.autocomplete__option {
|
|
144
|
-
font-size: 1rem;
|
|
145
|
-
font-weight: 400;
|
|
146
|
-
}
|
|
147
|
-
|
|
148
140
|
.autocomplete__hint,
|
|
149
141
|
.autocomplete__option {
|
|
150
142
|
padding: 5px;
|
|
151
143
|
}
|
|
152
144
|
|
|
153
|
-
@media (min-width: 641px) {
|
|
154
|
-
.autocomplete__hint,
|
|
155
|
-
.autocomplete__input,
|
|
156
|
-
.autocomplete__option {
|
|
157
|
-
font-size: 1.1875rem;
|
|
158
|
-
line-height: 1.3157894737;
|
|
159
|
-
}
|
|
160
|
-
}
|
|
161
|
-
|
|
162
145
|
.autocomplete__wrapper {
|
|
163
146
|
position: relative;
|
|
164
147
|
.autocomplete__menu {
|
|
@@ -174,8 +157,6 @@
|
|
|
174
157
|
padding: 12px 24px;
|
|
175
158
|
background-color: #fff;
|
|
176
159
|
border: none;
|
|
177
|
-
font-size: 0.875rem;
|
|
178
|
-
font-weight: 600;
|
|
179
160
|
&:hover,
|
|
180
161
|
&:focus {
|
|
181
162
|
color: $primary;
|
|
@@ -261,6 +261,7 @@ textarea {
|
|
|
261
261
|
display: inline-block;
|
|
262
262
|
font-size: 1rem;
|
|
263
263
|
font-weight: $font-weight-semibold;
|
|
264
|
+
line-height: var(--bs-body-line-height);
|
|
264
265
|
user-select: none;
|
|
265
266
|
@include media-breakpoint-up(sm) {
|
|
266
267
|
font-size: 1.125rem;
|
|
@@ -272,7 +273,7 @@ textarea {
|
|
|
272
273
|
@extend %focus;
|
|
273
274
|
}
|
|
274
275
|
|
|
275
|
-
&:focus
|
|
276
|
+
&:focus[data-focus-mouse='true'] + label {
|
|
276
277
|
@extend %focusmouse;
|
|
277
278
|
}
|
|
278
279
|
}
|
|
@@ -8,10 +8,10 @@
|
|
|
8
8
|
}
|
|
9
9
|
}
|
|
10
10
|
|
|
11
|
-
.input-group-text:has(~
|
|
12
|
-
|
|
13
|
-
button:has(~
|
|
14
|
-
|
|
11
|
+
.input-group-text:has(~ [data-focus-mouse='true']:not(.btn)),
|
|
12
|
+
[data-focus-mouse='true']:not(.btn) ~ .input-group-text,
|
|
13
|
+
button:has(~ [data-focus-mouse='true']:not(.btn)),
|
|
14
|
+
[data-focus-mouse='true']:not(.btn) + button {
|
|
15
15
|
border-color: inherit !important;
|
|
16
16
|
box-shadow: none !important;
|
|
17
17
|
outline: none !important;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
:focus:not(
|
|
1
|
+
:focus:not([data-focus-mouse='true']),
|
|
2
2
|
%focus,
|
|
3
|
-
.it-carousel-wrapper .splide__pagination button:focus:not(
|
|
4
|
-
.upload:focus:not(
|
|
5
|
-
.upload-dragdrop-input:focus[type='file']:not(
|
|
6
|
-
.avatar-upload:focus-within:not(
|
|
7
|
-
.rating input:focus:not(
|
|
3
|
+
.it-carousel-wrapper .splide__pagination button:focus:not([data-focus-mouse='true']),
|
|
4
|
+
.upload:focus:not([data-focus-mouse='true']) + label,
|
|
5
|
+
.upload-dragdrop-input:focus[type='file']:not([data-focus-mouse='true']) + label,
|
|
6
|
+
.avatar-upload:focus-within:not([data-focus-mouse='true']),
|
|
7
|
+
.rating input:focus:not([data-focus-mouse='true']) + label svg {
|
|
8
8
|
border-color: $focus-outline-color-out !important;
|
|
9
9
|
box-shadow:
|
|
10
10
|
0 0 0 2px $focus-outline-color-in,
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
box-shadow: none !important;
|
|
18
18
|
}
|
|
19
19
|
|
|
20
|
-
|
|
20
|
+
[data-focus-mouse='true']:not(.btn),
|
|
21
21
|
%focusmouse {
|
|
22
22
|
border-color: inherit !important;
|
|
23
23
|
box-shadow: none !important;
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
p a {
|
|
28
|
-
&:focus:not(
|
|
28
|
+
&:focus:not([data-focus-mouse='true'], .btn) {
|
|
29
29
|
outline-offset: 0px !important;
|
|
30
30
|
outline: 3px $focus-outline-color-out solid !important;
|
|
31
31
|
background: $focus-outline-color-in;
|
|
@@ -38,7 +38,7 @@ p a {
|
|
|
38
38
|
.shadow-none,
|
|
39
39
|
.shadow-sm,
|
|
40
40
|
.shadow-lg {
|
|
41
|
-
&:focus:not(
|
|
41
|
+
&:focus:not([data-focus-mouse='true']) {
|
|
42
42
|
box-shadow:
|
|
43
43
|
0 0 0 2px $focus-outline-color-in,
|
|
44
44
|
0 0 0 5px $focus-outline-color-out !important;
|
|
@@ -46,14 +46,14 @@ p a {
|
|
|
46
46
|
}
|
|
47
47
|
|
|
48
48
|
.avatar-group-stacked .avatar {
|
|
49
|
-
&:focus:not(
|
|
49
|
+
&:focus:not([data-focus-mouse='true']) {
|
|
50
50
|
border: 0;
|
|
51
51
|
margin-left: -4px;
|
|
52
52
|
margin-top: 2px;
|
|
53
53
|
margin-right: 2px;
|
|
54
54
|
}
|
|
55
55
|
|
|
56
|
-
&.avatar-dropdown .btn-dropdown:focus:not(
|
|
56
|
+
&.avatar-dropdown .btn-dropdown:focus:not([data-focus-mouse='true']) {
|
|
57
57
|
height: 100%;
|
|
58
58
|
width: 100%;
|
|
59
59
|
border-radius: 50%;
|
|
@@ -62,14 +62,14 @@ p a {
|
|
|
62
62
|
|
|
63
63
|
.chip {
|
|
64
64
|
button {
|
|
65
|
-
&:focus:not(
|
|
65
|
+
&:focus:not([data-focus-mouse='true']) {
|
|
66
66
|
border-radius: 50%;
|
|
67
67
|
}
|
|
68
68
|
}
|
|
69
69
|
}
|
|
70
70
|
|
|
71
71
|
.form-check {
|
|
72
|
-
.toggles label:has(input[type='checkbox']:focus:not(
|
|
72
|
+
.toggles label:has(input[type='checkbox']:focus:not([data-focus-mouse='true'])) {
|
|
73
73
|
@extend %focus;
|
|
74
74
|
|
|
75
75
|
input,
|
|
@@ -80,12 +80,12 @@ p a {
|
|
|
80
80
|
}
|
|
81
81
|
}
|
|
82
82
|
|
|
83
|
-
.toggles label:has(input[type='checkbox']:focus
|
|
83
|
+
.toggles label:has(input[type='checkbox']:focus[data-focus-mouse='true']) {
|
|
84
84
|
@extend %focusmouse;
|
|
85
85
|
}
|
|
86
86
|
|
|
87
87
|
&.form-check-group {
|
|
88
|
-
:focus:not(
|
|
88
|
+
:focus:not([data-focus-mouse='true']),
|
|
89
89
|
[type='checkbox']:focus + label,
|
|
90
90
|
[type='radio']:focus + label {
|
|
91
91
|
width: 100%;
|
|
@@ -95,10 +95,20 @@ p a {
|
|
|
95
95
|
|
|
96
96
|
.bg-dark .btn,
|
|
97
97
|
.back-to-top.dark {
|
|
98
|
-
&:focus:not(
|
|
98
|
+
&:focus:not([data-focus-mouse='true']),
|
|
99
99
|
&%focus {
|
|
100
100
|
box-shadow:
|
|
101
101
|
0 0 0 2px $focus-outline-color-out,
|
|
102
102
|
0 0 0 5px $focus-outline-color-in !important;
|
|
103
103
|
}
|
|
104
104
|
}
|
|
105
|
+
|
|
106
|
+
.autocomplete__wrapper .autocomplete__menu {
|
|
107
|
+
.autocomplete__hint,
|
|
108
|
+
.autocomplete__option {
|
|
109
|
+
&:focus {
|
|
110
|
+
border: 3px solid $focus-outline-color-out !important;
|
|
111
|
+
box-shadow: none !important;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="m 6.2915493,4.711268 c 2.2985915,1.719718 4.7746477,5.205633 5.6788737,7.073239 0.90845,-1.867606 3.380281,-5.353521 5.678873,-7.069014 1.660563,-1.238028 4.347887,-2.197183 4.347887,0.853521 0,0.608451 -0.350704,5.121127 -0.557746,5.852113 -0.714085,2.543662 -3.325352,3.198591 -5.645071,2.805634 4.060564,0.680281 5.087324,2.957746 2.860564,5.235211 -4.233803,4.322535 -6.084507,-1.085916 -6.557747,-2.467606 -0.08873,-0.253521 -0.12676,-0.371831 -0.12676,-0.270422 0,-0.101409 -0.04225,0.0169 -0.126761,0.270422 -0.473239,1.385916 -2.3239437,6.790141 -6.5577465,2.467606 -2.2267606,-2.277465 -1.2,-4.550704 2.856338,-5.239437 C 5.8225352,14.615493 3.215493,13.969014 2.4971831,11.416901 2.2943662,10.690141 1.9478873,6.177465 1.9478873,5.569014 c 0,-3.050704 2.6830986,-2.095775 4.343662,-0.857746 z" />
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M 6,4 4,9 a 2.0000001,2.0000001 0 0 0 -2,2 v 6 h 1 v 2.5 H 6.4999999 V 17 H 17.5 v 2.5 h 3.599609 V 17 H 22 V 11 A 2.0000001,2.0000001 0 0 0 20,9 L 18,4 H 17 Z M 6.5996094,5 H 17.40039 L 19,9 H 5 Z M 5.25,12 A 1.25,1.25 0 0 1 6.4999999,13.25 1.25,1.25 0 0 1 5.25,14.5 1.25,1.25 0 0 1 4,13.25 1.25,1.25 0 0 1 5.25,12 Z m 4.0000001,0 H 14.75 A 1.25,1.25 0 0 1 16,13.25 1.25,1.25 0 0 1 14.75,14.5 H 9.2500001 A 1.25,1.25 0 0 1 7.9999999,13.25 1.25,1.25 0 0 1 9.2500001,12 Z M 18.75,12 A 1.25,1.25 0 0 1 20,13.25 1.25,1.25 0 0 1 18.75,14.5 1.25,1.25 0 0 1 17.5,13.25 1.25,1.25 0 0 1 18.75,12 Z" />
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M 15.931001,6.941 H 14.938 l -0.643,8.961 h 0.984 z M 11.103,6.909 h -0.992 l 0.644,8.961001 h 0.984 z m 7.761001,2.6429998 H 7.1420002 V 10.539 H 18.819001 Z M 18.188001,12.333 H 7.8850002 v 0.984 H 18.143001 Z M 6.3060001,7.487 H 18.953001 l -1.636,6.598 c -0.048,0.192 -0.123001,0.365999 -0.224999,0.526001 -0.101998,0.156997 -0.228,0.293 -0.373002,0.408 -0.145002,0.114999 -0.306002,0.202998 -0.483,0.267001 -0.178998,0.064 -0.363999,0.096 -0.558,0.096 h -5.312 c -0.188001,0 -0.3700002,-0.03001 -0.5449995,-0.091 C 9.6449992,15.23 9.486002,15.144001 9.3440003,15.035003 c -0.1420007,-0.109001 -0.2650016,-0.24 -0.372,-0.395 C 8.8670004,14.486 8.7890004,14.318 8.7410004,14.133 L 5.8020001,3.2499999 h -2.827 V 4.2360001 H 5.0430003 L 7.7810001,14.398 c 0.077,0.288 0.1979981,0.552 0.3650003,0.794001 0.1660006,0.243001 0.3610016,0.451 0.589,0.625 0.228,0.173 0.4829999,0.308999 0.7589999,0.404999 C 9.7730012,16.321 10.063,16.369001 10.366,16.369001 h 5.312001 c 0.310998,0 0.608999,-0.051 0.893,-0.152999 0.281998,-0.101 0.539,-0.241999 0.767,-0.422999 0.228,-0.182 0.424,-0.398001 0.588,-0.649001 0.166,-0.25 0.284001,-0.525 0.356001,-0.821 L 20.216001,6.5010003 H 6.3060001 Z M 16.644001,18.182001 c 0.138999,0 0.270999,0.02699 0.389,0.077 0.12,0.051 0.224999,0.123001 0.315998,0.211 0.091,0.091 0.161001,0.195001 0.212002,0.315001 0.051,0.12 0.078,0.245 0.078,0.381 0,0.135999 -0.02698,0.264 -0.078,0.384 -0.051,0.123001 -0.121002,0.226998 -0.212002,0.317998 -0.091,0.088 -0.195998,0.159999 -0.315998,0.210002 -0.121002,0.051 -0.252,0.078 -0.389,0.078 -0.134,0 -0.262999,-0.02699 -0.384,-0.078 -0.118001,-0.05 -0.224999,-0.121999 -0.313002,-0.210002 -0.092,-0.091 -0.161,-0.195001 -0.212001,-0.317998 -0.054,-0.12 -0.078,-0.248001 -0.078,-0.384 0,-0.135999 0.024,-0.264 0.078,-0.384 0.051,-0.12 0.12,-0.224001 0.212001,-0.312 0.088,-0.088 0.195001,-0.159999 0.313002,-0.211 0.121001,-0.05 0.25,-0.077 0.384,-0.077 z m 0,-0.984 c -0.271,0 -0.528,0.051 -0.770001,0.154998 -0.238998,0.104001 -0.447999,0.242 -0.626999,0.421 -0.18,0.176002 -0.322001,0.384 -0.427,0.624 -0.102002,0.24 -0.154999,0.496 -0.154999,0.768 0,0.272002 0.053,0.528 0.154999,0.768 0.104999,0.24 0.246999,0.451 0.427,0.63 0.178998,0.176002 0.388,0.317001 0.626999,0.421 0.242,0.104002 0.499001,0.154999 0.770001,0.154999 0.276,0 0.533,-0.051 0.775,-0.154999 0.241001,-0.104001 0.45,-0.245 0.63,-0.421 0.18,-0.178998 0.322,-0.39 0.424,-0.63 0.104001,-0.24 0.157999,-0.496 0.157999,-0.768 0,-0.274 -0.054,-0.531 -0.157999,-0.768 -0.102,-0.239998 -0.244,-0.447998 -0.427,-0.626998 -0.179,-0.178 -0.389,-0.317 -0.63,-0.421 -0.239,-0.101 -0.496,-0.152 -0.772,-0.152 z m -7.2430005,0.984 c 0.1389996,0 0.2679987,0.02699 0.3879998,0.077 0.1210016,0.051 0.2260007,0.123001 0.3170007,0.211 0.088,0.091 0.161,0.195001 0.212001,0.315001 0.051,0.12 0.077,0.245 0.077,0.381 0,0.135999 -0.026,0.264 -0.077,0.384 -0.051,0.123001 -0.123999,0.226998 -0.212001,0.317998 -0.091,0.088 -0.1959991,0.159999 -0.3170007,0.210002 -0.1230009,0.051 -0.252,0.078 -0.3879998,0.078 -0.135001,0 -0.2630023,-0.02699 -0.384,-0.078 -0.1210016,-0.05 -0.2249991,-0.121999 -0.3139994,-0.210002 -0.091,-0.091 -0.1610003,-0.195001 -0.2140007,-0.317998 -0.051001,-0.12 -0.075001,-0.248001 -0.075001,-0.384 0,-0.135999 0.024,-0.264 0.075001,-0.384 0.053,-0.12 0.123001,-0.224001 0.2140007,-0.312 0.089,-0.088 0.1930016,-0.159999 0.3139994,-0.211 0.1209977,-0.05 0.248999,-0.077 0.384,-0.077 z m 0,-0.984 c -0.2740007,0 -0.5290001,0.051 -0.7700002,0.154998 -0.2389984,0.104001 -0.4510001,0.242 -0.6279999,0.421 -0.18,0.176002 -0.320999,0.384 -0.4260003,0.624 -0.1049991,0.24 -0.1560001,0.496 -0.1560001,0.768 0,0.272002 0.051001,0.528 0.1560001,0.768 0.104999,0.24 0.2460018,0.451 0.4260003,0.63 0.1769991,0.176002 0.389,0.317001 0.6279999,0.421 0.2410016,0.104002 0.4959999,0.154999 0.7700002,0.154999 0.272999,0 0.5329999,-0.051 0.7739995,-0.154999 0.242,-0.104001 0.451001,-0.245 0.631001,-0.421 0.18,-0.178998 0.318999,-0.39 0.423999,-0.63 0.104002,-0.24 0.154999,-0.496 0.154999,-0.768 0,-0.274 -0.051,-0.531 -0.154999,-0.768 -0.105,-0.239998 -0.247,-0.447998 -0.427,-0.626998 -0.18,-0.178 -0.389,-0.317 -0.63,-0.421 -0.2419998,-0.101 -0.4989997,-0.152 -0.7719995,-0.152 z"
|
|
4
|
+
clip-rule="evenodd" fill-rule="nonzero" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
3
|
+
d="M6.5 2H14.7L19 6.3V16H18V7H15.5C14.6716 7 14 6.32843 14 5.5V3H6.5C6.22386 3 6 3.22386 6 3.5V16H5V3.5C5 2.67157 5.67157 2 6.5 2ZM17.3 6L15 3.7V5.5C15 5.77614 15.2239 6 15.5 6H17.3Z" />
|
|
4
|
+
<path
|
|
5
|
+
d="m 17.402288,17.08612 0.89376,1.773332 0.915039,-1.773332 h 1.014347 l -1.390293,2.461385 1.390293,2.362079 h -1.08528 l -0.893759,-1.666932 -0.91504,1.666932 h -1.014346 l 1.390293,-2.312426 -1.390293,-2.511038 z" />
|
|
6
|
+
<path
|
|
7
|
+
d="m 15.983627,21.831557 q -0.751893,0.163147 -1.354826,0.163147 -0.602933,0 -0.964692,-0.14896 -0.36176,-0.14896 -0.567467,-0.475253 -0.205706,-0.326293 -0.283733,-0.76608 -0.07803,-0.439786 -0.07803,-1.106559 0,-1.397386 0.390133,-1.943573 0.397227,-0.553279 1.454133,-0.553279 0.610026,0 1.411573,0.19152 l -0.02837,0.780266 q -0.702239,-0.1064 -1.170399,-0.1064 -0.461066,0 -0.65968,0.12768 -0.198613,0.120587 -0.29792,0.46816 -0.09221,0.347573 -0.09221,1.184586 0,0.837013 0.19152,1.163306 0.198613,0.3192 0.780266,0.3192 0.588747,0 1.248426,-0.09931 z" />
|
|
8
|
+
<path
|
|
9
|
+
d="m 9.3017075,20.774651 q 0.2127999,0.368853 0.7873595,0.368853 0.57456,0 0.780267,-0.368853 0.212799,-0.375946 0.212799,-1.248426 0,-0.879573 -0.212799,-1.276799 -0.2128,-0.397227 -0.780267,-0.397227 -0.5674663,0 -0.7802662,0.397227 -0.2127998,0.397226 -0.2127998,1.276799 0,0.87248 0.2057065,1.248426 z m 2.3337055,0.624213 q -0.44688,0.59584 -1.546346,0.59584 -1.099466,0 -1.5534391,-0.59584 -0.4468798,-0.602933 -0.4468798,-1.879732 0,-1.2768 0.4468798,-1.893919 Q 8.989601,17.001 10.089067,17.001 q 1.099466,0 1.546346,0.624213 0.453973,0.617119 0.453973,1.893919 0,1.276799 -0.453973,1.879732 z" />
|
|
10
|
+
<path
|
|
11
|
+
d="M 5.4003726,21.909584 H 3.776 V 17.08612 h 1.6243726 q 0.624213,0 1.0285328,0.134773 0.4043198,0.12768 0.624213,0.432693 0.2269866,0.29792 0.3121066,0.709333 0.08512,0.40432 0.08512,1.056906 0,0.652587 -0.078027,1.08528 -0.078027,0.4256 -0.2979199,0.766079 -0.2127999,0.333387 -0.624213,0.48944 -0.4114131,0.14896 -1.0498125,0.14896 z m 1.0285328,-1.915199 q 0.014187,-0.226987 0.014187,-0.624213 0,-0.40432 -0.028373,-0.645493 -0.028373,-0.241173 -0.1347732,-0.439787 -0.1064,-0.198613 -0.3191999,-0.269546 -0.2057065,-0.07803 -0.560373,-0.07803 H 4.7548795 v 3.121065 h 0.6454931 q 0.5319997,0 0.7731729,-0.269546 0.2057066,-0.219893 0.2553599,-0.794453 z" />
|
|
12
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="m 20.115001,12.685 -2.671,-3.5440001 c -0.086,-0.1149996 -0.185001,-0.216 -0.296999,-0.3069996 -0.11,-0.090002 -0.228,-0.168 -0.354002,-0.2319988 -0.126002,-0.061002 -0.260999,-0.1090016 -0.4,-0.144 -0.139,-0.032013 -0.282002,-0.048 -0.429,-0.048 -0.145001,0 -0.286998,0.015987 -0.426,0.048 -0.140001,0.034998 -0.274001,0.082998 -0.4,0.144 -0.126002,0.063999 -0.243999,0.1420006 -0.356999,0.2319988 -0.11,0.091 -0.209001,0.192 -0.296999,0.3069996 L 11.941001,12.515 c 0,0 0,0 0,0 0,0 0,0 0,0 L 11.469,12.043 c -0.093,-0.096 -0.198002,-0.178998 -0.308001,-0.248001 -0.113,-0.072 -0.231001,-0.130998 -0.354002,-0.176001 -0.123001,-0.046 -0.248999,-0.078 -0.381,-0.096 -0.130998,-0.01901 -0.262998,-0.024 -0.394,-0.01599 -0.1339992,0.007 -0.2629983,0.03201 -0.386,0.072 -0.1260019,0.037 -0.2439987,0.088 -0.3589984,0.152002 -0.1130004,0.061 -0.2199988,0.135998 -0.3220007,0.217999 -0.099999,0.083 -0.1939993,0.176001 -0.276,0.277999 L 5.5289976,16.011 l 0.762,0.63 3.1620001,-3.782001 c 0.096,-0.118 0.200999,-0.207998 0.3139994,-0.267001 0.1119987,-0.059 0.2219981,-0.093 0.3320009,-0.101 0.121002,-0.011 0.241002,0.008 0.358999,0.048 0.116001,0.042 0.219998,0.106001 0.308999,0.197 l 0.472005,0.474999 c 0.106998,0.106001 0.228,0.183999 0.361999,0.231999 0.135999,0.048 0.272999,0.066 0.41,0.056 0.139,-0.008 0.271,-0.048 0.397,-0.111999 0.128999,-0.067 0.236001,-0.159998 0.327001,-0.279998 l 2.542,-3.3740018 c 0.081,-0.1069984 0.183001,-0.188999 0.303001,-0.2480013 0.120997,-0.061002 0.25,-0.091 0.384,-0.091 0.137,0 0.265001,0.030009 0.385999,0.091 0.121002,0.058998 0.223,0.1409991 0.303001,0.2480013 L 19.324001,13.277 Z M 2.6630001,15.942 v 0.987 H 21.338001 V 15.942 Z M 7.0450005,5.8869998 c 0.1660007,0 0.3189997,0.032013 0.4639998,0.094001 0.144,0.060998 0.2700019,0.1459994 0.378,0.2530016 0.1069984,0.1069984 0.1930016,0.2319987 0.2539994,0.3759987 0.061999,0.144 0.094001,0.2960013 0.094001,0.461 0,0.1660006 -0.032013,0.3179981 -0.094001,0.462 -0.061002,0.144 -0.147001,0.2690003 -0.2539994,0.3759987 -0.108,0.1060007 -0.2340019,0.192 -0.378,0.2530016 -0.1450016,0.061002 -0.2980006,0.092999 -0.4639998,0.092999 -0.1669984,0 -0.3189996,-0.032013 -0.4640001,-0.092999 -0.1450016,-0.061002 -0.2709997,-0.1470013 -0.378,-0.253002 -0.108,-0.1069984 -0.1939994,-0.2319987 -0.2550009,-0.3759987 -0.061999,-0.144 -0.094001,-0.2960013 -0.094001,-0.462 0,-0.1649991 0.032013,-0.3170003 0.094001,-0.461 0.061001,-0.144 0.1470009,-0.2690003 0.2550009,-0.3759987 0.1069984,-0.1069984 0.2330003,-0.192 0.378,-0.2530016 0.1450016,-0.061999 0.2969991,-0.094001 0.4640001,-0.094001 z m 0,-0.9860002 c -0.1989996,0 -0.3920001,0.026003 -0.5800002,0.077 C 6.2780006,5.0279986 6.1060019,5.103 5.9450004,5.1970006 c -0.1610003,0.096 -0.3080013,0.2100019 -0.4420003,0.3410003 -0.132,0.1330016 -0.2469996,0.2799988 -0.3440012,0.4400001 -0.092999,0.1599988 -0.168,0.3299982 -0.219001,0.5170001 -0.051999,0.1869997 -0.078002,0.3790001 -0.078002,0.576 0,0.1980019 0.026003,0.39 0.080001,0.576 0.051001,0.1869997 0.1260019,0.3580007 0.2199987,0.5180002 C 5.2559966,8.325 5.370996,8.4710032 5.502996,8.605001 c 0.1339993,0.1300007 0.2810003,0.2450003 0.4420002,0.339001 0.1610003,0.092999 0.3329991,0.168 0.5199999,0.2179993 0.1880013,0.053998 0.3810002,0.080001 0.5800003,0.080001 0.200999,0 0.3939998,-0.026003 0.582,-0.080001 0.1850007,-0.049999 0.3560016,-0.125 0.5170001,-0.217999 C 8.3049968,8.8500016 8.4519977,8.735002 8.5869968,8.6050013 8.7179952,8.471002 8.8329949,8.3250026 8.9299965,8.1650016 9.0239971,8.0050028 9.0989981,7.8340019 9.1499952,7.6470014 c 0.051001,-0.1860019 0.077,-0.378 0.077,-0.576 0,-0.2000012 -0.026003,-0.3920001 -0.077,-0.5780001 C 9.0989943,6.308001 9.0239933,6.1380016 8.9299965,5.9780013 8.8329987,5.8180026 8.7179952,5.6710017 8.5869968,5.5380012 8.4519958,5.4070028 8.3049949,5.2930009 8.1439965,5.1970009 7.9829962,5.1030003 7.8119952,5.0279993 7.6239966,4.9779999 7.4359953,4.926999 7.2429968,4.9009996 7.0449968,4.9009996 Z M 3.5740002,3.1299999 H 20.426001 c 0.049,0 0.101998,0.013002 0.161,0.041998 0.057,0.03001 0.109999,0.067 0.161,0.1119988 0.049,0.046001 0.089,0.099001 0.123999,0.1579993 0.03201,0.058001 0.048,0.1169991 0.048,0.1780007 V 20.379998 c 0,0.061 -0.01599,0.12 -0.048,0.178 -0.035,0.059 -0.075,0.111999 -0.123999,0.158 -0.051,0.045 -0.104001,0.082 -0.161,0.111998 -0.059,0.02899 -0.111999,0.042 -0.161,0.042 H 3.5740002 c -0.048,0 -0.1010003,-0.013 -0.1599987,-0.042 -0.056999,-0.03001 -0.1099994,-0.067 -0.1610003,-0.111998 -0.048,-0.046 -0.089,-0.099 -0.1239988,-0.158 -0.032013,-0.058 -0.048,-0.116999 -0.048,-0.178 V 3.6199968 c 0,-0.061002 0.015987,-0.12 0.048,-0.1780007 C 3.1640004,3.3829981 3.2050014,3.3299974 3.2530012,3.2839968 3.3040022,3.2389978 3.3570024,3.2019958 3.4140015,3.171998 3.4729995,3.143009 3.5260002,3.13 3.5740002,3.1299999 Z m 0,-0.9870002 c -0.1280012,0 -0.2570003,0.015987 -0.3829999,0.049999 -0.1260019,0.032013 -0.2439988,0.080002 -0.351001,0.145002 C 2.7299992,2.3990022 2.6279992,2.4760026 2.5369991,2.5640013 2.4429993,2.652 2.3649993,2.751001 2.2979992,2.8600026 c -0.067,0.1099993 -0.1179999,0.2269984 -0.1549999,0.3549997 -0.034998,0.1280012 -0.054,0.264 -0.054,0.4050001 V 20.380003 c 0,0.140999 0.019,0.277002 0.054,0.405 0.037002,0.128001 0.088,0.245 0.1549999,0.355 0.067,0.109001 0.1450001,0.207998 0.2389999,0.296001 0.091,0.088 0.1930001,0.164999 0.3030002,0.226001 0.1069985,0.065 0.2249991,0.113 0.348,0.144 0.1260019,0.035 0.255001,0.051 0.3860002,0.051 H 20.426 c 0.132,0 0.260001,-0.01599 0.387,-0.051 0.123001,-0.03099 0.241002,-0.079 0.348,-0.144 0.11,-0.061 0.212002,-0.137999 0.303001,-0.226001 0.094,-0.088 0.171999,-0.187 0.238999,-0.296001 0.067,-0.11 0.118,-0.226999 0.154998,-0.355 0.035,-0.128001 0.054,-0.264 0.054,-0.405 V 3.6200024 c 0,-0.140999 -0.01901,-0.2770015 -0.054,-0.4050001 C 21.820996,3.087001 21.769999,2.9700019 21.703,2.8600026 21.636,2.751001 21.557998,2.6520038 21.464001,2.5640013 21.373002,2.4760026 21.271,2.3990022 21.161,2.3380007 c -0.106998,-0.065 -0.224999,-0.1130004 -0.351001,-0.1450016 -0.126002,-0.034016 -0.255001,-0.049999 -0.384,-0.049999 z"
|
|
4
|
+
clip-rule="evenodd" fill-rule="nonzero" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="m 11.079001,18.027 c -0.083,-0.085 -0.154999,-0.178 -0.214001,-0.288 -0.062,-0.106 -0.118001,-0.216 -0.171999,-0.327998 -0.056,-0.111999 -0.113,-0.221001 -0.173998,-0.327999 -0.059,-0.106001 -0.132,-0.202001 -0.219998,-0.288 -0.086,-0.082 -0.190999,-0.152001 -0.3139999,-0.202001 -0.1230009,-0.051 -0.276,-0.078 -0.456,-0.078 -0.091,0 -0.1869997,0.008 -0.2899994,0.024 -0.1010003,0.01599 -0.2090003,0.046 -0.324,0.088 -0.1180006,0.04 -0.2389984,0.096 -0.3669997,0.163 -0.128999,0.069 -0.2659993,0.157001 -0.4050001,0.264 -0.03001,-0.048 -0.065,-0.093 -0.1049991,-0.139 -0.043,-0.045 -0.094001,-0.082 -0.1549984,-0.116999 -0.061999,-0.035 -0.1339994,-0.061 -0.2149985,-0.083 -0.082998,-0.01901 -0.18,-0.02899 -0.2869984,-0.02899 -0.1819994,0 -0.3700006,0.024 -0.5629999,0.077 -0.1900007,0.051 -0.3810002,0.118001 -0.5740003,0.198002 -0.1900006,0.08 -0.3809998,0.169999 -0.5679999,0.269 -0.1880012,0.101001 -0.3709984,0.197001 -0.5499999,0.296002 -0.176999,0.096 -0.3490015,0.186999 -0.5150003,0.269 -0.1640012,0.08 -0.3220006,0.147001 -0.4689997,0.192 l 0.303001,0.942 c 0.1470009,-0.048 0.3030009,-0.111999 0.4640001,-0.190001 0.1610003,-0.08 0.324,-0.162002 0.4899999,-0.248001 0.1669984,-0.088 0.3329991,-0.176001 0.4990001,-0.265999 0.1690015,-0.091 0.3299981,-0.173999 0.4909999,-0.248002 0.1579994,-0.075 0.3109984,-0.142 0.456,-0.195001 0.1450016,-0.053 0.2810003,-0.085 0.4050002,-0.101 -0.003,0.02899 -0.003,0.058 -0.00601,0.088 -0.002,0.02899 -0.00499,0.058 -0.00801,0.085 0,0.02899 -0.002,0.059 -0.002,0.088 -0.003,0.03201 -0.003,0.061 -0.003,0.091 0,0.104001 0.026986,0.193999 0.082998,0.274 0.054002,0.078 0.1210016,0.134 0.2040001,0.171001 0.080001,0.037 0.1690015,0.054 0.2650015,0.045 0.094001,-0.008 0.183001,-0.045 0.2629985,-0.111998 0.1099993,-0.096 0.228,-0.194 0.3519987,-0.301002 0.123001,-0.106998 0.2489991,-0.205001 0.375001,-0.296001 0.1260018,-0.088 0.252,-0.163 0.3810002,-0.224001 0.1280012,-0.059 0.252,-0.088 0.3750009,-0.088 0.043,0 0.080999,0.01599 0.1099994,0.048 0.032013,0.03201 0.061999,0.077 0.091,0.133001 0.030009,0.059 0.058998,0.126002 0.094001,0.202999 0.032013,0.08 0.073002,0.163 0.1210016,0.253001 0.048,0.091 0.1069984,0.187 0.1769984,0.286001 0.07,0.098 0.154999,0.200001 0.257001,0.299002 z"
|
|
4
|
+
clip-rule="evenodd" fill-rule="nonzero" />
|
|
5
|
+
<polygon points="32891,12000 32891,11013 28927,11013 28927,12000 " clip-rule="evenodd" fill-rule="nonzero" />
|
|
6
|
+
<polygon points="36857,10029 36857,9042 28927,9042 28927,10029 " clip-rule="evenodd" fill-rule="nonzero" />
|
|
7
|
+
<path
|
|
8
|
+
d="m 20.076001,8.9220001 -7.004,6.9719999 c -0.108,0.106001 -0.212001,0.24 -0.310999,0.397 -0.1,0.154999 -0.190998,0.322999 -0.274,0.496 -0.086,0.176001 -0.161001,0.351999 -0.224999,0.528 -0.067,0.176001 -0.121002,0.336 -0.164002,0.48 -0.043,0.144 -0.069,0.264 -0.086,0.363001 -0.013,0.099 -0.013,0.157002 0.009,0.176001 0.01799,0.01901 0.077,0.02101 0.176999,0.005 0.096,-0.013 0.219001,-0.042 0.363999,-0.085 0.147999,-0.04 0.308999,-0.093 0.485,-0.159999 0.178001,-0.067 0.355,-0.140999 0.529,-0.224001 0.174002,-0.083 0.339999,-0.176001 0.499,-0.274999 0.158,-0.098 0.289002,-0.202 0.397,-0.308999 l 7.004001,-6.969 c 0.104999,-0.104001 0.176999,-0.207999 0.222999,-0.3200012 0.043,-0.1090016 0.064,-0.219001 0.064,-0.3309997 0,-0.1330016 -0.02899,-0.264 -0.086,-0.3859998 -0.059,-0.1230009 -0.134,-0.2349997 -0.23,-0.3309997 -0.097,-0.096 -0.207001,-0.1710009 -0.330002,-0.2290015 -0.123001,-0.058999 -0.255001,-0.085999 -0.389,-0.085999 -0.113,0 -0.223,0.021014 -0.332999,0.067 -0.109999,0.044999 -0.214001,0.116999 -0.319,0.2210003 z"
|
|
9
|
+
clip-rule="evenodd" fill-rule="nonzero" />
|
|
10
|
+
<path
|
|
11
|
+
d="m 10.873001,2.7609997 v 2.8330001 c 0,0.1280013 0.01901,0.2559988 0.056,0.3810002 0.035,0.1259981 0.089,0.243001 0.152999,0.3499994 0.067,0.1090016 0.147001,0.2099981 0.238998,0.3010016 0.093,0.092999 0.193002,0.1710009 0.303001,0.236999 0.11,0.067 0.228,0.1180007 0.351001,0.1549985 0.126002,0.034998 0.255001,0.053 0.386,0.053 h 2.848 l -0.695,-0.985999 h -2.153 c -0.072,0 -0.139,-0.010998 -0.200999,-0.034998 -0.062,-0.024 -0.115,-0.056001 -0.158,-0.1019982 -0.043,-0.041998 -0.078,-0.096 -0.102002,-0.1540006 -0.024,-0.061999 -0.035,-0.1280013 -0.035,-0.2000013 v -2.142 z"
|
|
12
|
+
clip-rule="evenodd" fill-rule="nonzero" />
|
|
13
|
+
<path
|
|
14
|
+
d="m 14.839001,18.894 v 1.486001 c 0,0.074 -0.013,0.140999 -0.035,0.200001 -0.024,0.061 -0.059,0.111999 -0.102002,0.154 -0.045,0.046 -0.096,0.078 -0.154998,0.102002 -0.062,0.024 -0.128999,0.03402 -0.204,0.03402 H 3.4390003 c -0.072,0 -0.1389997,-0.01002 -0.2009991,-0.03402 -0.058998,-0.024 -0.1130003,-0.056 -0.156,-0.102002 -0.044999,-0.042 -0.077,-0.093 -0.1010003,-0.154 -0.024983,-0.059 -0.034998,-0.126002 -0.034998,-0.200001 V 3.6199998 c 0,-0.073999 0.010016,-0.1409991 0.034998,-0.2000013 0.024,-0.061002 0.056001,-0.1119987 0.1010003,-0.1540006 0.043,-0.046001 0.097002,-0.078002 0.156,-0.1020019 0.061999,-0.024 0.1289991,-0.034016 0.2009991,-0.034016 h 7.7180007 l 3.682,3.659 v 5.374001 l 0.99,-0.984981 V 6.3809999 l -4.259,-4.2380002 H 3.4390003 c -0.1289991,0 -0.2580019,0.017991 -0.3830003,0.053 -0.1260019,0.037002 -0.2439988,0.087999 -0.3519988,0.1549985 -0.1099993,0.066002 -0.2120012,0.144 -0.3030009,0.236999 -0.094001,0.091 -0.171001,0.192 -0.2380006,0.3019994 -0.068001,0.1060006 -0.1189985,0.2240013 -0.156,0.3460006 -0.034999,0.1260019 -0.054002,0.2539994 -0.054002,0.384 V 20.379998 c 0,0.130001 0.019011,0.258002 0.054002,0.384 0.037001,0.122 0.087999,0.24 0.156,0.346001 0.067,0.109999 0.144,0.211 0.2380006,0.301999 0.091,0.093 0.1930016,0.171001 0.3030009,0.236999 0.108,0.067 0.2260007,0.118001 0.3490016,0.154999 0.1260019,0.035 0.255001,0.053 0.3860001,0.053 H 14.343003 c 0.134,0 0.262999,-0.01799 0.386001,-0.053 0.123001,-0.037 0.241001,-0.088 0.351001,-0.154999 0.109999,-0.066 0.209,-0.144 0.303,-0.236999 0.092,-0.091 0.171999,-0.192 0.236002,-0.301999 0.067,-0.106001 0.118,-0.224001 0.156,-0.349002 0.038,-0.125 0.054,-0.253001 0.054,-0.380999 V 17.907 Z"
|
|
15
|
+
clip-rule="evenodd" fill-rule="nonzero" />
|
|
16
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
3
|
+
d="M6.5 2H14.7L19 6.3V16H18V7H15.5C14.6716 7 14 6.32843 14 5.5V3H6.5C6.22386 3 6 3.22386 6 3.5V16H5V3.5C5 2.67157 5.67157 2 6.5 2ZM17.3 6L15 3.7V5.5C15 5.77614 15.2239 6 15.5 6H17.3Z" />
|
|
4
|
+
<path
|
|
5
|
+
d="m 15.625,17.085937 1.390625,2.511719 -1.390625,2.3125 h 1.013672 l 0.916015,-1.667969 0.892579,1.667969 h 1.085937 l -1.390625,-2.363281 1.390625,-2.460938 h -1.015625 l -0.914062,1.773438 -0.894532,-1.773438 z" />
|
|
6
|
+
<path d="m 8.9140625,17.085937 v 4.824219 H 11.660156 V 21.044922 H 9.8925781 v -3.958985 z" />
|
|
7
|
+
<path
|
|
8
|
+
d="m 4.4179687,17.085937 1.3886719,2.511719 -1.3886719,2.3125 h 1.0136719 l 0.9140625,-1.667969 0.8945313,1.667969 h 1.0859375 l -1.390625,-2.363281 1.390625,-2.460938 H 7.3105469 L 6.3964844,18.859375 5.5019531,17.085937 Z" />
|
|
9
|
+
<path
|
|
10
|
+
d="m 13.644531,17.001953 c -0.510719,0 -0.911887,0.117072 -1.205078,0.353516 C 12.146263,17.591913 12,17.951248 12,18.433594 c 0,0.383039 0.111727,0.682862 0.333984,0.90039 0.226987,0.2128 0.61356,0.398635 1.16211,0.554688 0.345208,0.09931 0.574007,0.190271 0.6875,0.27539 0.118222,0.08512 0.177734,0.204145 0.177734,0.355469 0,0.416142 -0.250692,0.623047 -0.751953,0.623047 -0.335751,0 -0.819455,-0.04183 -1.453125,-0.126953 l -0.09961,0.759766 0.255859,0.04883 c 0.534364,0.113493 0.984663,0.169922 1.353516,0.169922 0.496532,0 0.899654,-0.128584 1.207031,-0.388672 0.307378,-0.260089 0.460937,-0.6444 0.460937,-1.150391 0,-0.397225 -0.09405,-0.689751 -0.283203,-0.878906 -0.189156,-0.193885 -0.521252,-0.366254 -0.99414,-0.517578 -0.468159,-0.151324 -0.766852,-0.267265 -0.894532,-0.347657 -0.127679,-0.08039 -0.191406,-0.196331 -0.191406,-0.347656 0,-0.340479 0.257989,-0.511719 0.773438,-0.511719 0.274275,10e-7 0.745336,0.03762 1.412109,0.113282 l 0.07813,-0.771485 -0.255859,-0.05078 c -0.539093,-0.09458 -0.984047,-0.140625 -1.333985,-0.140625 z" />
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="m 10.243995,18.027013 c -0.083,-0.085 -0.156,-0.178001 -0.214998,-0.288 -0.061002,-0.106001 -0.1180007,-0.216 -0.1710006,-0.327999 -0.056999,-0.111999 -0.1130003,-0.221001 -0.1749997,-0.327999 -0.058998,-0.106001 -0.1309984,-0.202001 -0.2199988,-0.288 -0.085001,-0.082 -0.1900002,-0.152001 -0.3130012,-0.202001 -0.1239987,-0.051 -0.2770012,-0.078 -0.4559996,-0.078 -0.091,0 -0.1880013,0.008 -0.2899994,0.024 -0.1019981,0.01599 -0.2090003,0.046 -0.324,0.088 -0.1180006,0.04 -0.2390022,0.096 -0.3680012,0.163 -0.1280013,0.069 -0.2650016,0.157001 -0.4049999,0.264 -0.028989,-0.048 -0.063999,-0.093 -0.1040012,-0.139 -0.043,-0.045 -0.094001,-0.082 -0.156,-0.116999 -0.061002,-0.035 -0.1339994,-0.061 -0.2140007,-0.083 -0.084,-0.01901 -0.18,-0.02899 -0.2869984,-0.02899 -0.1830009,0 -0.3700006,0.024 -0.5629992,0.077 -0.1909973,0.051 -0.380999,0.118001 -0.5739983,0.198002 -0.1909985,0.08 -0.3809999,0.169999 -0.569,0.269 -0.1869997,0.101 -0.3700002,0.197 -0.5499995,0.296001 -0.1760013,0.096 -0.348,0.187 -0.5139994,0.269001 -0.1640013,0.08 -0.3220003,0.147001 -0.4699998,0.192 l 0.3030006,0.941979 c 0.1479987,-0.048 0.3030009,-0.111998 0.4640001,-0.19 0.1610003,-0.08 0.3250015,-0.162002 0.4909991,-0.248002 0.1660007,-0.088 0.3329991,-0.176001 0.4989997,-0.265999 0.1690016,-0.091 0.3299982,-0.173998 0.4909996,-0.248001 0.1579994,-0.075 0.3110022,-0.142001 0.4549999,-0.195001 0.1450016,-0.053 0.2820019,-0.085 0.4049999,-0.101 -0.002,0.02899 -0.002,0.058 -0.00499,0.088 -0.003,0.02899 -0.00601,0.058 -0.00801,0.085 0,0.02899 -0.003,0.059 -0.003,0.088 -0.003,0.03201 -0.003,0.061 -0.003,0.091 0,0.104002 0.026986,0.194 0.084,0.274001 0.053,0.078 0.12,0.133999 0.2029984,0.171001 0.080999,0.037 0.1690016,0.054 0.2659994,0.045 0.094001,-0.008 0.1819994,-0.045 0.2629984,-0.111999 0.1099994,-0.096 0.228,-0.193999 0.351001,-0.301001 0.1239987,-0.106999 0.248999,-0.205002 0.3759987,-0.296002 0.1260019,-0.088 0.252,-0.162999 0.3799998,-0.224001 0.128999,-0.059 0.252,-0.088 0.3759987,-0.088 0.043,0 0.080001,0.01599 0.1099994,0.048 0.032013,0.03201 0.061999,0.077 0.091,0.133002 0.028989,0.059 0.058998,0.126002 0.094001,0.202998 0.032013,0.08 0.072,0.163 0.1210016,0.253002 0.048,0.091 0.1069984,0.187 0.1760012,0.286001 0.070001,0.098 0.156,0.200001 0.2579982,0.299002 z"
|
|
4
|
+
clip-rule="evenodd" fill-rule="nonzero" />
|
|
5
|
+
<path
|
|
6
|
+
d="m 19.240989,8.9220122 -7.004995,6.9719998 c -0.106999,0.106001 -0.212001,0.24 -0.310999,0.397 -0.099,0.154998 -0.19,0.322998 -0.272999,0.496 -0.086,0.176002 -0.161,0.351999 -0.226,0.528 -0.067,0.176002 -0.12,0.336 -0.163,0.48 -0.043,0.144 -0.07,0.264 -0.086,0.363001 -0.013,0.099 -0.013,0.157002 0.008,0.176002 0.01901,0.01901 0.078,0.02101 0.176999,0.005 0.097,-0.013 0.219999,-0.042 0.365001,-0.085 0.147001,-0.04 0.308001,-0.093 0.484999,-0.159999 0.176999,-0.067 0.353998,-0.140999 0.528,-0.224001 0.175,-0.083 0.341,-0.176001 0.499,-0.274999 0.157999,-0.098 0.289999,-0.202 0.396999,-0.308999 l 7.004995,-6.969002 c 0.104002,-0.104001 0.176999,-0.207999 0.221998,-0.3200014 0.043,-0.1089978 0.065,-0.219001 0.065,-0.3309997 0,-0.1330016 -0.03001,-0.264 -0.086,-0.3860001 -0.059,-0.123001 -0.133999,-0.2349997 -0.231001,-0.3309997 -0.096,-0.096 -0.205999,-0.171001 -0.329,-0.2290016 -0.123999,-0.058998 -0.255001,-0.085999 -0.389,-0.085999 -0.113,0 -0.222999,0.021014 -0.332999,0.067 -0.109999,0.044999 -0.214,0.1169991 -0.318999,0.2210003 z"
|
|
7
|
+
clip-rule="evenodd" fill-rule="nonzero" />
|
|
8
|
+
</svg>
|