@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix word-break on remarkup tables

Summary: Tables headers break all kinds of funky even though we set `word-break` to word presumably because width is not calculated. Just use normal breaks.

Test Plan: Test developer documentation table in sand box, table is readable on desktop, phone break points.

Reviewers: epriestley

Subscribers: Korvin

Differential Revision: https://secure.phabricator.com/D14063

+7 -6
+5 -5
resources/celerity/map.php
··· 7 7 */ 8 8 return array( 9 9 'names' => array( 10 - 'core.pkg.css' => 'eb8c668d', 10 + 'core.pkg.css' => '7d2aec87', 11 11 'core.pkg.js' => '47dc9ebb', 12 12 'darkconsole.pkg.js' => 'e7393ebb', 13 13 'differential.pkg.css' => '2de124c9', ··· 104 104 'rsrc/css/application/tokens/tokens.css' => '3d0f239e', 105 105 'rsrc/css/application/uiexample/example.css' => '528b19de', 106 106 'rsrc/css/core/core.css' => 'a76cefc9', 107 - 'rsrc/css/core/remarkup.css' => 'ef286a6e', 107 + 'rsrc/css/core/remarkup.css' => '1c4ac273', 108 108 'rsrc/css/core/syntax.css' => '9fd11da8', 109 109 'rsrc/css/core/z-index.css' => '57ddcaa2', 110 110 'rsrc/css/diviner/diviner-shared.css' => '5a337049', ··· 138 138 'rsrc/css/phui/phui-info-view.css' => '5b16bac6', 139 139 'rsrc/css/phui/phui-list.css' => '125599df', 140 140 'rsrc/css/phui/phui-object-box.css' => '407eaf5a', 141 - 'rsrc/css/phui/phui-object-item-list-view.css' => 'ab1bf393', 141 + 'rsrc/css/phui/phui-object-item-list-view.css' => '26c30d3f', 142 142 'rsrc/css/phui/phui-pager.css' => 'bea33d23', 143 143 'rsrc/css/phui/phui-pinboard-view.css' => '2495140e', 144 144 'rsrc/css/phui/phui-property-list-view.css' => '03904f6b', ··· 737 737 'phabricator-object-selector-css' => '85ee8ce6', 738 738 'phabricator-phtize' => 'd254d646', 739 739 'phabricator-prefab' => '6920d200', 740 - 'phabricator-remarkup-css' => 'ef286a6e', 740 + 'phabricator-remarkup-css' => '1c4ac273', 741 741 'phabricator-search-results-css' => '7dea472c', 742 742 'phabricator-shaped-request' => '7cbe244b', 743 743 'phabricator-side-menu-view-css' => 'bec2458e', ··· 791 791 'phui-inline-comment-view-css' => '0fdb3667', 792 792 'phui-list-view-css' => '125599df', 793 793 'phui-object-box-css' => '407eaf5a', 794 - 'phui-object-item-list-view-css' => 'ab1bf393', 794 + 'phui-object-item-list-view-css' => '26c30d3f', 795 795 'phui-pager-css' => 'bea33d23', 796 796 'phui-pinboard-view-css' => '2495140e', 797 797 'phui-property-list-view-css' => '03904f6b',
+2 -1
webroot/rsrc/css/core/remarkup.css
··· 339 339 border-spacing: 1px; 340 340 background: {$lightblueborder}; 341 341 margin: 12px 0; 342 + word-break: normal; 342 343 } 343 344 344 345 .phabricator-remarkup table.remarkup-table th { 345 346 font-weight: bold; 346 347 padding: 4px 6px; 347 - background: #F8F9FC; 348 + background: {$lightbluebackground}; 348 349 } 349 350 350 351 .phabricator-remarkup table.remarkup-table td {