@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.

Make code blocks clear floats in Phriction

Summary: In situations where a code block and a ToC are displayed, this clears the float so the code block is always 100% wide.

Test Plan: Tested a code block with a ToC, iOS and Chrome

Reviewers: epriestley, btrahan

Reviewed By: epriestley

CC: aran, Korvin

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

+6 -1
+1 -1
src/__celerity_resource_map__.php
··· 3651 3651 ), 3652 3652 'phriction-document-css' => 3653 3653 array( 3654 - 'uri' => '/res/cc6cefba/rsrc/css/application/phriction/phriction-document-css.css', 3654 + 'uri' => '/res/14e08350/rsrc/css/application/phriction/phriction-document-css.css', 3655 3655 'type' => 'css', 3656 3656 'requires' => 3657 3657 array(
+5
webroot/rsrc/css/application/phriction/phriction-document-css.css
··· 150 150 .device-phone .phriction-content .phabricator-remarkup-toc { 151 151 width: 120px; 152 152 } 153 + 154 + .phriction-content .phabricator-remarkup .remarkup-code-block { 155 + clear: both; 156 + margin: 20px 0; 157 + }