@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 CSS and docs for remarkup checkbox list styles

Summary: See D8931. Ref T3945. CSS for the checkmark styles.

Test Plan: {F149713}

Reviewers: btrahan, chad

Reviewed By: chad

Subscribers: epriestley

Maniphest Tasks: T3945

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

+29 -3
+3 -3
resources/celerity/map.php
··· 7 7 return array( 8 8 'names' => 9 9 array( 10 - 'core.pkg.css' => 'cd6367eb', 10 + 'core.pkg.css' => '94fe8187', 11 11 'core.pkg.js' => '417722ff', 12 12 'darkconsole.pkg.js' => 'ca8671ce', 13 13 'differential.pkg.css' => '8a064eb7', ··· 106 106 'rsrc/css/application/tokens/tokens.css' => '5f7bca25', 107 107 'rsrc/css/application/uiexample/example.css' => '528b19de', 108 108 'rsrc/css/core/core.css' => '7dff07c3', 109 - 'rsrc/css/core/remarkup.css' => '98a7627b', 109 + 'rsrc/css/core/remarkup.css' => '0ec9ea61', 110 110 'rsrc/css/core/syntax.css' => '3c18c1cb', 111 111 'rsrc/css/core/z-index.css' => '7e4989ed', 112 112 'rsrc/css/diviner/diviner-shared.css' => '38813222', ··· 713 713 'phabricator-prefab' => '0326e5d0', 714 714 'phabricator-profile-css' => '33e6f703', 715 715 'phabricator-project-tag-css' => '095c9404', 716 - 'phabricator-remarkup-css' => '98a7627b', 716 + 'phabricator-remarkup-css' => '0ec9ea61', 717 717 'phabricator-search-results-css' => 'f240504c', 718 718 'phabricator-settings-css' => 'ea8f5915', 719 719 'phabricator-shaped-request' => 'dfa181a4',
+13
src/docs/user/userguide/remarkup.diviner
··· 158 158 -- Branch 159 159 --- Twig 160 160 161 + You can add checkboxes to items by prefacing them with `[ ]` or `[X]`, like 162 + this: 163 + 164 + ``` 165 + - [X] Preheat oven to 450 degrees. 166 + - [ ] Zest 35 lemons. 167 + ``` 168 + 169 + When rendered, this produces: 170 + 171 + - [X] Preheat oven to 450 degrees. 172 + - [ ] Zest 35 lemons. 173 + 161 174 Make **code blocks** by indenting two spaces: 162 175 163 176 f(x, y);
+13
webroot/rsrc/css/core/remarkup.css
··· 71 71 margin: 12px 0 12px 30px; 72 72 } 73 73 74 + .phabricator-remarkup .remarkup-list-with-checkmarks { 75 + list-style: none; 76 + margin-left: 18px; 77 + } 78 + 79 + .phabricator-remarkup .remarkup-list-with-checkmarks input { 80 + margin-right: 2px; 81 + } 82 + 83 + .phabricator-remarkup .remarkup-list-with-checkmarks .remarkup-checked-item { 84 + color: {$greytext}; 85 + } 86 + 74 87 .phabricator-remarkup ul ol, 75 88 .phabricator-remarkup ul ul, 76 89 .phabricator-remarkup ol ol,