Skip to content

Commit 761134a

Browse files
Line counters: do not wrap when over 999 on mobile
Summary: | Before | After | |-----------|-----------| | {F335620} | {F335621} | Closes T15615 Test Plan: Create a very long Diff with soooo much lines (e.g. 1000+). Reduce the window and check that line numbers do not wrap anymore. Reviewers: O1 Blessed Committers, avivey Reviewed By: O1 Blessed Committers, avivey Subscribers: tobiaswiese, Matthew, Cigaryno Maniphest Tasks: T15615 Differential Revision: https://we.phorge.it/D25407
1 parent 3a1f568 commit 761134a

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

resources/celerity/map.php

+6-6
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
'core.pkg.css' => '1a5169fe',
1313
'core.pkg.js' => '2eeda9e0',
1414
'dark-console.pkg.js' => '187792c2',
15-
'differential.pkg.css' => '525f9a1d',
15+
'differential.pkg.css' => '2431def2',
1616
'differential.pkg.js' => '46fcb3af',
1717
'diffusion.pkg.css' => '42c75c37',
1818
'diffusion.pkg.js' => '78c9885d',
@@ -63,7 +63,7 @@
6363
'rsrc/css/application/diff/diff-tree-view.css' => 'e2d3e222',
6464
'rsrc/css/application/diff/inline-comment-summary.css' => '81eb368d',
6565
'rsrc/css/application/differential/add-comment.css' => '7e5900d9',
66-
'rsrc/css/application/differential/changeset-view.css' => '8b9caefe',
66+
'rsrc/css/application/differential/changeset-view.css' => '360630ff',
6767
'rsrc/css/application/differential/core.css' => '7300a73e',
6868
'rsrc/css/application/differential/phui-inline-comment.css' => 'a864426f',
6969
'rsrc/css/application/differential/revision-comment.css' => '7dbc8d1d',
@@ -560,7 +560,7 @@
560560
'conpherence-transaction-css' => '3a3f5e7e',
561561
'd3' => '9d068042',
562562
'diff-tree-view-css' => 'e2d3e222',
563-
'differential-changeset-view-css' => '8b9caefe',
563+
'differential-changeset-view-css' => '360630ff',
564564
'differential-core-view-css' => '7300a73e',
565565
'differential-revision-add-comment-css' => '7e5900d9',
566566
'differential-revision-comment-css' => '7dbc8d1d',
@@ -1228,6 +1228,9 @@
12281228
'aphront-typeahead-control-css',
12291229
'phui-tag-view-css',
12301230
),
1231+
'360630ff' => array(
1232+
'phui-inline-comment-view-css',
1233+
),
12311234
'3829a3cf' => array(
12321235
'javelin-behavior',
12331236
'javelin-uri',
@@ -1702,9 +1705,6 @@
17021705
'javelin-dom',
17031706
'phabricator-busy',
17041707
),
1705-
'8b9caefe' => array(
1706-
'phui-inline-comment-view-css',
1707-
),
17081708
'8badee71' => array(
17091709
'javelin-install',
17101710
'javelin-util',

webroot/rsrc/css/application/differential/changeset-view.css

+1
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,7 @@ should always have a boring grey background. */
183183
cursor: pointer;
184184
border-right: 1px solid {$thinblueborder};
185185
overflow: hidden;
186+
white-space: nowrap;
186187
}
187188

188189
.differential-diff td + td.n {

0 commit comments

Comments
 (0)