@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 checkbox images for remarkup

Summary: Minor, adds some weightier checkbox styles for use in Remarkup.

Test Plan:
Test a task, Phriction, various remarkup list styles.

{F4990161}

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: cspeckmim, Korvin

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

authored by

Chad Little and committed by
chad
cb85be81 d3c464a6

+30 -7
+5 -3
resources/celerity/map.php
··· 9 9 'names' => array( 10 10 'conpherence.pkg.css' => 'ff161f2d', 11 11 'conpherence.pkg.js' => 'b5b51108', 12 - 'core.pkg.css' => '1a935531', 12 + 'core.pkg.css' => '176b5104', 13 13 'core.pkg.js' => '1475bd91', 14 14 'darkconsole.pkg.js' => '1f9a31bc', 15 15 'differential.pkg.css' => '1ccbf3a9', ··· 115 115 'rsrc/css/application/tokens/tokens.css' => '3d0f239e', 116 116 'rsrc/css/application/uiexample/example.css' => '528b19de', 117 117 'rsrc/css/core/core.css' => '23beb330', 118 - 'rsrc/css/core/remarkup.css' => 'd1a5e11e', 118 + 'rsrc/css/core/remarkup.css' => '509fb36e', 119 119 'rsrc/css/core/syntax.css' => 'cae95e89', 120 120 'rsrc/css/core/z-index.css' => '9d8f7c4b', 121 121 'rsrc/css/diviner/diviner-shared.css' => '896f1d43', ··· 298 298 'rsrc/image/checker_dark.png' => 'd8e65881', 299 299 'rsrc/image/checker_light.png' => 'a0155918', 300 300 'rsrc/image/checker_lighter.png' => 'd5da91b6', 301 + 'rsrc/image/controls/checkbox-checked.png' => 'ad6441ea', 302 + 'rsrc/image/controls/checkbox-unchecked.png' => '8eb1f0ae', 301 303 'rsrc/image/d5d8e1.png' => '0c2a1497', 302 304 'rsrc/image/darkload.gif' => '1ffd3ec6', 303 305 'rsrc/image/divot.png' => '94dded62', ··· 793 795 'phabricator-object-selector-css' => '85ee8ce6', 794 796 'phabricator-phtize' => 'd254d646', 795 797 'phabricator-prefab' => 'c5af80a2', 796 - 'phabricator-remarkup-css' => 'd1a5e11e', 798 + 'phabricator-remarkup-css' => '509fb36e', 797 799 'phabricator-search-results-css' => '8f8e08ed', 798 800 'phabricator-shaped-request' => '7cbe244b', 799 801 'phabricator-slowvote-css' => 'a94b7230',
+25 -4
webroot/rsrc/css/core/remarkup.css
··· 122 122 .phabricator-remarkup .remarkup-list-with-checkmarks .remarkup-checked-item, 123 123 .phabricator-remarkup .remarkup-list-with-checkmarks .remarkup-unchecked-item { 124 124 list-style: none; 125 - margin-left: -18px; 125 + margin-left: -20px; 126 + position: relative; 127 + padding-left: 22px; 126 128 } 127 129 128 130 .phabricator-remarkup .remarkup-list-with-checkmarks input { 129 - margin-right: 4px; 130 - opacity: 1; 131 + display: none; 132 + } 133 + 134 + .phabricator-remarkup .remarkup-list-with-checkmarks 135 + .remarkup-list-item::before { 136 + height: 16px; 137 + width: 16px; 138 + background-size: 16px; 139 + display: inline-block; 140 + content: ''; 141 + position: absolute; 142 + top: 3px; 143 + left: 0; 144 + } 145 + 146 + .remarkup-list-with-checkmarks .remarkup-checked-item::before { 147 + background-image: url(rsrc/image/controls/checkbox-checked.png); 148 + } 149 + 150 + .remarkup-list-with-checkmarks .remarkup-unchecked-item::before { 151 + background-image: url(rsrc/image/controls/checkbox-unchecked.png); 131 152 } 132 153 133 154 .phabricator-remarkup .remarkup-list-with-checkmarks .remarkup-checked-item { 155 + color: {$lightgreytext}; 134 156 text-decoration: line-through; 135 - color: {$lightgreytext}; 136 157 } 137 158 138 159 .phabricator-remarkup ul.remarkup-list ol.remarkup-list,
webroot/rsrc/image/controls/checkbox-checked.png

This is a binary file and will not be displayed.

webroot/rsrc/image/controls/checkbox-unchecked.png

This is a binary file and will not be displayed.