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

Add styling for new Remarkup highlighter

Summary: Adds some basic style to new !!Remarkup Highlighter!! Ref T5560

Test Plan: Wait for next diff.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Maniphest Tasks: T5560

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

+8 -3
+3 -3
resources/celerity/map.php
··· 7 7 */ 8 8 return array( 9 9 'names' => array( 10 - 'core.pkg.css' => 'fae3b050', 10 + 'core.pkg.css' => 'dd913c69', 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' => '78e8d7ea', 107 - 'rsrc/css/core/remarkup.css' => 'f18999d1', 107 + 'rsrc/css/core/remarkup.css' => '82f4e4c5', 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' => 'aa3656aa', ··· 736 736 'phabricator-object-selector-css' => '85ee8ce6', 737 737 'phabricator-phtize' => 'd254d646', 738 738 'phabricator-prefab' => '6920d200', 739 - 'phabricator-remarkup-css' => 'f18999d1', 739 + 'phabricator-remarkup-css' => '82f4e4c5', 740 740 'phabricator-search-results-css' => '7dea472c', 741 741 'phabricator-shaped-request' => '7cbe244b', 742 742 'phabricator-side-menu-view-css' => 'bec2458e',
+1
src/infrastructure/markup/PhabricatorMarkupEngine.php
··· 510 510 $rules[] = new PhutilRemarkupItalicRule(); 511 511 $rules[] = new PhutilRemarkupDelRule(); 512 512 $rules[] = new PhutilRemarkupUnderlineRule(); 513 + $rules[] = new PhutilRemarkupHighlightRule(); 513 514 514 515 foreach (self::loadCustomInlineRules() as $rule) { 515 516 $rules[] = $rule;
+4
webroot/rsrc/css/core/remarkup.css
··· 520 520 background: {$thinblueborder}; 521 521 margin: 24px 0; 522 522 } 523 + 524 + .phabricator-remarkup .remarkup-highlight { 525 + background-color: {$lightviolet}; 526 + }