gatsby-core-theme 44.4.31 → 44.4.33
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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
## [44.4.33](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.4.32...v44.4.33) (2025-08-20)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* updated styling ([526f86b](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/526f86b75d8ba45e23c851869ecd65230e470336))
|
|
7
|
+
|
|
8
|
+
## [44.4.32](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.4.31...v44.4.32) (2025-08-20)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* added translation for site logo in nav ([2dda714](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/2dda714b9481a6cd479e85b03e5b410fa2c59f08))
|
|
14
|
+
* revert redirects ([9a1cbc4](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/9a1cbc40e857138709c02587603b5e352bab8aeb))
|
|
15
|
+
|
|
1
16
|
## [44.4.31](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.4.30...v44.4.31) (2025-08-18)
|
|
2
17
|
|
|
3
18
|
|
package/gatsby-node.mjs
CHANGED
|
@@ -71,7 +71,7 @@ const relations = {};
|
|
|
71
71
|
|
|
72
72
|
// eslint-disable-next-line import/prefer-default-export
|
|
73
73
|
export const createPages = async (
|
|
74
|
-
{ actions: { createPage
|
|
74
|
+
{ actions: { createPage } },
|
|
75
75
|
themeOptions
|
|
76
76
|
) => {
|
|
77
77
|
process.env.GATSBY_SITE_NAME = String(themeOptions.siteName);
|
|
@@ -282,34 +282,23 @@ export const createPages = async (
|
|
|
282
282
|
}
|
|
283
283
|
});
|
|
284
284
|
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
}
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
? "app-tracker-ssr.js"
|
|
301
|
-
: "app-tracker.js"
|
|
302
|
-
}`,
|
|
303
|
-
context: {
|
|
304
|
-
page,
|
|
305
|
-
siteGeneralData,
|
|
306
|
-
operator,
|
|
307
|
-
isTracker: true,
|
|
308
|
-
isLiveStreamProvider: false,
|
|
309
|
-
},
|
|
310
|
-
});
|
|
285
|
+
trackingPages.forEach(({ path, page, operator }) => {
|
|
286
|
+
createPage({
|
|
287
|
+
path,
|
|
288
|
+
component: `${__dirname}/src/components/${
|
|
289
|
+
process.env.IS_TRACKING_SSR === "true"
|
|
290
|
+
? "app-tracker-ssr.js"
|
|
291
|
+
: "app-tracker.js"
|
|
292
|
+
}`,
|
|
293
|
+
context: {
|
|
294
|
+
page,
|
|
295
|
+
siteGeneralData,
|
|
296
|
+
operator,
|
|
297
|
+
isTracker: true,
|
|
298
|
+
isLiveStreamProvider: false,
|
|
299
|
+
},
|
|
311
300
|
});
|
|
312
|
-
}
|
|
301
|
+
});
|
|
313
302
|
};
|
|
314
303
|
|
|
315
304
|
export const onCreatePage = async ({ page, actions }) => {
|
package/package.json
CHANGED
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
|
|
90
90
|
.switch {
|
|
91
91
|
position: relative;
|
|
92
|
-
height:
|
|
92
|
+
height: 2.4rem;
|
|
93
93
|
display: flex;
|
|
94
94
|
align-items: center;
|
|
95
95
|
}
|
|
@@ -106,20 +106,21 @@
|
|
|
106
106
|
width: 6rem;
|
|
107
107
|
inset: 0;
|
|
108
108
|
background-color: #ccc;
|
|
109
|
-
transition: .4s;
|
|
109
|
+
transition: 0.4s;
|
|
110
110
|
border-radius: 3.4rem;
|
|
111
|
+
height: 2.4rem;
|
|
111
112
|
}
|
|
112
113
|
|
|
113
114
|
.slider::before {
|
|
114
115
|
border-radius: 50%;
|
|
115
116
|
position: absolute;
|
|
116
117
|
content: "";
|
|
117
|
-
height:
|
|
118
|
-
width:
|
|
119
|
-
left: .
|
|
120
|
-
bottom:
|
|
118
|
+
height: 2rem;
|
|
119
|
+
width: 2rem;
|
|
120
|
+
left: 0.2rem;
|
|
121
|
+
bottom: 2px;
|
|
121
122
|
background-color: #fff;
|
|
122
|
-
transition: .4s;
|
|
123
|
+
transition: 0.4s;
|
|
123
124
|
}
|
|
124
125
|
|
|
125
126
|
input:checked + .slider {
|
|
@@ -131,11 +132,11 @@ input:focus + .slider {
|
|
|
131
132
|
}
|
|
132
133
|
|
|
133
134
|
input:checked + .slider::before {
|
|
134
|
-
transform: translateX(
|
|
135
|
+
transform: translateX(24px);
|
|
135
136
|
}
|
|
136
137
|
|
|
137
138
|
.switchLabel{
|
|
138
|
-
margin-left:
|
|
139
|
+
margin-left: 4.5rem;
|
|
139
140
|
}
|
|
140
141
|
|
|
141
142
|
.errorMsg {
|
|
@@ -264,16 +264,21 @@
|
|
|
264
264
|
border: .15rem solid var(--comment-input-error, #DD4B39);
|
|
265
265
|
}
|
|
266
266
|
|
|
267
|
-
>
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
267
|
+
> .formButton{
|
|
268
|
+
border: .2rem solid #161128;
|
|
269
|
+
padding: 8px 16px !important;
|
|
270
|
+
width: auto !important;
|
|
271
|
+
margin-left: auto;
|
|
272
|
+
border-radius: 5rem;
|
|
273
|
+
font-size: 1.4rem;
|
|
274
|
+
font-weight: 700;
|
|
275
|
+
background: transparent !important;
|
|
276
|
+
text-align: center !important;
|
|
277
|
+
line-height: 2.2rem;
|
|
278
|
+
text-transform: capitalize;
|
|
279
|
+
color: #161128 !important;
|
|
280
|
+
height: 4rem !important;
|
|
281
|
+
grid-column: 1 / -1;
|
|
277
282
|
}
|
|
278
283
|
}
|
|
279
284
|
|
|
@@ -56,7 +56,7 @@ const Navigation = ({
|
|
|
56
56
|
pageTypes[template]?.showLogoWithLink ?? pageTypes.default.showLogoWithLink;
|
|
57
57
|
|
|
58
58
|
const logoImg = (
|
|
59
|
-
<img alt={logoAlt} src={logo} width={logoWidth} height={logoHeight} />
|
|
59
|
+
<img alt={useTranslate('nav_site_logo', logoAlt)} src={logo} width={logoWidth} height={logoHeight} />
|
|
60
60
|
);
|
|
61
61
|
|
|
62
62
|
if (stopScrollOnOpen) toggleScroll("", true);
|