Revert "Fix table wrapping"

This reverts commit c911cd0dbd06f6c0e774396174fb383fc63d172f.
This commit is contained in:
Rapptz 2020-06-27 07:55:30 -04:00
parent fb27da07fc
commit 92fffb5daa
2 changed files with 17 additions and 24 deletions

View File

@ -235,28 +235,23 @@ class Invite(Hashable):
The following table illustrates what methods will obtain the attributes: The following table illustrates what methods will obtain the attributes:
+------------------------------------+----------------------------------+ +------------------------------------+----------------------------------------------------------+
| Attribute | Method | | Attribute | Method |
+====================================+==================================+ +====================================+==========================================================+
| :attr:`max_age` | :meth:`abc.GuildChannel.invites` | | :attr:`max_age` | :meth:`abc.GuildChannel.invites`\, :meth:`Guild.invites` |
| | :meth:`Guild.invites` | +------------------------------------+----------------------------------------------------------+
+------------------------------------+----------------------------------+ | :attr:`max_uses` | :meth:`abc.GuildChannel.invites`\, :meth:`Guild.invites` |
| :attr:`max_uses` | :meth:`abc.GuildChannel.invites` | +------------------------------------+----------------------------------------------------------+
| | :meth:`Guild.invites` | | :attr:`created_at` | :meth:`abc.GuildChannel.invites`\, :meth:`Guild.invites` |
+------------------------------------+----------------------------------+ +------------------------------------+----------------------------------------------------------+
| :attr:`created_at` | :meth:`abc.GuildChannel.invites` | | :attr:`temporary` | :meth:`abc.GuildChannel.invites`\, :meth:`Guild.invites` |
| | :meth:`Guild.invites` | +------------------------------------+----------------------------------------------------------+
+------------------------------------+----------------------------------+ | :attr:`uses` | :meth:`abc.GuildChannel.invites`\, :meth:`Guild.invites` |
| :attr:`temporary` | :meth:`abc.GuildChannel.invites` | +------------------------------------+----------------------------------------------------------+
| | :meth:`Guild.invites` |
+------------------------------------+----------------------------------+
| :attr:`uses` | :meth:`abc.GuildChannel.invites` |
| | :meth:`Guild.invites` |
+------------------------------------+----------------------------------+
| :attr:`approximate_member_count` | :meth:`Client.fetch_invite` | | :attr:`approximate_member_count` | :meth:`Client.fetch_invite` |
+------------------------------------+----------------------------------+ +------------------------------------+----------------------------------------------------------+
| :attr:`approximate_presence_count` | :meth:`Client.fetch_invite` | | :attr:`approximate_presence_count` | :meth:`Client.fetch_invite` |
+------------------------------------+----------------------------------+ +------------------------------------+----------------------------------------------------------+
If it's not in the table above then it is available by all methods. If it's not in the table above then it is available by all methods.

View File

@ -806,7 +806,6 @@ dd {
table.docutils { table.docutils {
width: 100%; width: 100%;
table-layout: fixed;
} }
table.docutils.footnote { table.docutils.footnote {
@ -831,7 +830,6 @@ table.docutils tbody tr td {
border-top: solid 1px var(--table-border); border-top: solid 1px var(--table-border);
padding: 7px 5px; padding: 7px 5px;
vertical-align: top; vertical-align: top;
overflow-wrap: break-word;
} }
table.docutils tbody tr:last-child th, table.docutils tbody tr:last-child th,
table.docutils tbody tr:last-child td { table.docutils tbody tr:last-child td {