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

[Redesign] Misc cleanup

Summary: Ref T8099, random bug fixes in headers, PHUIDocumentView, soften Oswald colors.

Test Plan: browse and test each change.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin, epriestley

Maniphest Tasks: T8099

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

+16 -13
+5 -5
resources/celerity/map.php
··· 7 7 */ 8 8 return array( 9 9 'names' => array( 10 - 'core.pkg.css' => '996cd7ca', 10 + 'core.pkg.css' => 'bd23b77d', 11 11 'core.pkg.js' => '125d168c', 12 12 'darkconsole.pkg.js' => 'e7393ebb', 13 13 'differential.pkg.css' => 'f89b49b6', ··· 134 134 'rsrc/css/phui/phui-fontkit.css' => '0ce97d82', 135 135 'rsrc/css/phui/phui-form-view.css' => 'a0e8f168', 136 136 'rsrc/css/phui/phui-form.css' => 'f535f938', 137 - 'rsrc/css/phui/phui-header-view.css' => '7faae760', 137 + 'rsrc/css/phui/phui-header-view.css' => 'fa61bab0', 138 138 'rsrc/css/phui/phui-icon.css' => '88ba9081', 139 139 'rsrc/css/phui/phui-image-mask.css' => '5a8b09c8', 140 140 'rsrc/css/phui/phui-info-panel.css' => '27ea50a1', 141 141 'rsrc/css/phui/phui-info-view.css' => '33e54618', 142 142 'rsrc/css/phui/phui-list.css' => 'e448b6ba', 143 143 'rsrc/css/phui/phui-object-box.css' => '1ba354f4', 144 - 'rsrc/css/phui/phui-object-item-list-view.css' => '29ded459', 144 + 'rsrc/css/phui/phui-object-item-list-view.css' => '57bd9953', 145 145 'rsrc/css/phui/phui-pager.css' => 'bea33d23', 146 146 'rsrc/css/phui/phui-pinboard-view.css' => '2495140e', 147 147 'rsrc/css/phui/phui-property-list-view.css' => '1baf23eb', ··· 777 777 'phui-fontkit-css' => '0ce97d82', 778 778 'phui-form-css' => 'f535f938', 779 779 'phui-form-view-css' => 'a0e8f168', 780 - 'phui-header-view-css' => '7faae760', 780 + 'phui-header-view-css' => 'fa61bab0', 781 781 'phui-icon-view-css' => '88ba9081', 782 782 'phui-image-mask-css' => '5a8b09c8', 783 783 'phui-info-panel-css' => '27ea50a1', ··· 785 785 'phui-inline-comment-view-css' => 'aa16f165', 786 786 'phui-list-view-css' => 'e448b6ba', 787 787 'phui-object-box-css' => '1ba354f4', 788 - 'phui-object-item-list-view-css' => '29ded459', 788 + 'phui-object-item-list-view-css' => '57bd9953', 789 789 'phui-pager-css' => 'bea33d23', 790 790 'phui-pinboard-view-css' => '2495140e', 791 791 'phui-property-list-view-css' => '1baf23eb',
+3 -1
src/view/phui/PHUIDocumentView.php
··· 146 146 $main_content = $this->renderChildren(); 147 147 } 148 148 149 - $this->header->setSubheader($book); 149 + if ($book) { 150 + $this->header->setSubheader($book); 151 + } 150 152 $content_inner = phutil_tag( 151 153 'div', 152 154 array(
+7 -6
webroot/rsrc/css/phui/phui-header-view.css
··· 72 72 font-size: 18px; 73 73 font-weight: 500; 74 74 line-height: 24px; 75 - color: #000; 76 - } 77 - 78 - .device-phone .phui-header-header { 79 - font-size: 14px; 75 + color: {$darkbluetext}; 80 76 } 81 77 82 78 .phui-object-box .phui-header-tall .phui-header-header, ··· 85 81 } 86 82 87 83 .phui-header-view .phui-header-header a { 88 - color: #000; 84 + color: {$darkbluetext}; 85 + } 86 + 87 + .device-desktop .phui-header-view .phui-header-header a:hover { 88 + text-decoration: none; 89 + color: {$fire}; 89 90 } 90 91 91 92 .phui-header-view .phui-header-action-links {
+1 -1
webroot/rsrc/css/phui/phui-object-item-list-view.css
··· 92 92 } 93 93 94 94 .phui-object-item-objname { 95 - color: {$darkbluetext}; 95 + color: #000; 96 96 cursor: text; 97 97 font-weight: bold; 98 98 }