gatsby-core-theme 44.4.54 → 44.4.56
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,17 @@
|
|
|
1
|
+
## [44.4.56](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.4.55...v44.4.56) (2025-09-10)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* update checkbox ([6787100](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/6787100195fd2613a874d876c6f8f8af7e395ba4))
|
|
7
|
+
|
|
8
|
+
## [44.4.55](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.4.54...v44.4.55) (2025-09-09)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* update styling ([33b8f06](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/33b8f0669b65617d481379ab42989a56c98e792f))
|
|
14
|
+
|
|
1
15
|
## [44.4.54](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.4.53...v44.4.54) (2025-09-08)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -62,6 +62,7 @@
|
|
|
62
62
|
.replyButton{
|
|
63
63
|
border-radius: var(--comment-btn-border-radius, 10rem);
|
|
64
64
|
border: var(--comment-btn-border, 1.5px solid #161128);
|
|
65
|
+
color: var(--comment-btn-font-color, #0A0E19);
|
|
65
66
|
font-size: var(--comment-btn-font-size, 1.2rem);
|
|
66
67
|
font-weight: var(--comment-btn-font-weight, 700);
|
|
67
68
|
line-height: 1.8rem;
|
|
@@ -290,7 +290,7 @@
|
|
|
290
290
|
display: block;
|
|
291
291
|
}
|
|
292
292
|
|
|
293
|
-
input:not(:placeholder-shown):invalid, textarea:not(:placeholder-shown):invalid{
|
|
293
|
+
input:not(:placeholder-shown, [type="checkbox"]):invalid, textarea:not(:placeholder-shown):invalid{
|
|
294
294
|
border: 1.5px solid var(--comment-input-error, #DD4B39) !important;
|
|
295
295
|
}
|
|
296
296
|
|
|
@@ -323,11 +323,62 @@
|
|
|
323
323
|
grid-template-columns: 1.3rem 1fr;
|
|
324
324
|
}
|
|
325
325
|
|
|
326
|
-
input[type="checkbox"]
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
326
|
+
input[type="checkbox"]{
|
|
327
|
+
appearance: none;
|
|
328
|
+
appearance: none;
|
|
329
|
+
appearance: none;
|
|
330
|
+
padding: 0 !important;
|
|
331
|
+
outline: none;
|
|
332
|
+
position: relative;
|
|
333
|
+
width: 1.3rem;
|
|
334
|
+
height: 1.3rem;
|
|
335
|
+
border: .15rem solid var(--comment-checkbox-border, #515156) !important;
|
|
336
|
+
background-color: var(--comment-checkbox-bg, #F2EFEC) !important;;
|
|
337
|
+
overflow: hidden;
|
|
338
|
+
border-radius: 0;
|
|
339
|
+
cursor: pointer;
|
|
340
|
+
|
|
341
|
+
&::before {
|
|
342
|
+
content: '';
|
|
343
|
+
color: #fff !important;
|
|
344
|
+
position: absolute;
|
|
345
|
+
inset: 0;
|
|
346
|
+
background-size: contain;
|
|
347
|
+
background-position: center center;
|
|
348
|
+
background-repeat: no-repeat;
|
|
349
|
+
border-radius: 2px;
|
|
350
|
+
transform: scale(0);
|
|
351
|
+
transform: scale(0);
|
|
352
|
+
transition: -webkit-transform 0.25s ease-in-out;
|
|
353
|
+
transition: -webkit-transform 0.25s ease-in-out;
|
|
354
|
+
transition: transform 0.25s ease-in-out;
|
|
355
|
+
transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
|
|
356
|
+
clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
|
|
357
|
+
filter: brightness(0) invert(1);
|
|
358
|
+
background-color: #fff;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
&:checked{
|
|
362
|
+
background-color: var(--comment-checkbox-border, #515156) !important;
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
&:checked::before {
|
|
366
|
+
transform: scale(.7);
|
|
367
|
+
transform: scale(.7);
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
+ label{
|
|
371
|
+
font-size: 1.4rem;
|
|
372
|
+
font-weight: 400;
|
|
373
|
+
line-height: 2.2rem;
|
|
374
|
+
|
|
375
|
+
@include min(tablet){
|
|
376
|
+
font-size: 1.6rem;
|
|
377
|
+
font-weight: 400;
|
|
378
|
+
line-height: 2.6rem;
|
|
379
|
+
}
|
|
380
|
+
}
|
|
381
|
+
}
|
|
331
382
|
|
|
332
383
|
.alertDanger, .alertSuccess, .alertWarning {
|
|
333
384
|
background-color: var(--alert-error-bg, #FEE2E2);
|