holygrail2 1.3.22 → 1.3.23
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/package.json +1 -1
- package/scss/_partials.scss +0 -1
- package/scss/_variables.scss +1 -1
- package/scss/base/_a11y.scss +36 -44
- package/scss/base/_alignment.scss +15 -20
- package/scss/base/_helpers.scss +10 -12
- package/scss/base/_icons.scss +4 -6
- package/scss/base/_rtl.scss +36 -27
- package/scss/base/_spacing.scss +0 -2
- package/scss/docs.scss +1 -1
- package/scss/elements/_animated.scss +4 -6
- package/scss/elements/_bottom-sheet.scss +0 -1
- package/scss/elements/_buttons.scss +63 -73
- package/scss/elements/_checkbox.scss +17 -19
- package/scss/elements/_drawer.scss +4 -8
- package/scss/elements/_form.scss +3 -4
- package/scss/elements/_links.scss +2 -2
- package/scss/elements/_list.scss +1 -1
- package/scss/elements/_md-accordion.scss +3 -3
- package/scss/elements/_md-link.scss +11 -13
- package/scss/elements/_md-skip-to-content.scss +15 -15
- package/scss/elements/_md-toggle.scss +3 -4
- package/scss/elements/_tooltip.scss +0 -1
- package/scss/hg-lite/abstract/_functions.scss +3 -3
- package/scss/hg-lite/abstract/_index.scss +1 -1
- package/scss/hg-lite/abstract/_mixins.scss +17 -12
- package/scss/hg-lite/abstract/_variables.scss +32 -32
- package/scss/hg-lite/generic/_index.scss +1 -1
- package/scss/hg-lite/generic/_root.scss +3 -3
- package/scss/hg-lite/hg-lite.scss +1 -1
- package/scss/hg-lite/utilities/_index.scss +1 -2
- package/scss/hg-lite/utilities/_rtl.scss +2 -2
- package/scss/hg-lite/utilities/_sr-only.scss +4 -4
- package/scss/hg-lite/utilities/_utilities.scss +11 -8
- package/scss/layouts/_header_account.scss +1 -1
- package/scss/layouts/_mainmenu.scss +0 -1
- package/scss/style-rtl.scss +0 -3
- package/scss/style.scss +0 -1
- package/scss/hg-lite/utilities/_animations.scss +0 -0
package/package.json
CHANGED
package/scss/_partials.scss
CHANGED
package/scss/_variables.scss
CHANGED
|
@@ -48,7 +48,7 @@ $c-orange: #e5740b !default;
|
|
|
48
48
|
$c-limited: #000 !default;
|
|
49
49
|
$c-success: #12882c !default;
|
|
50
50
|
$c-alert: #ffce4e !default;
|
|
51
|
-
$c-facebook: #
|
|
51
|
+
$c-facebook: #186cf1 !default;
|
|
52
52
|
$c-google: #4285f4 !default;
|
|
53
53
|
$c-naver: #03cf5d !default;
|
|
54
54
|
$c-wechat: #2dc100 !default;
|
package/scss/base/_a11y.scss
CHANGED
|
@@ -1,48 +1,40 @@
|
|
|
1
1
|
@import '../abstract/_all';
|
|
2
2
|
.theme-keyboard-accesible {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
a:focus .product-card-img::before,
|
|
24
|
-
.product-media__img:focus::before{
|
|
25
|
-
content: '';
|
|
26
|
-
display: block;
|
|
27
|
-
outline: 2px solid #383BFF !important;
|
|
28
|
-
outline-offset: -2px;
|
|
29
|
-
position: absolute;
|
|
30
|
-
inset: 0;
|
|
31
|
-
z-index: 1;
|
|
32
|
-
width: 100%;
|
|
33
|
-
|
|
34
|
-
}
|
|
3
|
+
*:focus,
|
|
4
|
+
*:focus-visible,
|
|
5
|
+
[class*='checkbox-']:focus + label,
|
|
6
|
+
[class*='checkbox-']:focus-visible + label,
|
|
7
|
+
[class*='checkbox-'] input:focus + label,
|
|
8
|
+
[class*='checkbox-'] input:focus-visible + label {
|
|
9
|
+
outline: 2px solid #383bff !important;
|
|
10
|
+
outline-offset: 1px;
|
|
11
|
+
}
|
|
12
|
+
.focus\:outside:focus,
|
|
13
|
+
.focus\:outside:focus-visible {
|
|
14
|
+
outline: 2px solid #383bff !important;
|
|
15
|
+
outline-offset: 1px;
|
|
16
|
+
}
|
|
17
|
+
.focus\:inset:focus,
|
|
18
|
+
.focus\:inset:focus-visible {
|
|
19
|
+
outline: 2px solid #383bff !important;
|
|
20
|
+
outline-offset: -2px;
|
|
21
|
+
}
|
|
35
22
|
|
|
23
|
+
a:focus .product-card-img::before,
|
|
24
|
+
.product-media__img:focus::before {
|
|
25
|
+
content: '';
|
|
26
|
+
display: block;
|
|
27
|
+
outline: 2px solid #383bff !important;
|
|
28
|
+
outline-offset: -2px;
|
|
29
|
+
position: absolute;
|
|
30
|
+
inset: 0;
|
|
31
|
+
z-index: 1;
|
|
32
|
+
width: 100%;
|
|
33
|
+
}
|
|
36
34
|
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
}
|
|
35
|
+
.btn-grid .btn:focus,
|
|
36
|
+
.btn-grid .btn:focus-visible {
|
|
37
|
+
outline: 2px solid #383bff !important;
|
|
38
|
+
outline-offset: -2px;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
@@ -56,7 +56,6 @@
|
|
|
56
56
|
justify-content: center;
|
|
57
57
|
}
|
|
58
58
|
|
|
59
|
-
|
|
60
59
|
.content-sp-around {
|
|
61
60
|
justify-content: space-around;
|
|
62
61
|
}
|
|
@@ -295,26 +294,22 @@
|
|
|
295
294
|
}
|
|
296
295
|
}
|
|
297
296
|
|
|
297
|
+
.align-start {
|
|
298
|
+
align-items: start;
|
|
299
|
+
}
|
|
298
300
|
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
301
|
+
.content-sp-between {
|
|
302
|
+
justify-content: space-between;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
@media (min-width: 992px) {
|
|
306
|
+
.md\:content-sp-between {
|
|
304
307
|
justify-content: space-between;
|
|
305
308
|
}
|
|
306
|
-
|
|
307
|
-
@media (min-width: 992px) {
|
|
308
|
-
.md\:content-sp-between {
|
|
309
|
-
justify-content: space-between;
|
|
310
|
-
}
|
|
311
|
-
}
|
|
312
|
-
|
|
313
|
-
@media (max-width: 992px) {
|
|
314
|
-
.mdmax\:content-end {
|
|
315
|
-
justify-content: flex-end;
|
|
316
|
-
}
|
|
317
|
-
}
|
|
318
|
-
|
|
309
|
+
}
|
|
319
310
|
|
|
320
|
-
|
|
311
|
+
@media (max-width: 992px) {
|
|
312
|
+
.mdmax\:content-end {
|
|
313
|
+
justify-content: flex-end;
|
|
314
|
+
}
|
|
315
|
+
}
|
package/scss/base/_helpers.scss
CHANGED
|
@@ -287,7 +287,7 @@ hr {
|
|
|
287
287
|
align-items: center;
|
|
288
288
|
svg-icon,
|
|
289
289
|
svg-icon2,
|
|
290
|
-
md-icon{
|
|
290
|
+
md-icon {
|
|
291
291
|
margin-right: 16px;
|
|
292
292
|
}
|
|
293
293
|
}
|
|
@@ -696,10 +696,10 @@ strong {
|
|
|
696
696
|
.pe-none {
|
|
697
697
|
pointer-events: none;
|
|
698
698
|
}
|
|
699
|
-
.pointer-events-none{
|
|
699
|
+
.pointer-events-none {
|
|
700
700
|
pointer-events: none;
|
|
701
701
|
}
|
|
702
|
-
.pointer-events-all{
|
|
702
|
+
.pointer-events-all {
|
|
703
703
|
pointer-events: all;
|
|
704
704
|
}
|
|
705
705
|
|
|
@@ -848,7 +848,6 @@ strong {
|
|
|
848
848
|
z-index: 10;
|
|
849
849
|
top: 0;
|
|
850
850
|
left: 0;
|
|
851
|
-
|
|
852
851
|
}
|
|
853
852
|
.m--1 {
|
|
854
853
|
margin-top: -1px;
|
|
@@ -1015,19 +1014,18 @@ strong {
|
|
|
1015
1014
|
flex-grow: 1;
|
|
1016
1015
|
}
|
|
1017
1016
|
.flex-grow {
|
|
1018
|
-
|
|
1019
|
-
|
|
1017
|
+
flex-grow: 1;
|
|
1018
|
+
overflow-y: auto;
|
|
1020
1019
|
}
|
|
1021
1020
|
|
|
1022
1021
|
.grow-0 {
|
|
1023
1022
|
flex-grow: 0;
|
|
1024
1023
|
}
|
|
1025
1024
|
|
|
1026
|
-
.no-cursor{
|
|
1027
|
-
cursor: default;
|
|
1025
|
+
.no-cursor {
|
|
1026
|
+
cursor: default;
|
|
1028
1027
|
}
|
|
1029
1028
|
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1029
|
+
.no-relative {
|
|
1030
|
+
position: inherit;
|
|
1031
|
+
}
|
package/scss/base/_icons.scss
CHANGED
|
@@ -17,8 +17,8 @@ $w-plus: 10px;
|
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
svg-icon,
|
|
20
|
-
svg-icon2
|
|
21
|
-
md-icon{
|
|
20
|
+
svg-icon2,
|
|
21
|
+
md-icon {
|
|
22
22
|
div {
|
|
23
23
|
display: flex;
|
|
24
24
|
align-items: center;
|
|
@@ -282,8 +282,6 @@ md-icon.ico-pre {
|
|
|
282
282
|
background-color: $c-primary;
|
|
283
283
|
}
|
|
284
284
|
|
|
285
|
-
|
|
286
|
-
|
|
287
285
|
.md-icon-anim {
|
|
288
286
|
position: relative;
|
|
289
287
|
width: 12px;
|
|
@@ -295,7 +293,7 @@ md-icon.ico-pre {
|
|
|
295
293
|
|
|
296
294
|
&::before,
|
|
297
295
|
&::after {
|
|
298
|
-
content:
|
|
296
|
+
content: '';
|
|
299
297
|
position: absolute;
|
|
300
298
|
width: 12px;
|
|
301
299
|
height: 1px;
|
|
@@ -317,4 +315,4 @@ md-icon.ico-pre {
|
|
|
317
315
|
background-color: $c-white;
|
|
318
316
|
}
|
|
319
317
|
}
|
|
320
|
-
}
|
|
318
|
+
}
|
package/scss/base/_rtl.scss
CHANGED
|
@@ -83,18 +83,27 @@
|
|
|
83
83
|
padding-right: #{$espaciado}px;
|
|
84
84
|
}
|
|
85
85
|
}
|
|
86
|
-
.check-center.check-bleed.checkbox-radio
|
|
87
|
-
|
|
86
|
+
.check-center.check-bleed.checkbox-radio
|
|
87
|
+
[type='radio']:checked
|
|
88
|
+
+ label::before,
|
|
89
|
+
.check-center.check-bleed.checkbox-radio
|
|
90
|
+
[type='radio']:not(:checked)
|
|
91
|
+
+ label::before {
|
|
88
92
|
left: initial;
|
|
89
93
|
right: 0;
|
|
90
94
|
}
|
|
91
|
-
.check-center.check-bleed.checkbox-radio
|
|
92
|
-
|
|
95
|
+
.check-center.check-bleed.checkbox-radio
|
|
96
|
+
[type='radio']:checked
|
|
97
|
+
+ label
|
|
98
|
+
.ico-radio,
|
|
99
|
+
.check-center.check-bleed.checkbox-radio
|
|
100
|
+
[type='radio']:not(:checked)
|
|
101
|
+
+ label
|
|
102
|
+
.ico-radio {
|
|
93
103
|
left: initial;
|
|
94
104
|
right: 5px;
|
|
95
105
|
}
|
|
96
106
|
.btn {
|
|
97
|
-
|
|
98
107
|
&.btn-world {
|
|
99
108
|
.btn-world-center {
|
|
100
109
|
text-align: right;
|
|
@@ -105,7 +114,7 @@
|
|
|
105
114
|
}
|
|
106
115
|
}
|
|
107
116
|
.btn-group {
|
|
108
|
-
|
|
117
|
+
& > :not(:first-child, :last-child) {
|
|
109
118
|
border-radius: 0;
|
|
110
119
|
margin-right: -1px;
|
|
111
120
|
margin-left: 0;
|
|
@@ -148,26 +157,26 @@
|
|
|
148
157
|
position: absolute;
|
|
149
158
|
width: 70px;
|
|
150
159
|
}
|
|
151
|
-
[type='checkbox']:not(:checked)+label::before,
|
|
152
|
-
[type='checkbox']:checked+label::before {
|
|
160
|
+
[type='checkbox']:not(:checked) + label::before,
|
|
161
|
+
[type='checkbox']:checked + label::before {
|
|
153
162
|
left: auto;
|
|
154
163
|
right: 0;
|
|
155
164
|
margin: 0 0 0 10px;
|
|
156
165
|
}
|
|
157
|
-
[type='checkbox']:not(:checked)+label,
|
|
158
|
-
[type='checkbox']:checked+label {
|
|
166
|
+
[type='checkbox']:not(:checked) + label,
|
|
167
|
+
[type='checkbox']:checked + label {
|
|
159
168
|
padding-left: 0;
|
|
160
169
|
padding-right: 24px;
|
|
161
170
|
}
|
|
162
|
-
[type='checkbox']:not(:checked)+label span,
|
|
163
|
-
[type='checkbox']:checked+label span {
|
|
171
|
+
[type='checkbox']:not(:checked) + label span,
|
|
172
|
+
[type='checkbox']:checked + label span {
|
|
164
173
|
&.theta {
|
|
165
174
|
padding-left: 0;
|
|
166
175
|
padding-right: 24px;
|
|
167
176
|
}
|
|
168
177
|
}
|
|
169
|
-
[type='checkbox']:not(:checked)+label .icon,
|
|
170
|
-
[type='checkbox']:checked+label .icon {
|
|
178
|
+
[type='checkbox']:not(:checked) + label .icon,
|
|
179
|
+
[type='checkbox']:checked + label .icon {
|
|
171
180
|
right: 2px;
|
|
172
181
|
left: auto;
|
|
173
182
|
top: 3px;
|
|
@@ -181,26 +190,26 @@
|
|
|
181
190
|
}
|
|
182
191
|
}
|
|
183
192
|
.check-bleed {
|
|
184
|
-
&.checkbox-radio [type='radio']:checked+label .ico-radio,
|
|
185
|
-
&.checkbox-radio [type='radio']:not(:checked)+label .ico-radio {
|
|
193
|
+
&.checkbox-radio [type='radio']:checked + label .ico-radio,
|
|
194
|
+
&.checkbox-radio [type='radio']:not(:checked) + label .ico-radio {
|
|
186
195
|
left: 0;
|
|
187
196
|
right: 17px;
|
|
188
197
|
}
|
|
189
|
-
&.checkbox-radio [type='radio']:checked+label::before,
|
|
190
|
-
&.checkbox-radio [type='radio']:not(:checked)+label::before {
|
|
198
|
+
&.checkbox-radio [type='radio']:checked + label::before,
|
|
199
|
+
&.checkbox-radio [type='radio']:not(:checked) + label::before {
|
|
191
200
|
left: auto;
|
|
192
201
|
right: 0;
|
|
193
202
|
}
|
|
194
203
|
}
|
|
195
204
|
.check-center {
|
|
196
|
-
&.checkbox-radio [type='radio']:checked+label::before,
|
|
197
|
-
&.checkbox-radio [type='radio']:not(:checked)+label::before {
|
|
205
|
+
&.checkbox-radio [type='radio']:checked + label::before,
|
|
206
|
+
&.checkbox-radio [type='radio']:not(:checked) + label::before {
|
|
198
207
|
left: auto;
|
|
199
208
|
right: 16px;
|
|
200
209
|
margin: 0;
|
|
201
210
|
}
|
|
202
|
-
&.checkbox-radio [type='radio']:checked+label .ico-radio,
|
|
203
|
-
&.checkbox-radio [type='radio']:not(:checked)+label .ico-radio {
|
|
211
|
+
&.checkbox-radio [type='radio']:checked + label .ico-radio,
|
|
212
|
+
&.checkbox-radio [type='radio']:not(:checked) + label .ico-radio {
|
|
204
213
|
left: 0;
|
|
205
214
|
right: 21px;
|
|
206
215
|
}
|
|
@@ -357,16 +366,16 @@
|
|
|
357
366
|
}
|
|
358
367
|
.has-ico-post {
|
|
359
368
|
&.btn,
|
|
360
|
-
|
|
361
|
-
|
|
369
|
+
& > input,
|
|
370
|
+
& > label {
|
|
362
371
|
padding-right: 0;
|
|
363
372
|
padding-left: $btn-padding * 2;
|
|
364
373
|
}
|
|
365
374
|
}
|
|
366
375
|
.has-ico-pre {
|
|
367
376
|
&.btn,
|
|
368
|
-
|
|
369
|
-
|
|
377
|
+
& > input,
|
|
378
|
+
& > label {
|
|
370
379
|
padding-left: 0;
|
|
371
380
|
padding-right: $btn-padding * 2 + 4px;
|
|
372
381
|
}
|
|
@@ -587,4 +596,4 @@
|
|
|
587
596
|
padding-left: 0;
|
|
588
597
|
}
|
|
589
598
|
}
|
|
590
|
-
}
|
|
599
|
+
}
|
package/scss/base/_spacing.scss
CHANGED
package/scss/docs.scss
CHANGED