diff --git a/app/assets/stylesheets/mobile/admin_report.scss b/app/assets/stylesheets/mobile/admin_report.scss index 29656b35603..2af96e2b4fc 100644 --- a/app/assets/stylesheets/mobile/admin_report.scss +++ b/app/assets/stylesheets/mobile/admin_report.scss @@ -8,3 +8,32 @@ } } } + +.admin-report.top-referred-topics { + .admin-report-table { + .report-table { + table-layout: fixed; + + thead tr th.topic_title, + tbody tr td.topic_title { + text-overflow: ellipsis; + overflow: hidden; + white-space: nowrap; + width: 80%; + } + } + } +} + +.admin-report.trending-search { + .admin-report-table { + .report-table { + table-layout: fixed; + + thead tr th.term, + tbody tr td.term { + width: 50%; + } + } + } +}