Skip to content

Commit

Permalink
Sphinx/docs: Avoid usage of deprecated style keyword (kivy#8709)
Browse files Browse the repository at this point in the history
Fixes: 8230

Style keyword is deprecated in sphinx 7.x

(cherry picked from commit bde597c)
  • Loading branch information
kbaikov authored and misl6 committed Nov 24, 2024
1 parent e9c662a commit 0367b6c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion doc/sources/.templates/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,9 @@ <h3>Related Topics</h3>
<title>{{ title|striptags }}{{ titlesuffix }}</title>
<link href='https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="{{ pathto('_static/pygments.css', 1) }}" type="text/css" />
<link rel="stylesheet" href="{{ pathto('_static/' + style, 1) }}" type="text/css" />
{%- for style in styles %}
<link rel="stylesheet" href="{{ pathto('_static/' + style, 1) }}" type="text/css" />
{%- endfor %}

{%- if not embedded %}
{%- block scripts %}
Expand Down

0 comments on commit 0367b6c

Please sign in to comment.