gatsby-core-theme 30.0.8 → 30.0.9
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,16 @@
|
|
|
1
|
+
## [30.0.9](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v30.0.8...v30.0.9) (2023-10-24)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* content variables ([69bd91b](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/69bd91b70763618e04f6ad683b392a8abe5f07d9))
|
|
7
|
+
* remove box-shadow ([7d38673](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/7d38673dccdaa15706b5a99ddd4bbcaddbf70860))
|
|
8
|
+
* typo ([e663ef4](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/e663ef4c1103510cfd4278cc7ba9bdbaeaeddad4))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
* Merge branch 'tm-3617-table-module' into 'master' ([e42a949](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/e42a9490e04f01e7a9aeaa35a6578c1c29db903e))
|
|
12
|
+
* Merge branch 'tm-3588-content' into 'master' ([b1135c2](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/b1135c28a7880db7184c8596b303380ad6251e37))
|
|
13
|
+
|
|
1
14
|
## [30.0.8](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v30.0.7...v30.0.8) (2023-10-18)
|
|
2
15
|
|
|
3
16
|
|
package/package.json
CHANGED
|
@@ -33,6 +33,10 @@
|
|
|
33
33
|
margin-bottom: var(--margin-bottom-content-tablet);
|
|
34
34
|
}
|
|
35
35
|
|
|
36
|
+
@include min-max(tablet, tablet) {
|
|
37
|
+
padding: var(--padding-content-tablet, var(--padding-content-min-tablet)) !important;
|
|
38
|
+
}
|
|
39
|
+
|
|
36
40
|
a {
|
|
37
41
|
text-decoration: var(--a-tagcontent-decoration, auto);
|
|
38
42
|
display: var(--a-tag-content);
|
|
@@ -57,6 +61,10 @@
|
|
|
57
61
|
margin-bottom: var(--paragraph-content-last-margin-bottom);
|
|
58
62
|
}
|
|
59
63
|
|
|
64
|
+
img {
|
|
65
|
+
border-radius: var(--content-images-border-radius);
|
|
66
|
+
}
|
|
67
|
+
|
|
60
68
|
@include max(mobile) {
|
|
61
69
|
&.showMore {
|
|
62
70
|
height: var(--content-show-more-height, 17.8rem);
|
|
@@ -166,11 +174,14 @@
|
|
|
166
174
|
padding: 0 1.6rem 1.6rem;
|
|
167
175
|
}
|
|
168
176
|
|
|
169
|
-
> p
|
|
177
|
+
> p {
|
|
170
178
|
font-size: var(--contentCollapsibleBox-size, 1.4rem);
|
|
171
179
|
font-weight: var(--contentCollapsibleBox-weight, 400);
|
|
172
180
|
line-height: var(--contentCollapsibleBox-lineHeight, 2.2rem);
|
|
173
181
|
color: var(--contentCollapsibleBox-color, #515156);
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
> p:last-child {
|
|
174
185
|
margin-bottom: 0 !important;
|
|
175
186
|
}
|
|
176
187
|
}
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
@include link-color(var(--table-content-color, --color-6));
|
|
9
9
|
@include overflow(overflow-x, auto, touch);
|
|
10
10
|
display: block;
|
|
11
|
-
box-shadow: 0px 4px 6px -2px rgba(27, 27, 28, 0.02), 0px 12px 16px -4px rgba(27, 27, 28, 0.05);
|
|
11
|
+
box-shadow: var(--table-box-shadow, 0px 4px 6px -2px rgba(27, 27, 28, 0.02), 0px 12px 16px -4px rgba(27, 27, 28, 0.05));
|
|
12
12
|
padding-bottom: 2.4rem;
|
|
13
13
|
|
|
14
14
|
&::-webkit-scrollbar {
|
|
@@ -35,17 +35,15 @@
|
|
|
35
35
|
@mixin content-img-float($direction) {
|
|
36
36
|
float: $direction;
|
|
37
37
|
@if $direction == right {
|
|
38
|
-
margin: 0 0 2.4rem 4.8rem;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
43
|
-
@else {
|
|
38
|
+
margin: var(--img-float-direction-right, 0 0 2.4rem 4.8rem);
|
|
39
|
+
} @else if $direction == left {
|
|
40
|
+
margin: var(--img-float-direction-left, 0 4.8rem 2.4rem 0);
|
|
41
|
+
} @else {
|
|
44
42
|
margin: 0 1em 1em 0;
|
|
45
43
|
}
|
|
46
44
|
}
|
|
47
45
|
|
|
48
|
-
@mixin content-img-align($direction: center, $spacing: 1em) {
|
|
46
|
+
@mixin content-img-align($direction: center, $spacing: var(--content-img-spacing, 1em)) {
|
|
49
47
|
display: block;
|
|
50
48
|
@if $direction == right {
|
|
51
49
|
margin: $spacing 0 $spacing auto;
|
|
@@ -71,7 +69,7 @@
|
|
|
71
69
|
border-top: $height solid $color;
|
|
72
70
|
border-right: calc($width / 2) solid transparent;
|
|
73
71
|
border-left: calc($width / 2) solid transparent;
|
|
74
|
-
margin-left: -
|
|
72
|
+
margin-left: -calc($width / 2);
|
|
75
73
|
}
|
|
76
74
|
}
|
|
77
75
|
|
|
@@ -130,8 +128,7 @@
|
|
|
130
128
|
}
|
|
131
129
|
}
|
|
132
130
|
|
|
133
|
-
|
|
134
|
-
@mixin border-gradient($color-1, $color-2, $bgcolor, $radius: .8rem) {
|
|
131
|
+
@mixin border-gradient($color-1, $color-2, $bgcolor, $radius: 0.8rem) {
|
|
135
132
|
background: $bgcolor;
|
|
136
133
|
&:before {
|
|
137
134
|
content: '';
|
|
@@ -161,18 +158,18 @@
|
|
|
161
158
|
font-size: 1.8rem;
|
|
162
159
|
border-radius: var(--border-radius);
|
|
163
160
|
|
|
164
|
-
>svg {
|
|
165
|
-
|
|
166
|
-
|
|
161
|
+
> svg {
|
|
162
|
+
flex: none;
|
|
163
|
+
margin-left: 0.8rem;
|
|
167
164
|
}
|
|
168
165
|
|
|
169
166
|
&:hover {
|
|
170
|
-
|
|
171
|
-
|
|
167
|
+
background-color: $color2;
|
|
168
|
+
color: $textColor;
|
|
172
169
|
}
|
|
173
170
|
|
|
174
171
|
&:active {
|
|
175
|
-
|
|
176
|
-
|
|
172
|
+
background-color: $color3;
|
|
173
|
+
color: $textColor;
|
|
177
174
|
}
|
|
178
|
-
}
|
|
175
|
+
}
|
|
@@ -149,7 +149,7 @@
|
|
|
149
149
|
--table-head-text: var(--color-4);
|
|
150
150
|
--second-table-background: var(--color-17);
|
|
151
151
|
--secondary-module-background: var(--color-42);
|
|
152
|
-
--stack-table-background-color: var(--body-background-color);
|
|
152
|
+
--stack-table-background-color: var(--body-background-color);
|
|
153
153
|
// pagination with mid points
|
|
154
154
|
--pagination-gap: 0.8rem;
|
|
155
155
|
--pagination-midpoints-gap: 0;
|