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

Touch up hidden panel colors

Summary: Adds a red border, panels love borders.

Test Plan:
Hide/Unhide

{F170300}

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: epriestley, Korvin

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

+13 -3
+2 -2
resources/celerity/map.php
··· 146 146 'rsrc/css/phui/phui-text.css' => '23e9b4b7', 147 147 'rsrc/css/phui/phui-timeline-view.css' => 'bbd990d0', 148 148 'rsrc/css/phui/phui-workboard-view.css' => '2bf82d00', 149 - 'rsrc/css/phui/phui-workpanel-view.css' => 'a8d0273b', 149 + 'rsrc/css/phui/phui-workpanel-view.css' => 'ed2a2162', 150 150 'rsrc/css/sprite-apps-large.css' => '12ea1ced', 151 151 'rsrc/css/sprite-apps.css' => '37ee4f4e', 152 152 'rsrc/css/sprite-conpherence.css' => '3b4a0487', ··· 791 791 'phui-text-css' => '23e9b4b7', 792 792 'phui-timeline-view-css' => 'bbd990d0', 793 793 'phui-workboard-view-css' => '2bf82d00', 794 - 'phui-workpanel-view-css' => 'a8d0273b', 794 + 'phui-workpanel-view-css' => 'ed2a2162', 795 795 'phuix-action-list-view' => 'b5c256b8', 796 796 'phuix-action-view' => '6e8cefa4', 797 797 'phuix-dropdown-menu' => 'bd4c8dca',
+5 -1
src/view/phui/PHUIWorkpanelView.php
··· 48 48 public function getTagContent() { 49 49 require_celerity_resource('phui-workpanel-view-css'); 50 50 51 + $classes = array(); 52 + $classes[] = 'phui-workpanel-view-inner'; 51 53 $footer = ''; 52 54 if ($this->footerAction) { 53 55 $footer_tag = $this->footerAction; ··· 75 77 $header->addAction($this->headerAction); 76 78 } 77 79 80 + $classes[] = 'phui-workpanel-'.$this->headerColor; 81 + 78 82 $body = phutil_tag( 79 83 'div', 80 84 array( ··· 85 89 $view = phutil_tag( 86 90 'div', 87 91 array( 88 - 'class' => 'phui-workpanel-view-inner', 92 + 'class' => implode(' ', $classes), 89 93 ), 90 94 array( 91 95 $header,
+6
webroot/rsrc/css/phui/phui-workpanel-view.css
··· 90 90 background: rgba(255,255,255,.7); 91 91 } 92 92 93 + .phui-workpanel-view .phui-workpanel-lightred .phui-action-header { 94 + border-top: 1px solid {$redborder}; 95 + border-left: 1px solid {$redborder}; 96 + border-right: 1px solid {$redborder}; 97 + } 98 + 93 99 /* - Workpanel Cards ----------------------------------------------------------- 94 100 95 101 Slight display changes for how cards work in tight spaces