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

Update Remarkup Note Styles

Summary: Update notes, important, and warnings to look different than codeblocks.

Test Plan: test in diviner and legalpad

Reviewers: btrahan, epriestley

Reviewed By: epriestley

Subscribers: epriestley, Korvin, chad, avivey

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

+12 -31
+3 -5
resources/celerity/map.php
··· 7 7 return array( 8 8 'names' => 9 9 array( 10 - 'core.pkg.css' => '4d72eb6e', 10 + 'core.pkg.css' => '5b87dcb0', 11 11 'core.pkg.js' => '264721e1', 12 12 'darkconsole.pkg.js' => 'ca8671ce', 13 13 'differential.pkg.css' => 'cb97e095', ··· 72 72 'rsrc/css/application/flag/flag.css' => '5337623f', 73 73 'rsrc/css/application/herald/herald-test.css' => '2b7d0f54', 74 74 'rsrc/css/application/herald/herald.css' => '59d48f01', 75 - 'rsrc/css/application/legalpad/legalpad-document.css' => 'cd275275', 76 75 'rsrc/css/application/maniphest/batch-editor.css' => '8f380ebc', 77 76 'rsrc/css/application/maniphest/report.css' => '6fc16517', 78 77 'rsrc/css/application/maniphest/task-edit.css' => '8e23031b', ··· 112 111 'rsrc/css/application/tokens/tokens.css' => 'fb286311', 113 112 'rsrc/css/application/uiexample/example.css' => '4741b891', 114 113 'rsrc/css/core/core.css' => 'da26ddb2', 115 - 'rsrc/css/core/remarkup.css' => 'c2bfa678', 114 + 'rsrc/css/core/remarkup.css' => 'b4407c57', 116 115 'rsrc/css/core/syntax.css' => '3c18c1cb', 117 116 'rsrc/css/core/z-index.css' => '0fd29d49', 118 117 'rsrc/css/diviner/diviner-shared.css' => '38813222', ··· 664 663 'javelin-view-renderer' => '6c2b09a2', 665 664 'javelin-view-visitor' => 'efe49472', 666 665 'javelin-workflow' => 'f28bf201', 667 - 'legalpad-document-css' => 'cd275275', 668 666 'lightbox-attachment-css' => '7acac05d', 669 667 'maniphest-batch-editor' => '8f380ebc', 670 668 'maniphest-report-css' => '6fc16517', ··· 709 707 'phabricator-prefab' => '0326e5d0', 710 708 'phabricator-profile-css' => '9bdb9804', 711 709 'phabricator-project-tag-css' => '095c9404', 712 - 'phabricator-remarkup-css' => 'c2bfa678', 710 + 'phabricator-remarkup-css' => 'b4407c57', 713 711 'phabricator-search-results-css' => 'f240504c', 714 712 'phabricator-settings-css' => 'ea8f5915', 715 713 'phabricator-shaped-request' => 'dfa181a4',
-1
src/applications/legalpad/controller/LegalpadDocumentSignController.php
··· 204 204 PhabricatorMarkupEngine $engine, 205 205 LegalpadDocumentBody $body) { 206 206 207 - $this->requireResource('legalpad-document-css'); 208 207 return id(new PHUIDocumentView()) 209 208 ->addClass('legalpad') 210 209 ->setHeader($header)
-1
src/applications/legalpad/controller/LegalpadDocumentViewController.php
··· 110 110 PhabricatorMarkupEngine 111 111 $engine, LegalpadDocumentBody $body) { 112 112 113 - $this->requireResource('legalpad-document-css'); 114 113 $view = new PHUIPropertyListView(); 115 114 $view->addClass('legalpad'); 116 115 $view->addSectionHeader(pht('Document'));
-15
webroot/rsrc/css/application/legalpad/legalpad-document.css
··· 1 - /** 2 - * @provides legalpad-document-css 3 - */ 4 - 5 - .legalpad .phabricator-remarkup .remarkup-note { 6 - border-radius: 15px; 7 - } 8 - 9 - .legalpad .phabricator-remarkup .remarkup-warning { 10 - border-radius: 15px; 11 - } 12 - 13 - .legalpad .phabricator-remarkup .remarkup-important { 14 - border-radius: 15px; 15 - }
+9 -9
webroot/rsrc/css/core/remarkup.css
··· 178 178 } 179 179 180 180 .phabricator-remarkup .remarkup-note { 181 - margin: 12px 24px; 182 - padding: 8px; 183 - border: 1px solid {$blue}; 181 + margin: 16px 0; 182 + padding: 12px; 183 + border-left: 3px solid {$blue}; 184 184 background: {$lightblue}; 185 185 } 186 186 187 187 .phabricator-remarkup .remarkup-warning { 188 - margin: 12px 24px; 189 - padding: 8px; 190 - border: 1px solid {$yellow}; 188 + margin: 16px 0; 189 + padding: 12px; 190 + border-left: 3px solid {$yellow}; 191 191 background: {$lightyellow}; 192 192 } 193 193 194 194 .phabricator-remarkup .remarkup-important { 195 - margin: 12px 24px; 196 - padding: 8px; 197 - border: 1px solid {$red}; 195 + margin: 16px 0; 196 + padding: 12px; 197 + border-left: 3px solid {$red}; 198 198 background: {$lightred}; 199 199 } 200 200