holygrail2 1.3.37 → 1.3.40
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/abstract/_mixins.scss +6 -6
- package/scss/abstract/_reset.scss +2 -2
- package/scss/base/_alignment.scss +2 -2
- package/scss/base/_icons.scss +1 -1
- package/scss/base/_ratios.scss +3 -3
- package/scss/base/_rtl.scss +1 -1
- package/scss/elements/_banners.scss +1 -1
- package/scss/elements/_buttons.scss +0 -1
- package/scss/elements/_form.scss +1 -1
- package/scss/elements/_tabs_specials.scss +4 -4
- package/scss/layouts/_card9.scss +1 -1
- package/scss/layouts/_header.scss +4 -4
- package/scss/layouts/_mainmenu.scss +2 -2
package/package.json
CHANGED
|
@@ -579,12 +579,12 @@ $max-vw: 1500px !default;
|
|
|
579
579
|
@content;
|
|
580
580
|
}
|
|
581
581
|
} @else if $consulta == retina {
|
|
582
|
-
@media
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
582
|
+
@media (-webkit-min-device-pixel-ratio: 2),
|
|
583
|
+
(min--moz-device-pixel-ratio: 2),
|
|
584
|
+
(-o-min-device-pixel-ratio: 2/1),
|
|
585
|
+
(min-device-pixel-ratio: 2),
|
|
586
|
+
(min-resolution: 192dpi),
|
|
587
|
+
(min-resolution: 2dppx) {
|
|
588
588
|
@content;
|
|
589
589
|
}
|
|
590
590
|
}
|
|
@@ -125,8 +125,8 @@ input[type='number'] {
|
|
|
125
125
|
:root {
|
|
126
126
|
--line-width: 1px;
|
|
127
127
|
|
|
128
|
-
@media
|
|
129
|
-
|
|
128
|
+
@media (-webkit-min-device-pixel-ratio: 2),
|
|
129
|
+
(min-resolution: 2dppx) {
|
|
130
130
|
--line-width: 0.5px;
|
|
131
131
|
--line-width-negative: -0.5px;
|
|
132
132
|
}
|
|
@@ -302,13 +302,13 @@
|
|
|
302
302
|
justify-content: space-between;
|
|
303
303
|
}
|
|
304
304
|
|
|
305
|
-
@media (min-width:
|
|
305
|
+
@media (min-width: $break-md) {
|
|
306
306
|
.md\:content-sp-between {
|
|
307
307
|
justify-content: space-between;
|
|
308
308
|
}
|
|
309
309
|
}
|
|
310
310
|
|
|
311
|
-
@media (max-width:
|
|
311
|
+
@media (max-width: $break-md) {
|
|
312
312
|
.mdmax\:content-end {
|
|
313
313
|
justify-content: flex-end;
|
|
314
314
|
}
|
package/scss/base/_icons.scss
CHANGED
package/scss/base/_ratios.scss
CHANGED
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
content: '';
|
|
59
59
|
width: 100%;
|
|
60
60
|
padding-top: calc(133.25% + 74px);
|
|
61
|
-
@media (min-width:
|
|
61
|
+
@media (min-width: $break-md) {
|
|
62
62
|
padding-top: calc(133.25% + 74px);
|
|
63
63
|
}
|
|
64
64
|
}
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
content: '';
|
|
75
75
|
width: 100%;
|
|
76
76
|
padding-top: calc(133.25% + 74px);
|
|
77
|
-
@media (min-width:
|
|
77
|
+
@media (min-width: $break-md) {
|
|
78
78
|
padding-top: calc(133.25% + 74px);
|
|
79
79
|
}
|
|
80
80
|
}
|
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
content: '';
|
|
139
139
|
width: 100%;
|
|
140
140
|
padding-top: 133.25%;
|
|
141
|
-
@media (min-width:
|
|
141
|
+
@media (min-width: $break-md) {
|
|
142
142
|
padding-top: 133.25%;
|
|
143
143
|
}
|
|
144
144
|
}
|
package/scss/base/_rtl.scss
CHANGED
|
@@ -477,7 +477,7 @@
|
|
|
477
477
|
.mn-mainmenu .list-check li.is-active a::before {
|
|
478
478
|
margin-right: -8px;
|
|
479
479
|
}
|
|
480
|
-
@media (min-width:
|
|
480
|
+
@media (min-width: $break-sm) {
|
|
481
481
|
.mn-mainmenu .mn-mainbar .tabs ul.mn-list-item li:first-child a,
|
|
482
482
|
.mn-mainmenu .mn-mainbar .tabs ul.mn-list-item li:first-child span {
|
|
483
483
|
padding: 8px 0 8px 20px;
|
package/scss/elements/_form.scss
CHANGED
|
@@ -707,7 +707,7 @@ input::placeholder {
|
|
|
707
707
|
color: $c-dark-grey;
|
|
708
708
|
}
|
|
709
709
|
}
|
|
710
|
-
@media
|
|
710
|
+
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
|
711
711
|
.form-input-label-2 > label {
|
|
712
712
|
display: none;
|
|
713
713
|
}
|
|
@@ -100,7 +100,7 @@ ul.list-clear li.list-box {
|
|
|
100
100
|
.checkbox-radio [type='radio']:checked + label,
|
|
101
101
|
.checkbox-radio [type='radio']:not(:checked) + label {
|
|
102
102
|
flex-direction: row;
|
|
103
|
-
@media (min-width:
|
|
103
|
+
@media (min-width: $break-md) {
|
|
104
104
|
flex-direction: column;
|
|
105
105
|
}
|
|
106
106
|
}
|
|
@@ -109,7 +109,7 @@ ul.list-clear li.list-box {
|
|
|
109
109
|
align-items: center;
|
|
110
110
|
padding: 16px;
|
|
111
111
|
justify-content: space-between;
|
|
112
|
-
@media (min-width:
|
|
112
|
+
@media (min-width: $break-md) {
|
|
113
113
|
align-items: center;
|
|
114
114
|
justify-content: center;
|
|
115
115
|
align-content: center;
|
|
@@ -122,7 +122,7 @@ ul.list-clear li.list-box {
|
|
|
122
122
|
.checkbox-text {
|
|
123
123
|
order: 2;
|
|
124
124
|
}
|
|
125
|
-
@media (min-width:
|
|
125
|
+
@media (min-width: $break-md) {
|
|
126
126
|
&::before {
|
|
127
127
|
width: 100%;
|
|
128
128
|
padding-top: 100%;
|
|
@@ -144,7 +144,7 @@ ul.list-clear li.list-box {
|
|
|
144
144
|
width: 100%;
|
|
145
145
|
display: flex;
|
|
146
146
|
flex-direction: column;
|
|
147
|
-
@media (min-width:
|
|
147
|
+
@media (min-width: $break-md) {
|
|
148
148
|
flex-direction: row;
|
|
149
149
|
}
|
|
150
150
|
}
|
package/scss/layouts/_card9.scss
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
font-size: 12px;
|
|
13
13
|
mix-blend-mode: difference;
|
|
14
14
|
background-blend-mode: difference;
|
|
15
|
-
@media (min-width:
|
|
15
|
+
@media (min-width: $break-md) {
|
|
16
16
|
padding-bottom: 0;
|
|
17
17
|
height: 60px;
|
|
18
18
|
}
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
.logo svg {
|
|
30
30
|
width: 100%;
|
|
31
31
|
}
|
|
32
|
-
@media (min-width:
|
|
32
|
+
@media (min-width: $break-md) {
|
|
33
33
|
.logo {
|
|
34
34
|
width: 100%;
|
|
35
35
|
max-width: 180px;
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
.menu-mobile {
|
|
39
39
|
display: block;
|
|
40
40
|
}
|
|
41
|
-
@media (min-width:
|
|
41
|
+
@media (min-width: $break-lg) {
|
|
42
42
|
.menu-mobile {
|
|
43
43
|
display: none;
|
|
44
44
|
}
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
display: none;
|
|
48
48
|
white-space: nowrap;
|
|
49
49
|
}
|
|
50
|
-
@media (min-width:
|
|
50
|
+
@media (min-width: $break-lg) {
|
|
51
51
|
.menu-desktop {
|
|
52
52
|
display: flex;
|
|
53
53
|
}
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
position: relative;
|
|
9
9
|
overflow: auto;
|
|
10
10
|
padding-bottom: 150px;
|
|
11
|
-
@media (min-width:
|
|
11
|
+
@media (min-width: $break-sm) {
|
|
12
12
|
max-width: 400px;
|
|
13
13
|
padding-bottom: 0;
|
|
14
14
|
}
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
justify-content: center;
|
|
18
18
|
align-items: center;
|
|
19
19
|
|
|
20
|
-
@media (min-width:
|
|
20
|
+
@media (min-width: $break-sm) {
|
|
21
21
|
justify-content: flex-start;
|
|
22
22
|
}
|
|
23
23
|
}
|