@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 a Unicode character dot on Differential Paths Panel divider

Summary:
Replace the blurry dot PNG rendered on the vertical divider between the Paths Panel and the actual revision in Differential with a Unicode dot character which can easily be rendered in a different color (useful for improved dark mode support).

Also remove the `box-shadow` effect on the right border of the vertical divider. I like clean lines and the shadow made the dot look less horizontally centered.

Refs T15056

Test Plan:
* Create a Differential revision
* Go to http://phorge.localhost/D1
* In the left upper corner, click that arrow thingie to Show Paths Panel
* Look at the vertical divider and spot some dot somewhere on that divider

Reviewers: O1 Blessed Committers, mainframe98

Reviewed By: O1 Blessed Committers, mainframe98

Subscribers: mainframe98, tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Maniphest Tasks: T15056

Differential Revision: https://we.phorge.it/D26161

+17 -10
+3 -4
resources/celerity/map.php
··· 12 12 'core.pkg.css' => '96aaba46', 13 13 'core.pkg.js' => '83580d78', 14 14 'dark-console.pkg.js' => '187792c2', 15 - 'differential.pkg.css' => 'a2f3f4cd', 15 + 'differential.pkg.css' => 'a0c57051', 16 16 'differential.pkg.js' => '46fcb3af', 17 17 'diffusion.pkg.css' => '91e57dc1', 18 18 'diffusion.pkg.js' => '78c9885d', ··· 150 150 'rsrc/css/phui/phui-fontkit.css' => '1ec937e5', 151 151 'rsrc/css/phui/phui-form-view.css' => '0c6c5f44', 152 152 'rsrc/css/phui/phui-form.css' => '2884219c', 153 - 'rsrc/css/phui/phui-formation-view.css' => '7e9e5b96', 153 + 'rsrc/css/phui/phui-formation-view.css' => '8a01850c', 154 154 'rsrc/css/phui/phui-head-thing.css' => 'd7f293df', 155 155 'rsrc/css/phui/phui-header-view.css' => '7bc4efa0', 156 156 'rsrc/css/phui/phui-hovercard.css' => '7ffb4e0c', ··· 280 280 'rsrc/image/controls/checkbox-unchecked.png' => 'e1deba0a', 281 281 'rsrc/image/d5d8e1.png' => '6764616e', 282 282 'rsrc/image/darkload.gif' => '5bd41a89', 283 - 'rsrc/image/divot.png' => '0fbe2453', 284 283 'rsrc/image/examples/hero.png' => '5d8c4b21', 285 284 'rsrc/image/grippy_texture.png' => 'a7d222b5', 286 285 'rsrc/image/icon/fatcow/flag_blue.png' => '54db2e5c', ··· 823 822 'phui-fontkit-css' => '1ec937e5', 824 823 'phui-form-css' => '2884219c', 825 824 'phui-form-view-css' => '0c6c5f44', 826 - 'phui-formation-view-css' => '7e9e5b96', 825 + 'phui-formation-view-css' => '8a01850c', 827 826 'phui-head-thing-view-css' => 'd7f293df', 828 827 'phui-header-view-css' => '7bc4efa0', 829 828 'phui-hovercard' => '6199f752',
+3
src/view/formation/PHUIFormationResizerView.php
··· 18 18 return 8; 19 19 } 20 20 21 + /** 22 + * @return PhutilSafeHTML 23 + */ 21 24 public function render() { 22 25 $width = $this->getWidth(); 23 26 $style = sprintf('width: %dpx;', $width);
+11 -6
webroot/rsrc/css/phui/phui-formation-view.css
··· 120 120 border-color: #fff #999c9e #fff #999c9e; 121 121 box-sizing: border-box; 122 122 123 - box-shadow: inset -1px 0px 1px rgba({$alphablack}, 0.15); 124 - 125 - background-image: url(/rsrc/image/divot.png); 126 - background-position: center; 127 - background-repeat: no-repeat; 128 - 129 123 display: none; 130 124 z-index: 4; 125 + } 126 + 127 + .phui-formation-resizer::before { 128 + content: "\2022"; 129 + position: absolute; 130 + top: 50%; 131 + left: 50%; 132 + transform: translate(-50%, -50%); 133 + font-size: 10px; 134 + color: {$greytext}; 135 + pointer-events: none; 131 136 } 132 137 133 138 .device-desktop .phui-formation-resizer {
webroot/rsrc/image/divot.png

This is a binary file and will not be displayed.