Skip to content
Snippets Groups Projects
Verified Commit 5bc4ba5f authored by Lloyd Meins's avatar Lloyd Meins :thought_balloon:
Browse files

Make tables horizontally scrollable even if they are not responsive

parent ed3ce706
No related branches found
No related tags found
1 merge request!890Resolve "Rethink mobile tables"
Pipeline #49367 canceled
......@@ -13,10 +13,6 @@ Added
~~~~~
* Add preference for configuring the default phone number country code.
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.
......@@ -45,6 +41,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
-------------------
......
......@@ -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);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment