vsajip / sphinx_sizzle_theme

This is a theme for Sphinx. It was inspired by the Guzzle theme, but has diverged quite a bit.
https://docs.red-dove.com/sphinx_sizzle_theme/
Other
4 stars 1 forks source link

class attribute `.label` for footnote conflicts with bootstrap #6

Closed vsajip closed 5 years ago

vsajip commented 5 years ago

Original report by Indian Sunset (Bitbucket: idnsunset, GitHub: idnsunset).


xxx [1]_ xxx
...............
.. [1] xxx 

HTML would be:

<table class="docutils footnote" frame="void" id="id2" rules="none">
  <colgroup><col class="label" /><col /></colgroup>
  <tbody valign="top">
    <tr>
      <td class="label"><a class="fn-backref" href="#id1">[1]</a></td>
      <td>footnote1</td>
    </tr>
  </tbody>
</table>

bootstrap also has ‘.label’ definition in its CSS.

vsajip commented 5 years ago

Fixed #6: used class 'footnote-label' in place of 'label'.

vsajip commented 5 years ago

Original changes by Vinay Sajip (Bitbucket: vinay.sajip, GitHub: vsajip).


changed state from "new" to "resolved"