@iris.interactive/handcook 7.2.2-beta → 8.0.0-alpha.2
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/.gitlab-ci.yml +2 -2
- package/.nvmrc +1 -1
- package/.stylelintrc +89 -0
- package/README.md +1 -1
- package/biome.json +43 -0
- package/package.json +35 -40
- package/public/index.css +1 -0
- package/public/index.html +33 -36
- package/public/index.js +240 -0
- package/public/scripts/components/collapse/collapse.component.js +1 -82
- package/public/scripts/components/collapse/collapse.component.scss +4 -4
- package/public/scripts/components/dropdown/dropdown.component.js +1 -68
- package/public/scripts/components/lazyload/lazyload.component.js +1 -48
- package/public/scripts/components/lightbox/lightbox.component.js +1 -78
- package/public/scripts/components/modal/modal.component.js +1 -70
- package/public/scripts/components/nats/nats.component.js +1 -49
- package/public/scripts/components/overlay/overlay.component.js +1 -88
- package/public/scripts/components/popin/popin.component.js +1 -137
- package/public/scripts/components/scroll-reveal/scroll-reveal.component.js +1 -155
- package/public/scripts/components/scrollspy/scrollspy.component.js +1 -93
- package/public/scripts/components/share/share.component.js +1 -51
- package/public/scripts/components/slider/slider.component.js +1 -312
- package/public/scripts/components/smooth-scroll/smooth-scroll.component.js +1 -45
- package/public/scripts/components/tab/tab.component.js +1 -69
- package/public/scripts/components/toggle/toggle.component.js +1 -38
- package/public/scripts/components/tooltip/tooltip.component.js +1 -106
- package/public/scripts/enumerators/element.enum.js +1 -27
- package/public/scripts/enumerators/share.enum.js +1 -6
- package/public/scripts/enumerators/smooth-scroll.enum.js +1 -6
- package/public/scripts/enumerators/tooltip.enum.js +1 -12
- package/public/scripts/handcook.js +1 -36
- package/public/scripts/hc_swiper_v11.js +5 -0
- package/public/scripts/libraries/swiper-11/index.js +7 -0
- package/public/scripts/libraries/swiper-8/index.js +7 -0
- package/public/scripts/support/cookie.support.js +1 -22
- package/public/scripts/support/hash.support.js +1 -11
- package/public/scripts/support/toggle-html.support.js +1 -5
- package/public/scripts/support/wrap-select.support.js +1 -3
- package/public/styles/hc_swiper_v11.css +1 -0
- package/public/styles/hc_swiper_v11.js +1 -0
- package/public/styles/scss/_utils.scss +21 -17
- package/public/styles/scss/handcook.scss +5 -5
- package/public/styles/scss/mixins/_mixin-font.scss +19 -6
- package/public/styles/scss/mixins/_mixin-layout.scss +10 -7
- package/public/styles/scss/mixins/_mixin-style.scss +63 -60
- package/public/styles/scss/style.css +1 -172
- package/mix-manifest.json +0 -57
- package/public/scripts/components/collapse/collapse.component.min.js +0 -1
- package/public/scripts/components/dropdown/dropdown.component.min.js +0 -1
- package/public/scripts/components/lazyload/lazyload.component.min.js +0 -1
- package/public/scripts/components/lightbox/lightbox.component.min.js +0 -1
- package/public/scripts/components/modal/modal.component.min.js +0 -1
- package/public/scripts/components/scrollspy/scrollspy.component.min.js +0 -1
- package/public/scripts/components/slider/slider.component.min.js +0 -1
- package/public/scripts/components/smooth-scroll/smooth-scroll.component.min.js +0 -1
- package/public/scripts/components/tab/tab.component.min.js +0 -1
- package/public/scripts/components/toggle/toggle.component.min.js +0 -1
- package/public/scripts/components/tooltip/tooltip.component.min.js +0 -1
- package/public/scripts/index.js.LICENSE.txt +0 -1
- package/public/styles/style.css +0 -28
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
@use "mixins/mixin-layout";
|
|
2
|
+
@use "mixins/mixin-style";
|
|
3
|
+
@use "variables";
|
|
4
|
+
|
|
1
5
|
/*
|
|
2
6
|
* Created by IRIS Interactive
|
|
3
7
|
* User : IRIS Interactive
|
|
@@ -6,7 +10,7 @@
|
|
|
6
10
|
/* Utils classes
|
|
7
11
|
/* ============================================= */
|
|
8
12
|
.stretched-link {
|
|
9
|
-
@include stretched-link;
|
|
13
|
+
@include mixin-style.stretched-link;
|
|
10
14
|
}
|
|
11
15
|
|
|
12
16
|
|
|
@@ -76,13 +80,13 @@
|
|
|
76
80
|
.hover-item {
|
|
77
81
|
|
|
78
82
|
img {
|
|
79
|
-
@include transition;
|
|
83
|
+
@include mixin-style.transition;
|
|
80
84
|
will-change: transform;
|
|
81
85
|
}
|
|
82
86
|
|
|
83
87
|
&:hover {
|
|
84
88
|
img {
|
|
85
|
-
@include animate;
|
|
89
|
+
@include mixin-style.animate;
|
|
86
90
|
}
|
|
87
91
|
}
|
|
88
92
|
}
|
|
@@ -90,15 +94,15 @@
|
|
|
90
94
|
/* Opening
|
|
91
95
|
/* ============================================= */
|
|
92
96
|
.is-open {
|
|
93
|
-
color:
|
|
97
|
+
color: variables.$c-success;
|
|
94
98
|
}
|
|
95
99
|
|
|
96
100
|
.soon-close {
|
|
97
|
-
color:
|
|
101
|
+
color: variables.$c-warning;
|
|
98
102
|
}
|
|
99
103
|
|
|
100
104
|
.is-close {
|
|
101
|
-
color:
|
|
105
|
+
color: variables.$c-error;
|
|
102
106
|
}
|
|
103
107
|
|
|
104
108
|
/* Font
|
|
@@ -111,34 +115,34 @@
|
|
|
111
115
|
/* Sizes
|
|
112
116
|
/* ============================================= */
|
|
113
117
|
.font-size-xsmall {
|
|
114
|
-
font-size:
|
|
118
|
+
font-size: variables.$font-size-xsmall--rem;
|
|
115
119
|
}
|
|
116
120
|
|
|
117
121
|
.font-size-small {
|
|
118
|
-
font-size:
|
|
122
|
+
font-size: variables.$font-size-small--rem;
|
|
119
123
|
}
|
|
120
124
|
|
|
121
125
|
.font-size-regular {
|
|
122
|
-
font-size:
|
|
126
|
+
font-size: variables.$font-size-regular--rem;
|
|
123
127
|
|
|
124
|
-
@include breakpoint(small) {
|
|
125
|
-
font-size:
|
|
128
|
+
@include mixin-layout.breakpoint(small) {
|
|
129
|
+
font-size: variables.$font-size-regular--small--rem;
|
|
126
130
|
}
|
|
127
131
|
}
|
|
128
132
|
|
|
129
133
|
.font-size-large {
|
|
130
|
-
font-size:
|
|
134
|
+
font-size: variables.$font-size-large--rem;
|
|
131
135
|
|
|
132
|
-
@include breakpoint(small) {
|
|
133
|
-
font-size:
|
|
136
|
+
@include mixin-layout.breakpoint(small) {
|
|
137
|
+
font-size: variables.$font-size-large--small--rem;
|
|
134
138
|
}
|
|
135
139
|
}
|
|
136
140
|
|
|
137
141
|
.font-size-xlarge {
|
|
138
|
-
font-size:
|
|
142
|
+
font-size: variables.$font-size-extra-large--rem;
|
|
139
143
|
|
|
140
|
-
@include breakpoint(small) {
|
|
141
|
-
font-size:
|
|
144
|
+
@include mixin-layout.breakpoint(small) {
|
|
145
|
+
font-size: variables.$font-size-extra-large--small--rem;
|
|
142
146
|
}
|
|
143
147
|
}
|
|
144
148
|
|
|
@@ -13,8 +13,8 @@
|
|
|
13
13
|
* @copyright Copyright (c) 2002-2022 IRIS Interactive, Inc. (http://www.iris-interactive.fr)
|
|
14
14
|
*/
|
|
15
15
|
|
|
16
|
-
@
|
|
17
|
-
@
|
|
18
|
-
@
|
|
19
|
-
@
|
|
20
|
-
@
|
|
16
|
+
@use "variables";
|
|
17
|
+
@use "mixins/mixin-font";
|
|
18
|
+
@use "mixins/mixin-layout";
|
|
19
|
+
@use "mixins/mixin-style";
|
|
20
|
+
@use "utils";
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
@use "../variables";
|
|
2
|
+
|
|
1
3
|
/*!
|
|
2
4
|
* IRIS Interactive
|
|
3
5
|
*
|
|
@@ -16,15 +18,26 @@
|
|
|
16
18
|
|
|
17
19
|
/* Font icon
|
|
18
20
|
/* ============================================= */
|
|
19
|
-
@mixin fi($name) {
|
|
21
|
+
@mixin fi($name, $font: 'customer-font') {
|
|
20
22
|
content: var(--font-icon--#{$name});
|
|
21
|
-
font-family:
|
|
23
|
+
font-family: #{$font};
|
|
22
24
|
font-style: initial;
|
|
23
25
|
text-transform: none;
|
|
24
26
|
font-weight: 400;
|
|
25
27
|
font-display: swap;
|
|
26
28
|
}
|
|
27
29
|
|
|
30
|
+
/* Font icon selector
|
|
31
|
+
/* ============================================= */
|
|
32
|
+
@mixin fi-selector($prefix: '') {
|
|
33
|
+
#{$prefix}.ficore,
|
|
34
|
+
#{$prefix}.fiet,
|
|
35
|
+
#{$prefix}.figb,
|
|
36
|
+
#{$prefix}.fi {
|
|
37
|
+
@content;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
28
41
|
/* Font size
|
|
29
42
|
/* ============================================= */
|
|
30
43
|
@function rem-size( $size ) {
|
|
@@ -33,7 +46,7 @@
|
|
|
33
46
|
}
|
|
34
47
|
|
|
35
48
|
@function vw-size( $size ) {
|
|
36
|
-
$ceil-size: (
|
|
49
|
+
$ceil-size: (variables.$container / 1px) / (1 - (variables.$margin-xlarge / 100%) * 2);
|
|
37
50
|
@return calc(#{$size} * 100 / #{$ceil-size} * 1vw);
|
|
38
51
|
}
|
|
39
52
|
|
|
@@ -59,13 +72,13 @@
|
|
|
59
72
|
}
|
|
60
73
|
|
|
61
74
|
@if $format == 'meta' {
|
|
62
|
-
font-size: #{
|
|
75
|
+
font-size: #{variables.$meta-font-size--rem};
|
|
63
76
|
line-height: 1.2;
|
|
64
77
|
}
|
|
65
78
|
|
|
66
79
|
@if $icon != '' {
|
|
67
80
|
&:#{$icon-position} {
|
|
68
|
-
color: #{
|
|
81
|
+
color: #{variables.$icon-color};
|
|
69
82
|
@include fi(#{$icon});
|
|
70
83
|
}
|
|
71
84
|
}
|
|
@@ -74,4 +87,4 @@
|
|
|
74
87
|
@if $alignment != '' {
|
|
75
88
|
align-items: flex-#{$alignment};
|
|
76
89
|
}
|
|
77
|
-
}
|
|
90
|
+
}
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
@use "sass:map";
|
|
2
|
+
@use "../variables";
|
|
3
|
+
|
|
1
4
|
/*
|
|
2
5
|
* Created by IRIS Interactive
|
|
3
6
|
* User : IRIS Interactive
|
|
@@ -7,7 +10,7 @@
|
|
|
7
10
|
/* Main gutter
|
|
8
11
|
/ ================================================== */
|
|
9
12
|
@function viewport-border($index) {
|
|
10
|
-
@return
|
|
13
|
+
@return map.get(variables.$viewport-borders, $index);
|
|
11
14
|
}
|
|
12
15
|
|
|
13
16
|
|
|
@@ -16,27 +19,27 @@
|
|
|
16
19
|
@mixin breakpoint($point) {
|
|
17
20
|
|
|
18
21
|
@if $point == "xlarge" {
|
|
19
|
-
@media screen and (min-width: #{
|
|
22
|
+
@media screen and (min-width: #{variables.$breakpoint-xlarge}) {
|
|
20
23
|
@content;
|
|
21
24
|
}
|
|
22
25
|
} @else if $point == "desktop" {
|
|
23
|
-
@media screen and (min-width: #{
|
|
26
|
+
@media screen and (min-width: #{variables.$breakpoint-desktop}) {
|
|
24
27
|
@content;
|
|
25
28
|
}
|
|
26
29
|
} @else if $point == "large" {
|
|
27
|
-
@media screen and (max-width: #{
|
|
30
|
+
@media screen and (max-width: #{variables.$breakpoint-large}) {
|
|
28
31
|
@content;
|
|
29
32
|
}
|
|
30
33
|
} @else if $point == "medium" {
|
|
31
|
-
@media screen and (max-width: #{
|
|
34
|
+
@media screen and (max-width: #{variables.$breakpoint-medium}) {
|
|
32
35
|
@content;
|
|
33
36
|
}
|
|
34
37
|
} @else if $point == "small" {
|
|
35
|
-
@media screen and (max-width: #{
|
|
38
|
+
@media screen and (max-width: #{variables.$breakpoint-small}) {
|
|
36
39
|
@content;
|
|
37
40
|
}
|
|
38
41
|
} @else if $point == "xsmall" {
|
|
39
|
-
@media screen and (max-width: #{
|
|
42
|
+
@media screen and (max-width: #{variables.$breakpoint-xsmall}) {
|
|
40
43
|
@content;
|
|
41
44
|
}
|
|
42
45
|
} @else {
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
@use "../variables";
|
|
2
|
+
@use "mixin-layout";
|
|
3
|
+
|
|
1
4
|
/*
|
|
2
5
|
* Created by IRIS Interactive
|
|
3
6
|
* User : IRIS Interactive
|
|
@@ -36,19 +39,19 @@
|
|
|
36
39
|
padding-bottom: $padding;
|
|
37
40
|
|
|
38
41
|
@if $padding-medium != 0 {
|
|
39
|
-
@include breakpoint(medium) {
|
|
42
|
+
@include mixin-layout.breakpoint(medium) {
|
|
40
43
|
padding-bottom: $padding-medium;
|
|
41
44
|
}
|
|
42
45
|
}
|
|
43
46
|
|
|
44
47
|
@if $padding-small != 0 {
|
|
45
|
-
@include breakpoint(small) {
|
|
48
|
+
@include mixin-layout.breakpoint(small) {
|
|
46
49
|
padding-bottom: $padding-small;
|
|
47
50
|
}
|
|
48
51
|
}
|
|
49
52
|
|
|
50
53
|
@if $padding-small != 0 {
|
|
51
|
-
@include breakpoint(xsmall) {
|
|
54
|
+
@include mixin-layout.breakpoint(xsmall) {
|
|
52
55
|
padding-bottom: $padding-xsmall;
|
|
53
56
|
}
|
|
54
57
|
}
|
|
@@ -141,51 +144,51 @@
|
|
|
141
144
|
line-height: 1.4;
|
|
142
145
|
cursor: pointer;
|
|
143
146
|
border: none;
|
|
144
|
-
font-weight:
|
|
145
|
-
font-family:
|
|
146
|
-
text-transform:
|
|
147
|
-
letter-spacing:
|
|
148
|
-
padding:
|
|
149
|
-
border-radius:
|
|
150
|
-
font-size:
|
|
151
|
-
color:
|
|
152
|
-
background-color:
|
|
153
|
-
background-image:
|
|
154
|
-
background-size:
|
|
155
|
-
background-position:
|
|
156
|
-
border:
|
|
147
|
+
font-weight: variables.$button-font-weight;
|
|
148
|
+
font-family: variables.$button-font-family;
|
|
149
|
+
text-transform: variables.$button-text-transform;
|
|
150
|
+
letter-spacing: variables.$button-letter-spacing;
|
|
151
|
+
padding: variables.$button-padding-y variables.$button-padding-x;
|
|
152
|
+
border-radius: variables.$button-border-radius;
|
|
153
|
+
font-size: variables.$button-font-size--rem;
|
|
154
|
+
color: variables.$button-color;
|
|
155
|
+
background-color: variables.$button-background-color;
|
|
156
|
+
background-image: variables.$button-background-image;
|
|
157
|
+
background-size: variables.$button-gradient-background-image-size;
|
|
158
|
+
background-position: variables.$button-gradient-background-image-position;
|
|
159
|
+
border: variables.$button-border;
|
|
157
160
|
word-break: normal;
|
|
158
161
|
@include transition;
|
|
159
162
|
|
|
160
|
-
@include breakpoint(small) {
|
|
161
|
-
padding:
|
|
162
|
-
font-size:
|
|
163
|
+
@include mixin-layout.breakpoint(small) {
|
|
164
|
+
padding: variables.$button-padding-y-small variables.$button-padding-x-small;
|
|
165
|
+
font-size: variables.$button-font-size-small--rem;
|
|
163
166
|
}
|
|
164
167
|
|
|
165
168
|
&:before,
|
|
166
169
|
&.fi:before,
|
|
167
170
|
.fi:before {
|
|
168
|
-
color:
|
|
171
|
+
color: variables.$button-color;
|
|
169
172
|
@include transition;
|
|
170
173
|
}
|
|
171
174
|
|
|
172
175
|
&:visited {
|
|
173
|
-
color:
|
|
174
|
-
background-color:
|
|
175
|
-
background-image:
|
|
176
|
-
background-size:
|
|
177
|
-
background-position:
|
|
178
|
-
border:
|
|
176
|
+
color: variables.$button-color;
|
|
177
|
+
background-color: variables.$button-background-color;
|
|
178
|
+
background-image: variables.$button-background-image;
|
|
179
|
+
background-size: variables.$button-gradient-background-image-size;
|
|
180
|
+
background-position: variables.$button-gradient-background-image-position;
|
|
181
|
+
border: variables.$button-border;
|
|
179
182
|
}
|
|
180
183
|
|
|
181
184
|
@include hover-focus {
|
|
182
|
-
color:
|
|
183
|
-
background-color:
|
|
184
|
-
border:
|
|
185
|
-
background-position:
|
|
185
|
+
color: variables.$button-color-hover;
|
|
186
|
+
background-color: variables.$button-background-color-hover;
|
|
187
|
+
border: variables.$button-border-hover;
|
|
188
|
+
background-position: variables.$button-gradient-background-image-position-hover;
|
|
186
189
|
|
|
187
190
|
&:before {
|
|
188
|
-
color:
|
|
191
|
+
color: variables.$button-color-hover;
|
|
189
192
|
}
|
|
190
193
|
}
|
|
191
194
|
}
|
|
@@ -198,51 +201,51 @@
|
|
|
198
201
|
line-height: 1.4;
|
|
199
202
|
cursor: pointer;
|
|
200
203
|
border: none;
|
|
201
|
-
font-weight:
|
|
202
|
-
font-family:
|
|
203
|
-
text-transform:
|
|
204
|
-
letter-spacing:
|
|
205
|
-
padding:
|
|
206
|
-
border-radius:
|
|
207
|
-
font-size:
|
|
208
|
-
color:
|
|
209
|
-
background-color:
|
|
210
|
-
background-image:
|
|
211
|
-
background-size:
|
|
212
|
-
background-position:
|
|
213
|
-
border:
|
|
204
|
+
font-weight: variables.$secondary-button-font-weight;
|
|
205
|
+
font-family: variables.$secondary-button-font-family;
|
|
206
|
+
text-transform: variables.$secondary-button-text-transform;
|
|
207
|
+
letter-spacing: variables.$secondary-button-letter-spacing;
|
|
208
|
+
padding: variables.$secondary-button-padding-y variables.$secondary-button-padding-x;
|
|
209
|
+
border-radius: variables.$secondary-button-border-radius;
|
|
210
|
+
font-size: variables.$secondary-button-font-size--rem;
|
|
211
|
+
color: variables.$secondary-button-color;
|
|
212
|
+
background-color: variables.$secondary-button-background-color;
|
|
213
|
+
background-image: variables.$secondary-button-background-image;
|
|
214
|
+
background-size: variables.$secondary-button-gradient-background-image-size;
|
|
215
|
+
background-position: variables.$secondary-button-gradient-background-image-position;
|
|
216
|
+
border: variables.$secondary-button-border;
|
|
214
217
|
word-break: normal;
|
|
215
218
|
@include transition;
|
|
216
219
|
|
|
217
|
-
@include breakpoint(small) {
|
|
218
|
-
padding:
|
|
219
|
-
font-size:
|
|
220
|
+
@include mixin-layout.breakpoint(small) {
|
|
221
|
+
padding: variables.$secondary-button-padding-y-small variables.$secondary-button-padding-x-small;
|
|
222
|
+
font-size: variables.$secondary-button-font-size-small--rem;
|
|
220
223
|
}
|
|
221
224
|
|
|
222
225
|
&:before,
|
|
223
226
|
&.fi:before,
|
|
224
227
|
.fi:before {
|
|
225
|
-
color:
|
|
228
|
+
color: variables.$secondary-button-color;
|
|
226
229
|
@include transition;
|
|
227
230
|
}
|
|
228
231
|
|
|
229
232
|
&:visited {
|
|
230
|
-
color:
|
|
231
|
-
background-color:
|
|
232
|
-
background-image:
|
|
233
|
-
background-size:
|
|
234
|
-
background-position:
|
|
235
|
-
border:
|
|
233
|
+
color: variables.$secondary-button-color;
|
|
234
|
+
background-color: variables.$secondary-button-background-color;
|
|
235
|
+
background-image: variables.$secondary-button-background-image;
|
|
236
|
+
background-size: variables.$secondary-button-gradient-background-image-size;
|
|
237
|
+
background-position: variables.$secondary-button-gradient-background-image-position;
|
|
238
|
+
border: variables.$secondary-button-border;
|
|
236
239
|
}
|
|
237
240
|
|
|
238
241
|
@include hover-focus {
|
|
239
|
-
color:
|
|
240
|
-
background-color:
|
|
241
|
-
border:
|
|
242
|
-
background-position:
|
|
242
|
+
color: variables.$secondary-button-color-hover;
|
|
243
|
+
background-color: variables.$secondary-button-background-color-hover;
|
|
244
|
+
border: variables.$secondary-button-border-hover;
|
|
245
|
+
background-position: variables.$secondary-button-gradient-background-image-position-hover;
|
|
243
246
|
|
|
244
247
|
&:before {
|
|
245
|
-
color:
|
|
248
|
+
color: variables.$secondary-button-color-hover;
|
|
246
249
|
}
|
|
247
250
|
}
|
|
248
|
-
}
|
|
251
|
+
}
|
|
@@ -12,175 +12,4 @@
|
|
|
12
12
|
* @date 27/01/2022 14:32
|
|
13
13
|
* @copyright Copyright (c) 2002-2022 IRIS Interactive, Inc. (http://www.iris-interactive.fr)
|
|
14
14
|
*/
|
|
15
|
-
|
|
16
|
-
* Created by IRIS Interactive
|
|
17
|
-
* User : IRIS Interactive
|
|
18
|
-
*/
|
|
19
|
-
/* Layout
|
|
20
|
-
/ ================================================== */
|
|
21
|
-
/* Gutter
|
|
22
|
-
/ ================================================== */
|
|
23
|
-
/* Margin
|
|
24
|
-
/ ================================================== */
|
|
25
|
-
/* Margin
|
|
26
|
-
/ ================================================== */
|
|
27
|
-
/* Breakpoint
|
|
28
|
-
/ ================================================== */
|
|
29
|
-
/* Global
|
|
30
|
-
/ ================================================== */
|
|
31
|
-
/* Notifications
|
|
32
|
-
/ ================================================== */
|
|
33
|
-
/* Difficulty
|
|
34
|
-
/ ================================================== */
|
|
35
|
-
/*
|
|
36
|
-
* Created by IRIS Interactive
|
|
37
|
-
* User : IRIS Interactive
|
|
38
|
-
*/
|
|
39
|
-
/* Main gutter
|
|
40
|
-
/ ================================================== */
|
|
41
|
-
/* Breakpoints
|
|
42
|
-
/* ============================================= */
|
|
43
|
-
/* display flex
|
|
44
|
-
/* ============================================= */
|
|
45
|
-
/* Hover - TODO
|
|
46
|
-
/* ============================================= */
|
|
47
|
-
/* Touch
|
|
48
|
-
/* ============================================= */
|
|
49
|
-
/* Clear
|
|
50
|
-
/* ============================================= */
|
|
51
|
-
/*
|
|
52
|
-
* Created by IRIS Interactive
|
|
53
|
-
* User : IRIS Interactive
|
|
54
|
-
*/
|
|
55
|
-
/* Transition
|
|
56
|
-
/* ============================================= */
|
|
57
|
-
/* Hover
|
|
58
|
-
/* ============================================= */
|
|
59
|
-
/* Ellipsis
|
|
60
|
-
/* ============================================= */
|
|
61
|
-
/* Adaptive height block
|
|
62
|
-
/* ============================================= */
|
|
63
|
-
/* Line clamp
|
|
64
|
-
/* ============================================= */
|
|
65
|
-
/* Object fit
|
|
66
|
-
/* ============================================= */
|
|
67
|
-
/* Linear Gradient
|
|
68
|
-
/* ============================================= */
|
|
69
|
-
/* fit-content
|
|
70
|
-
/* ============================================= */
|
|
71
|
-
/* stretched-link
|
|
72
|
-
/* ============================================= */
|
|
73
|
-
/* sr-only
|
|
74
|
-
/* ============================================= */
|
|
75
|
-
/*!
|
|
76
|
-
* IRIS Interactive
|
|
77
|
-
*
|
|
78
|
-
* NOTICE OF LICENSE
|
|
79
|
-
*
|
|
80
|
-
* This source file is no subject to a specific license
|
|
81
|
-
* but it belongs to the company IRIS Interactive.
|
|
82
|
-
* You can contact IRIS Interactive at the following
|
|
83
|
-
* address: contact@iris-interactive.fr
|
|
84
|
-
*
|
|
85
|
-
* @author Lucas ROCHE
|
|
86
|
-
* @date 28/01/2022 07:41
|
|
87
|
-
* @copyright Copyright (c) 2002-2022 IRIS Interactive, Inc. (http://www.iris-interactive.fr)
|
|
88
|
-
*/
|
|
89
|
-
/* Font icon
|
|
90
|
-
/* ============================================= */
|
|
91
|
-
/* Font size
|
|
92
|
-
/* ============================================= */
|
|
93
|
-
/*
|
|
94
|
-
* Created by IRIS Interactive
|
|
95
|
-
* User : IRIS Interactive
|
|
96
|
-
*/
|
|
97
|
-
/* Utils classes
|
|
98
|
-
/* ============================================= */
|
|
99
|
-
.stretched-link:before {
|
|
100
|
-
position: absolute;
|
|
101
|
-
top: 0;
|
|
102
|
-
right: 0;
|
|
103
|
-
bottom: 0;
|
|
104
|
-
left: 0;
|
|
105
|
-
z-index: 1;
|
|
106
|
-
pointer-events: auto;
|
|
107
|
-
content: "";
|
|
108
|
-
background-color: transparent;
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
/* ============================================= */
|
|
112
|
-
.list-flex {
|
|
113
|
-
display: flex;
|
|
114
|
-
flex-wrap: wrap;
|
|
115
|
-
margin-bottom: 0;
|
|
116
|
-
}
|
|
117
|
-
.list-flex > * {
|
|
118
|
-
list-style-type: none;
|
|
119
|
-
margin: 0 10px 10px 0;
|
|
120
|
-
}
|
|
121
|
-
.list-flex > *:last-child {
|
|
122
|
-
margin-right: 0;
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
/* Animations
|
|
126
|
-
/* ============================================= */
|
|
127
|
-
@-webkit-keyframes loader {
|
|
128
|
-
100% {
|
|
129
|
-
transform: rotate(360deg);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
@keyframes loader {
|
|
133
|
-
100% {
|
|
134
|
-
transform: rotate(360deg);
|
|
135
|
-
}
|
|
136
|
-
}
|
|
137
|
-
/* Sr-only
|
|
138
|
-
/* ============================================= */
|
|
139
|
-
.sr-only {
|
|
140
|
-
clip: rect(0, 0, 0, 0);
|
|
141
|
-
border-width: 0;
|
|
142
|
-
height: 1px;
|
|
143
|
-
margin: -1px;
|
|
144
|
-
overflow: hidden;
|
|
145
|
-
padding: 0;
|
|
146
|
-
position: absolute;
|
|
147
|
-
white-space: nowrap;
|
|
148
|
-
width: 1px;
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
/* Text with icon before
|
|
152
|
-
/* ============================================= */
|
|
153
|
-
.text-icon {
|
|
154
|
-
display: inline-flex;
|
|
155
|
-
align-items: center;
|
|
156
|
-
}
|
|
157
|
-
.text-icon:before {
|
|
158
|
-
margin-right: 5px;
|
|
159
|
-
}
|
|
160
|
-
.text-icon:after {
|
|
161
|
-
margin-left: 5px;
|
|
162
|
-
}
|
|
163
|
-
|
|
164
|
-
/* Block with img animated on hover
|
|
165
|
-
/* ============================================= */
|
|
166
|
-
.hover-item img {
|
|
167
|
-
transition: 0.2s ease;
|
|
168
|
-
will-change: transform;
|
|
169
|
-
}
|
|
170
|
-
.hover-item:hover img {
|
|
171
|
-
transform: scale(1.02);
|
|
172
|
-
}
|
|
173
|
-
|
|
174
|
-
/* Opening
|
|
175
|
-
/* ============================================= */
|
|
176
|
-
.is-opened {
|
|
177
|
-
color: #009e55;
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
.soon-closed {
|
|
181
|
-
color: #ff890e;
|
|
182
|
-
}
|
|
183
|
-
|
|
184
|
-
.is-closed {
|
|
185
|
-
color: #f33;
|
|
186
|
-
}
|
|
15
|
+
.stretched-link:before{z-index:1;pointer-events:auto;content:"";background-color:#0000;position:absolute;top:0;bottom:0;left:0;right:0}.list-flex{flex-wrap:wrap;margin-bottom:0;display:flex}.list-flex>*{margin:0 10px 10px 0;list-style-type:none}.list-flex>:last-child{margin-right:0}@keyframes loader{to{transform:rotate(360deg)}}.sr-only{clip:rect(0,0,0,0);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.text-icon{align-items:center;display:inline-flex}.text-icon:before{margin-right:5px}.text-icon:after{margin-left:5px}.hover-item img{will-change:transform;transition:all .2s}.hover-item:hover img{transform:scale(1.02)}.is-opened{color:#009e55}.soon-closed{color:#ff890e}.is-closed{color:#f33}
|
package/mix-manifest.json
DELETED
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"/public/scripts/index.js": "/public/scripts/index.js",
|
|
3
|
-
"/public/scripts/components/collapse/collapse.component.min.js": "/public/scripts/components/collapse/collapse.component.min.js",
|
|
4
|
-
"/public/scripts/components/dropdown/dropdown.component.min.js": "/public/scripts/components/dropdown/dropdown.component.min.js",
|
|
5
|
-
"/public/scripts/components/lazyload/lazyload.component.min.js": "/public/scripts/components/lazyload/lazyload.component.min.js",
|
|
6
|
-
"/public/scripts/components/lightbox/lightbox.component.min.js": "/public/scripts/components/lightbox/lightbox.component.min.js",
|
|
7
|
-
"/public/scripts/components/modal/modal.component.min.js": "/public/scripts/components/modal/modal.component.min.js",
|
|
8
|
-
"/public/scripts/components/scrollspy/scrollspy.component.min.js": "/public/scripts/components/scrollspy/scrollspy.component.min.js",
|
|
9
|
-
"/public/scripts/components/slider/slider.component.min.js": "/public/scripts/components/slider/slider.component.min.js",
|
|
10
|
-
"/public/scripts/components/smooth-scroll/smooth-scroll.component.min.js": "/public/scripts/components/smooth-scroll/smooth-scroll.component.min.js",
|
|
11
|
-
"/public/scripts/components/tab/tab.component.min.js": "/public/scripts/components/tab/tab.component.min.js",
|
|
12
|
-
"/public/scripts/components/toggle/toggle.component.min.js": "/public/scripts/components/toggle/toggle.component.min.js",
|
|
13
|
-
"/public/scripts/components/tooltip/tooltip.component.min.js": "/public/scripts/components/tooltip/tooltip.component.min.js",
|
|
14
|
-
"/public/styles/style.css": "/public/styles/style.css",
|
|
15
|
-
"/public/index.html": "/public/index.html",
|
|
16
|
-
"/public/scripts/components/collapse/collapse.component.js": "/public/scripts/components/collapse/collapse.component.js",
|
|
17
|
-
"/public/scripts/components/collapse/collapse.component.scss": "/public/scripts/components/collapse/collapse.component.scss",
|
|
18
|
-
"/public/scripts/components/dropdown/dropdown.component.js": "/public/scripts/components/dropdown/dropdown.component.js",
|
|
19
|
-
"/public/scripts/components/dropdown/dropdown.component.scss": "/public/scripts/components/dropdown/dropdown.component.scss",
|
|
20
|
-
"/public/scripts/components/lazyload/lazyload.component.js": "/public/scripts/components/lazyload/lazyload.component.js",
|
|
21
|
-
"/public/scripts/components/lightbox/lightbox.component.js": "/public/scripts/components/lightbox/lightbox.component.js",
|
|
22
|
-
"/public/scripts/components/lightbox/lightbox.component.scss": "/public/scripts/components/lightbox/lightbox.component.scss",
|
|
23
|
-
"/public/scripts/components/modal/modal.component.js": "/public/scripts/components/modal/modal.component.js",
|
|
24
|
-
"/public/scripts/components/modal/modal.component.scss": "/public/scripts/components/modal/modal.component.scss",
|
|
25
|
-
"/public/scripts/components/nats/nats.component.js": "/public/scripts/components/nats/nats.component.js",
|
|
26
|
-
"/public/scripts/components/overlay/overlay.component.js": "/public/scripts/components/overlay/overlay.component.js",
|
|
27
|
-
"/public/scripts/components/overlay/overlay.component.scss": "/public/scripts/components/overlay/overlay.component.scss",
|
|
28
|
-
"/public/scripts/components/popin/popin.component.js": "/public/scripts/components/popin/popin.component.js",
|
|
29
|
-
"/public/scripts/components/popin/popin.component.scss": "/public/scripts/components/popin/popin.component.scss",
|
|
30
|
-
"/public/scripts/components/scroll-reveal/scroll-reveal.component.js": "/public/scripts/components/scroll-reveal/scroll-reveal.component.js",
|
|
31
|
-
"/public/scripts/components/scroll-reveal/scroll-reveal.component.scss": "/public/scripts/components/scroll-reveal/scroll-reveal.component.scss",
|
|
32
|
-
"/public/scripts/components/scrollspy/scrollspy.component.js": "/public/scripts/components/scrollspy/scrollspy.component.js",
|
|
33
|
-
"/public/scripts/components/share/share.component.js": "/public/scripts/components/share/share.component.js",
|
|
34
|
-
"/public/scripts/components/slider/slider.component.js": "/public/scripts/components/slider/slider.component.js",
|
|
35
|
-
"/public/scripts/components/smooth-scroll/smooth-scroll.component.js": "/public/scripts/components/smooth-scroll/smooth-scroll.component.js",
|
|
36
|
-
"/public/scripts/components/tab/tab.component.js": "/public/scripts/components/tab/tab.component.js",
|
|
37
|
-
"/public/scripts/components/tab/tab.component.scss": "/public/scripts/components/tab/tab.component.scss",
|
|
38
|
-
"/public/scripts/components/toggle/toggle.component.js": "/public/scripts/components/toggle/toggle.component.js",
|
|
39
|
-
"/public/scripts/components/tooltip/tooltip.component.js": "/public/scripts/components/tooltip/tooltip.component.js",
|
|
40
|
-
"/public/scripts/enumerators/element.enum.js": "/public/scripts/enumerators/element.enum.js",
|
|
41
|
-
"/public/scripts/enumerators/share.enum.js": "/public/scripts/enumerators/share.enum.js",
|
|
42
|
-
"/public/scripts/enumerators/smooth-scroll.enum.js": "/public/scripts/enumerators/smooth-scroll.enum.js",
|
|
43
|
-
"/public/scripts/enumerators/tooltip.enum.js": "/public/scripts/enumerators/tooltip.enum.js",
|
|
44
|
-
"/public/scripts/handcook.js": "/public/scripts/handcook.js",
|
|
45
|
-
"/public/scripts/index.js.LICENSE.txt": "/public/scripts/index.js.LICENSE.txt",
|
|
46
|
-
"/public/scripts/support/cookie.support.js": "/public/scripts/support/cookie.support.js",
|
|
47
|
-
"/public/scripts/support/hash.support.js": "/public/scripts/support/hash.support.js",
|
|
48
|
-
"/public/scripts/support/toggle-html.support.js": "/public/scripts/support/toggle-html.support.js",
|
|
49
|
-
"/public/scripts/support/wrap-select.support.js": "/public/scripts/support/wrap-select.support.js",
|
|
50
|
-
"/public/styles/scss/_utils.scss": "/public/styles/scss/_utils.scss",
|
|
51
|
-
"/public/styles/scss/_variables.scss": "/public/styles/scss/_variables.scss",
|
|
52
|
-
"/public/styles/scss/handcook.scss": "/public/styles/scss/handcook.scss",
|
|
53
|
-
"/public/styles/scss/mixins/_mixin-font.scss": "/public/styles/scss/mixins/_mixin-font.scss",
|
|
54
|
-
"/public/styles/scss/mixins/_mixin-layout.scss": "/public/styles/scss/mixins/_mixin-layout.scss",
|
|
55
|
-
"/public/styles/scss/mixins/_mixin-style.scss": "/public/styles/scss/mixins/_mixin-style.scss",
|
|
56
|
-
"/public/styles/scss/style.css": "/public/styles/scss/style.css"
|
|
57
|
-
}
|