diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 1d173115ffb473302fe8dd3f5196ddb373a5d5ab..392b46b2ee0259a11ad0790c06ecd24122f6fac5 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -14,10 +14,6 @@ Added * Add preference for configuring the default phone number country code. * Admins recieve an mail for celery tasks with status "FAILURE" - -Added -~~~~~ - * OpenID Connect RSA keys can now be passed as string in config files * Views filtering for person names now also search the username of a linked user * OAuth2 applications now take an icon which is shown in the authorization progress. @@ -49,6 +45,7 @@ Changed * OpenID Connect is enabled by default now, without RSA support * Login and authorization pages for OAuth2/OpenID Connect now indicate that the user is in progress to authorize an external application. +* Tables can be scrolled horizontally. `2.5`_ – 2022-01-02 ------------------- diff --git a/aleksis/core/static/public/style.scss b/aleksis/core/static/public/style.scss index 4fb6d9b2815555082d18cfd7ef18025704010035..bd8f2e4d621a8dd89a897b14ef25d68c2a88395c 100644 --- a/aleksis/core/static/public/style.scss +++ b/aleksis/core/static/public/style.scss @@ -422,6 +422,10 @@ span.badge .material-icons { /* Table*/ +.table-container { + overflow-x: auto; +} + table.striped > tbody > tr:nth-child(odd), table tr.striped, table tbody.striped tr { background-color: rgba(208, 208, 208, 0.5); }