@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 pre-wrap in two-column-view

Summary: Fixes T9154, tables have special needs with widths and pres

Test Plan: Test a long piece of code in a Ponder question

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Maniphest Tasks: T9154

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

+6 -2
+2 -2
resources/celerity/map.php
··· 148 148 'rsrc/css/phui/phui-tag-view.css' => '402691cc', 149 149 'rsrc/css/phui/phui-text.css' => 'cf019f54', 150 150 'rsrc/css/phui/phui-timeline-view.css' => 'f1bccf73', 151 - 'rsrc/css/phui/phui-two-column-view.css' => 'add0a7d1', 151 + 'rsrc/css/phui/phui-two-column-view.css' => '39ecafb1', 152 152 'rsrc/css/phui/phui-workboard-view.css' => '6704d68d', 153 153 'rsrc/css/phui/phui-workpanel-view.css' => 'adec7699', 154 154 'rsrc/css/sprite-login.css' => '1ebb9bf9', ··· 802 802 'phui-text-css' => 'cf019f54', 803 803 'phui-theme-css' => '6b451f24', 804 804 'phui-timeline-view-css' => 'f1bccf73', 805 - 'phui-two-column-view-css' => 'add0a7d1', 805 + 'phui-two-column-view-css' => '39ecafb1', 806 806 'phui-workboard-view-css' => '6704d68d', 807 807 'phui-workpanel-view-css' => 'adec7699', 808 808 'phuix-action-list-view' => 'b5c256b8',
+4
webroot/rsrc/css/phui/phui-two-column-view.css
··· 31 31 .phui-side-column .phui-object-box:first-child { 32 32 margin: 0 16px 16px 0; 33 33 } 34 + 35 + .phui-two-column-view pre { 36 + white-space: pre-wrap; 37 + }