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

Timeline line: Replace 1px image with CSS

Summary:
Replace the thin grey timeline line created via a 1px image file with modern CSS.
According to https://caniuse.com/?search=linear-gradient this should be long supported, except for Safari versions before 2022 which may have some problems (or not).

Closes T16202

Refs T15056

Test Plan: Go to a page which exposes the vertical timeline line, e.g. a Maniphest task, and look at it. (Note that depending on browser zoom levels there might be small differences.)

Reviewers: O1 Blessed Committers, mainframe98

Reviewed By: O1 Blessed Committers, mainframe98

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

Maniphest Tasks: T16202, T15056

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

+4 -6
+3 -4
resources/celerity/map.php
··· 9 9 'names' => array( 10 10 'conpherence.pkg.css' => 'beb13d57', 11 11 'conpherence.pkg.js' => '020aebcf', 12 - 'core.pkg.css' => 'eac152af', 12 + 'core.pkg.css' => '4db121d8', 13 13 'core.pkg.js' => '83580d78', 14 14 'dark-console.pkg.js' => '187792c2', 15 15 'differential.pkg.css' => '77189aae', ··· 172 172 'rsrc/css/phui/phui-spacing.css' => 'b05cadc3', 173 173 'rsrc/css/phui/phui-status.css' => '293b5dad', 174 174 'rsrc/css/phui/phui-tag-view.css' => '8613be82', 175 - 'rsrc/css/phui/phui-timeline-view.css' => '3803cefb', 175 + 'rsrc/css/phui/phui-timeline-view.css' => '0277217e', 176 176 'rsrc/css/phui/phui-two-column-view.css' => '54fb9794', 177 177 'rsrc/css/phui/workboards/phui-workboard-color.css' => '27fbe0ac', 178 178 'rsrc/css/phui/workboards/phui-workboard.css' => 'e7ba21a7', ··· 276 276 'rsrc/image/chevron-out.png' => 'c815e272', 277 277 'rsrc/image/controls/checkbox-checked.png' => '1770d7a0', 278 278 'rsrc/image/controls/checkbox-unchecked.png' => 'e1deba0a', 279 - 'rsrc/image/d5d8e1.png' => '6764616e', 280 279 'rsrc/image/darkload.gif' => '5bd41a89', 281 280 'rsrc/image/examples/hero.png' => '5d8c4b21', 282 281 'rsrc/image/icon/fatcow/flag_blue.png' => '54db2e5c', ··· 832 831 'phui-status-list-view-css' => '293b5dad', 833 832 'phui-tag-view-css' => '8613be82', 834 833 'phui-theme-css' => '35883b37', 835 - 'phui-timeline-view-css' => '3803cefb', 834 + 'phui-timeline-view-css' => '0277217e', 836 835 'phui-two-column-view-css' => '54fb9794', 837 836 'phui-workboard-color-css' => '27fbe0ac', 838 837 'phui-workboard-view-css' => 'e7ba21a7',
+1 -2
webroot/rsrc/css/phui/phui-timeline-view.css
··· 4 4 5 5 .phui-timeline-view { 6 6 padding: 0 16px; 7 - background-image: url('/rsrc/image/d5d8e1.png'); 8 - background-repeat: repeat-y; 7 + background: linear-gradient(to right, #d5d8e1 1px, transparent 1px); 9 8 background-position: 96px; 10 9 } 11 10
webroot/rsrc/image/d5d8e1.png

This is a binary file and will not be displayed.