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

Update pinboard view

Summary: Updates the pinboard layout with less shadow and more standard border colors.

Test Plan: Reload pinboard

Reviewers: epriestley, btrahan

Reviewed By: epriestley

CC: Korvin, aran

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

+7 -8
+1 -1
src/__celerity_resource_map__.php
··· 3829 3829 ), 3830 3830 'phui-pinboard-view-css' => 3831 3831 array( 3832 - 'uri' => '/res/3b961aa1/rsrc/css/phui/phui-pinboard-view.css', 3832 + 'uri' => '/res/c1972bac/rsrc/css/phui/phui-pinboard-view.css', 3833 3833 'type' => 'css', 3834 3834 'requires' => 3835 3835 array(
+2 -1
src/view/phui/PHUIPinboardItemView.php
··· 42 42 $header = phutil_tag( 43 43 'div', 44 44 array( 45 - 'class' => 'phui-pinboard-item-header', 45 + 'class' => 'phui-pinboard-item-header '. 46 + 'sprite-gradient gradient-lightblue-header', 46 47 ), 47 48 phutil_tag('a', array('href' => $this->uri), $this->header)); 48 49 }
+4 -6
webroot/rsrc/css/phui/phui-pinboard-view.css
··· 13 13 } 14 14 15 15 .phui-pinboard-item-view { 16 - margin: 0 8px 16px 0; 17 - border: 1px solid #d5d9df; 16 + margin: 0 12px 16px 0; 18 17 background: #ffffff; 19 18 border-radius: 3px; 20 - 19 + border: 1px solid #bfcfda; 20 + border-bottom: 1px solid #95a6c5; 21 21 float: left; 22 22 width: 288px; 23 - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15); 24 23 text-align: left; 25 24 } 26 25 ··· 38 37 .phui-pinboard-item-header { 39 38 padding: 5px 10px; 40 39 display: block; 41 - background: #edf0f4; 42 40 font-weight: bold; 43 41 border-top-left-radius: 3px; 44 42 border-top-right-radius: 3px; 45 - border-bottom: 1px solid #d5d9df; 43 + border-bottom: 1px solid #bfcfda; 46 44 white-space: nowrap; 47 45 overflow: hidden; 48 46 }