mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-18 19:40:55 +01:00
Fix mobile CSS for lint/unit results table
Summary: Removes nowrap when on mobile devices. Test Plan: Test Lint/Unit layout on mobile and table layouts Reviewers: epriestley, btrahan Reviewed By: btrahan Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D10608
This commit is contained in:
parent
855f752814
commit
5ce6ca2768
2 changed files with 7 additions and 3 deletions
|
@ -10,7 +10,7 @@ return array(
|
|||
'core.pkg.css' => 'fe2446e9',
|
||||
'core.pkg.js' => 'cbdbd552',
|
||||
'darkconsole.pkg.js' => 'df001cab',
|
||||
'differential.pkg.css' => '36884139',
|
||||
'differential.pkg.css' => '0f9c3082',
|
||||
'differential.pkg.js' => '73337d1d',
|
||||
'diffusion.pkg.css' => '591664fa',
|
||||
'diffusion.pkg.js' => 'bfc0737b',
|
||||
|
@ -56,7 +56,7 @@ return array(
|
|||
'rsrc/css/application/differential/add-comment.css' => 'c478bcaa',
|
||||
'rsrc/css/application/differential/changeset-view.css' => 'b2b71e76',
|
||||
'rsrc/css/application/differential/core.css' => '7ac3cabc',
|
||||
'rsrc/css/application/differential/results-table.css' => '239924f9',
|
||||
'rsrc/css/application/differential/results-table.css' => '181aa9d9',
|
||||
'rsrc/css/application/differential/revision-comment.css' => '48186045',
|
||||
'rsrc/css/application/differential/revision-history.css' => '0e8eb855',
|
||||
'rsrc/css/application/differential/revision-list.css' => 'f3c47d33',
|
||||
|
@ -522,7 +522,7 @@ return array(
|
|||
'differential-changeset-view-css' => 'b2b71e76',
|
||||
'differential-core-view-css' => '7ac3cabc',
|
||||
'differential-inline-comment-editor' => 'f2441746',
|
||||
'differential-results-table-css' => '239924f9',
|
||||
'differential-results-table-css' => '181aa9d9',
|
||||
'differential-revision-add-comment-css' => 'c478bcaa',
|
||||
'differential-revision-comment-css' => '48186045',
|
||||
'differential-revision-history-css' => '0e8eb855',
|
||||
|
|
|
@ -18,6 +18,10 @@ table.differential-results-table {
|
|||
background: #f7f7f7;
|
||||
}
|
||||
|
||||
.device .differential-results-table th {
|
||||
white-space: normal;
|
||||
}
|
||||
|
||||
.differential-results-table td {
|
||||
padding: 0 8px;
|
||||
margin: 0;
|
||||
|
|
Loading…
Reference in a new issue