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

Fix Differential DashHeaders

Summary: Adds a basic style to ObjectItemList Headers. Fixes T5465

Test Plan: Added the same Query, tested various layouts

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: epriestley, Korvin

Maniphest Tasks: T5465

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

+20 -5
+4 -4
resources/celerity/map.php
··· 7 7 return array( 8 8 'names' => 9 9 array( 10 - 'core.pkg.css' => 'daedf92a', 10 + 'core.pkg.css' => 'fc4bf764', 11 11 'core.pkg.js' => '8c184823', 12 12 'darkconsole.pkg.js' => 'df001cab', 13 13 'differential.pkg.css' => '4a93db37', ··· 136 136 'rsrc/css/phui/phui-info-panel.css' => '27ea50a1', 137 137 'rsrc/css/phui/phui-list.css' => '43ed2d93', 138 138 'rsrc/css/phui/phui-object-box.css' => 'e9f7e938', 139 - 'rsrc/css/phui/phui-object-item-list-view.css' => '46e12abc', 139 + 'rsrc/css/phui/phui-object-item-list-view.css' => '7ac40b5a', 140 140 'rsrc/css/phui/phui-pinboard-view.css' => '2c8abb19', 141 141 'rsrc/css/phui/phui-property-list-view.css' => '2f7199e8', 142 142 'rsrc/css/phui/phui-remarkup-preview.css' => '19ad512b', ··· 491 491 'rsrc/js/phuix/PHUIXActionListView.js' => 'b5c256b8', 492 492 'rsrc/js/phuix/PHUIXActionView.js' => '6e8cefa4', 493 493 'rsrc/js/phuix/PHUIXDropdownMenu.js' => 'bd4c8dca', 494 - 'rsrc/swf/aphlict.swf' => 'e5a24c72', 494 + 'rsrc/swf/aphlict.swf' => 'f19daffb', 495 495 ), 496 496 'symbols' => 497 497 array( ··· 781 781 'phui-info-panel-css' => '27ea50a1', 782 782 'phui-list-view-css' => '43ed2d93', 783 783 'phui-object-box-css' => 'e9f7e938', 784 - 'phui-object-item-list-view-css' => '46e12abc', 784 + 'phui-object-item-list-view-css' => '7ac40b5a', 785 785 'phui-pinboard-view-css' => '2c8abb19', 786 786 'phui-property-list-view-css' => '2f7199e8', 787 787 'phui-remarkup-preview-css' => '19ad512b',
+16 -1
webroot/rsrc/css/phui/phui-object-item-list-view.css
··· 30 30 31 31 .phui-object-item-list-view .aphront-error-view { 32 32 margin: 4px 0 8px 0; 33 - color: {$bluetext}; 33 + color: {$greytext}; 34 34 } 35 35 36 36 .phui-object-item { ··· 662 662 663 663 .dashboard-panel .phui-object-item-list-view { 664 664 padding: 0; 665 + border-left: 1px solid {$lightblueborder}; 665 666 border-right: 1px solid {$lightblueborder}; 666 667 border-bottom: 1px solid {$blueborder}; 667 668 margin-bottom: -1px; ··· 679 680 border: none; 680 681 border-bottom: 1px solid {$thinblueborder}; 681 682 border-radius: 0; 683 + } 684 + 685 + .dashboard-panel .phui-object-item-list-header { 686 + font-size: 13px; 687 + color: {$bluetext}; 688 + background: {$lightgreybackground}; 689 + border-bottom: 1px solid {$thinblueborder}; 690 + padding: 8px 12px; 691 + -webkit-font-smoothing: antialiased; 692 + } 693 + 694 + .dashboard-panel .phui-object-item-empty .aphront-error-view { 695 + border: none; 696 + border-bottom: 1px solid {$thinblueborder}; 682 697 } 683 698 684 699