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

Use different numbering schemes for nested ol's

Summary:
Nested ol's using the same numbering scheme are hard to parse visually.

This just makes it a little nicer.

Maybe we could add greek too...

Test Plan:
{F362680}
{F362681}

Reviewers: chad, epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: epriestley

Projects: #remarkup

Maniphest Tasks: T7976

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

authored by

seth and committed by
epriestley
05b32e66 e427cb16

+17 -3
+3 -3
resources/celerity/map.php
··· 7 7 */ 8 8 return array( 9 9 'names' => array( 10 - 'core.pkg.css' => 'f1ac6066', 10 + 'core.pkg.css' => '0d6f3284', 11 11 'core.pkg.js' => '59d01bb7', 12 12 'darkconsole.pkg.js' => '6d16ff19', 13 13 'differential.pkg.css' => '3500921f', ··· 108 108 'rsrc/css/application/tokens/tokens.css' => '3d0f239e', 109 109 'rsrc/css/application/uiexample/example.css' => '528b19de', 110 110 'rsrc/css/core/core.css' => '76e8ee93', 111 - 'rsrc/css/core/remarkup.css' => '9e4a32d9', 111 + 'rsrc/css/core/remarkup.css' => '60a27345', 112 112 'rsrc/css/core/syntax.css' => '56c1ba38', 113 113 'rsrc/css/core/z-index.css' => '5a2b9d9d', 114 114 'rsrc/css/diviner/diviner-shared.css' => '38813222', ··· 746 746 'phabricator-phtize' => 'd254d646', 747 747 'phabricator-prefab' => '6920d200', 748 748 'phabricator-profile-css' => '1a20dcbf', 749 - 'phabricator-remarkup-css' => '9e4a32d9', 749 + 'phabricator-remarkup-css' => '60a27345', 750 750 'phabricator-search-results-css' => '15c71110', 751 751 'phabricator-shaped-request' => '7cbe244b', 752 752 'phabricator-side-menu-view-css' => '7e8c6341',
+14
webroot/rsrc/css/core/remarkup.css
··· 69 69 margin: 12px 0 12px 30px; 70 70 } 71 71 72 + .phabricator-remarkup ol ol.remarkup-list { 73 + list-style: upper-alpha; 74 + } 75 + 76 + 77 + .phabricator-remarkup ol ol ol.remarkup-list { 78 + list-style: lower-alpha; 79 + } 80 + 81 + 82 + .phabricator-remarkup ol ol ol ol.remarkup-list { 83 + list-style: lower-roman; 84 + } 85 + 72 86 .phabricator-remarkup ul.remarkup-list-with-checkmarks { 73 87 list-style: none; 74 88 margin-left: 18px;