diff --git a/core/themes/claro/css/components/tables.css b/core/themes/claro/css/components/tables.css index da617a597e..95b77c4b47 100644 --- a/core/themes/claro/css/components/tables.css +++ b/core/themes/claro/css/components/tables.css @@ -290,3 +290,27 @@ td.priority-medium { .tabledrag-toggle-weight-wrapper + .tableresponsive-toggle-columns + table { margin-top: 0; } + +/** + * Responsive tables. + */ + @media screen and (max-width: 37.5em) { /* 600px */ + th.priority-low, + td.priority-low, + th.priority-medium, + td.priority-medium { + display: none; + } +} + +@media screen and (max-width: 60em) { /* 920px */ + th.priority-low, + td.priority-low { + display: none; + } + + table { + display: block; + overflow: auto; + } +} \ No newline at end of file