diff options
| author | Rapptz <[email protected]> | 2020-06-27 07:08:46 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2020-12-18 21:18:54 -0500 |
| commit | df57392aea1a011f27607c9cb7e0a786df798205 (patch) | |
| tree | 4b05b6effdb2f5e2b1b465fc7c38d625b1a57e63 | |
| parent | Fix margins in 600px view of settings and label (diff) | |
| download | discord.py-df57392aea1a011f27607c9cb7e0a786df798205.tar.xz discord.py-df57392aea1a011f27607c9cb7e0a786df798205.zip | |
Fix table wrapping
| -rw-r--r-- | discord/invite.py | 39 | ||||
| -rw-r--r-- | docs/_static/style.css | 2 |
2 files changed, 24 insertions, 17 deletions
diff --git a/discord/invite.py b/discord/invite.py index 2f7c273d..364fc274 100644 --- a/discord/invite.py +++ b/discord/invite.py @@ -235,23 +235,28 @@ class Invite(Hashable): The following table illustrates what methods will obtain the attributes: - +------------------------------------+----------------------------------------------------------+ - | Attribute | Method | - +====================================+==========================================================+ - | :attr:`max_age` | :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:`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_presence_count` | :meth:`Client.fetch_invite` | - +------------------------------------+----------------------------------------------------------+ + +------------------------------------+----------------------------------+ + | Attribute | Method | + +====================================+==================================+ + | :attr:`max_age` | :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:`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_presence_count` | :meth:`Client.fetch_invite` | + +------------------------------------+----------------------------------+ If it's not in the table above then it is available by all methods. diff --git a/docs/_static/style.css b/docs/_static/style.css index e80b88bb..f77572f3 100644 --- a/docs/_static/style.css +++ b/docs/_static/style.css @@ -804,6 +804,7 @@ dd { table.docutils { width: 100%; + table-layout: fixed; } table.docutils.footnote { @@ -828,6 +829,7 @@ table.docutils tbody tr td { border-top: solid 1px var(--table-border); padding: 7px 5px; vertical-align: top; + overflow-wrap: break-word; } table.docutils tbody tr:last-child th, table.docutils tbody tr:last-child td { |