mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Use CSS instead of deprecated width attributes for tables.
This commit is contained in:
parent
bcb781e37a
commit
10103108fb
@ -13,9 +13,9 @@
|
||||
|
||||
<h1 id="index">{% trans key=key %}Index – {{ key }}{% endtrans %}</h1>
|
||||
|
||||
<table width="100%" class="indextable"><tr>
|
||||
<table style="width: 100%" class="indextable"><tr>
|
||||
{%- for column in entries|slice(2) if column %}
|
||||
<td width="33%" valign="top"><dl>
|
||||
<td style="width: 33%" valign="top"><dl>
|
||||
{%- for entryname, (links, subitems) in column %}
|
||||
<dt>{% if links %}<a href="{{ links[0] }}">{{ entryname|e }}</a>
|
||||
{%- for link in links[1:] %}, <a href="{{ link }}">[{{ loop.index }}]</a>{% endfor %}
|
||||
|
@ -21,9 +21,9 @@
|
||||
|
||||
{%- for key, entries in genindexentries %}
|
||||
<h2 id="{{ key }}">{{ key }}</h2>
|
||||
<table width="100%" class="indextable genindextable"><tr>
|
||||
<table style="width: 100%" class="indextable genindextable"><tr>
|
||||
{%- for column in entries|slice(2) if column %}
|
||||
<td width="33%" valign="top"><dl>
|
||||
<td style="width: 33%" valign="top"><dl>
|
||||
{%- for entryname, (links, subitems) in column %}
|
||||
<dt>{% if links %}<a href="{{ links[0] }}">{{ entryname|e }}</a>
|
||||
{%- for link in links[1:] %}, <a href="{{ link }}">[{{ loop.index }}]</a>{% endfor %}
|
||||
|
Loading…
Reference in New Issue
Block a user