Skip to content

Commit 458b485

Browse files
Merge pull request #1357 from gooddata/snapshot-master-78d0245d-to-rel/dev
[bot] Merge master/78d0245d into rel/dev
2 parents 4462e43 + 78d0245 commit 458b485

File tree

6 files changed

+13
-4
lines changed

6 files changed

+13
-4
lines changed

docs/assets/scss/homepage.scss

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,8 +224,11 @@
224224
display: block;
225225
}
226226

227-
& h4#{&}__title {
227+
& p#{&}__title {
228228
margin-top: 0;
229+
font-size: 1.125em;
230+
font-family: bca6d3310b5c9dae1dae416e8abc8405,helvetica,arial,sans-serif;
231+
line-height: 1.2;
229232
}
230233

231234
p:last-child {

docs/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.20
44

55
require (
66
github.com/FortAwesome/Font-Awesome v0.0.0-20230327165841-0698449d50f2 // indirect
7-
github.com/gooddata/gooddata-docs-theme v0.0.0-20251111131802-3f566c293eaa // indirect
7+
github.com/gooddata/gooddata-docs-theme v0.0.0-20260224092332-353448869720 // indirect
88
github.com/google/docsy v0.7.1 // indirect
99
github.com/google/docsy/dependencies v0.7.1 // indirect
1010
github.com/twbs/bootstrap v5.3.1+incompatible // indirect

docs/go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ github.com/gooddata/gooddata-docs-theme v0.0.0-20251103110911-19e503a55290 h1:po
4848
github.com/gooddata/gooddata-docs-theme v0.0.0-20251103110911-19e503a55290/go.mod h1:VVNP6Cmo+vC37RD3T/YHjyU/QdqftGY5z4G513LYyrA=
4949
github.com/gooddata/gooddata-docs-theme v0.0.0-20251111131802-3f566c293eaa h1:+k15ub8UegDMUh+KPps2A3W8YGulzAQcIHdc+hoB7/c=
5050
github.com/gooddata/gooddata-docs-theme v0.0.0-20251111131802-3f566c293eaa/go.mod h1:VVNP6Cmo+vC37RD3T/YHjyU/QdqftGY5z4G513LYyrA=
51+
github.com/gooddata/gooddata-docs-theme v0.0.0-20260224092332-353448869720 h1:aJoM2UUS7tzHJtwdox8h0JYPDdIWi3h539gbSpyua24=
52+
github.com/gooddata/gooddata-docs-theme v0.0.0-20260224092332-353448869720/go.mod h1:VVNP6Cmo+vC37RD3T/YHjyU/QdqftGY5z4G513LYyrA=
5153
github.com/google/docsy v0.7.1 h1:DUriA7Nr3lJjNi9Ulev1SfiG1sUYmvyDeU4nTp7uDxY=
5254
github.com/google/docsy v0.7.1/go.mod h1:JCmE+c+izhE0Rvzv3y+AzHhz1KdwlA9Oj5YBMklJcfc=
5355
github.com/google/docsy/dependencies v0.7.1 h1:NbzYKJYMin2q50xdWSUzR2c9gCp7zR/XHDBcxklEcTQ=

docs/layouts/partials/ask-ai-button.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
<div class="ask-ai-button-container">
22
<button
33
class="gd-docs-header-nav__cta gd-docs-header-nav__github open-kapa-widget ask-ai-button"
4+
aria-expanded="false"
5+
aria-haspopup="dialog"
6+
aria-controls="kapa-modal-content"
47
id="ask-ai-button"
58
>
69
Ask AI

docs/layouts/partials/hooks/body-end.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
<script src="/js/tab-order.js"></script>
1010

1111
{{/* additional scripts */}}
12+
<script src="/js/ask-ai-accessibility.js"></script>
1213
<script
1314
async
1415
src="https://widget.kapa.ai/kapa-widget.bundle.js"

docs/layouts/shortcodes/blocks/card.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<div class="homepage-card__icon">
2020
{{ readFile (printf "%s%s" .RelPermalink .Params.icon) | safeHTML }}
2121
</div>
22-
<h4 class="homepage-card__title">{{ .Title }}</h4>
22+
<p class="homepage-card__title">{{ .Title }}</p>
2323
<p class="homepage-card__text">{{ .Description }}</p>
2424
</a>
2525
{{ end }}
@@ -30,7 +30,7 @@ <h4 class="homepage-card__title">{{ .Title }}</h4>
3030
{{ readFile $icon | safeHTML }}
3131
</div>
3232
{{ end }}
33-
<h4 class="homepage-card__title">{{ $title }}</h4>
33+
<p class="homepage-card__title">{{ $title }}</p>
3434

3535
{{ if eq .Page.File.Ext "md" }}
3636
{{ .Inner | .Page.RenderString }}

0 commit comments

Comments
 (0)