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

Add Workboard UI Color to sidenav, fix fullscreen CSS

Summary: Uses the background color changes to show also on the side nav. Places color on entire body so fullscreen doesn't show other body color.

Test Plan: Review various workboard colors at normal and fullscreen

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

+26 -7
+5 -5
resources/celerity/map.php
··· 7 7 */ 8 8 return array( 9 9 'names' => array( 10 - 'core.pkg.css' => '7fd6b616', 10 + 'core.pkg.css' => '7935f211', 11 11 'core.pkg.js' => 'd7daa6d8', 12 12 'darkconsole.pkg.js' => 'e7393ebb', 13 13 'differential.pkg.css' => '2de124c9', ··· 146 146 'rsrc/css/phui/phui-object-item-list-view.css' => '18b2ce8e', 147 147 'rsrc/css/phui/phui-pager.css' => 'bea33d23', 148 148 'rsrc/css/phui/phui-pinboard-view.css' => '2495140e', 149 - 'rsrc/css/phui/phui-profile-menu.css' => 'f42bedb6', 149 + 'rsrc/css/phui/phui-profile-menu.css' => '7e92a89a', 150 150 'rsrc/css/phui/phui-property-list-view.css' => '27b2849e', 151 151 'rsrc/css/phui/phui-remarkup-preview.css' => '1a8f2591', 152 152 'rsrc/css/phui/phui-segment-bar-view.css' => '46342871', ··· 155 155 'rsrc/css/phui/phui-tag-view.css' => '9d5d4400', 156 156 'rsrc/css/phui/phui-timeline-view.css' => '2efceff8', 157 157 'rsrc/css/phui/phui-two-column-view.css' => 'c75bfc5b', 158 - 'rsrc/css/phui/workboards/phui-workboard-color.css' => '2f068cc8', 158 + 'rsrc/css/phui/workboards/phui-workboard-color.css' => 'ac6fe6a7', 159 159 'rsrc/css/phui/workboards/phui-workboard.css' => 'e6d89647', 160 160 'rsrc/css/phui/workboards/phui-workcard.css' => '3646fb96', 161 161 'rsrc/css/phui/workboards/phui-workpanel.css' => '92197373', ··· 832 832 'phui-object-item-list-view-css' => '18b2ce8e', 833 833 'phui-pager-css' => 'bea33d23', 834 834 'phui-pinboard-view-css' => '2495140e', 835 - 'phui-profile-menu-css' => 'f42bedb6', 835 + 'phui-profile-menu-css' => '7e92a89a', 836 836 'phui-property-list-view-css' => '27b2849e', 837 837 'phui-remarkup-preview-css' => '1a8f2591', 838 838 'phui-segment-bar-view-css' => '46342871', ··· 842 842 'phui-theme-css' => 'ab7b848c', 843 843 'phui-timeline-view-css' => '2efceff8', 844 844 'phui-two-column-view-css' => 'c75bfc5b', 845 - 'phui-workboard-color-css' => '2f068cc8', 845 + 'phui-workboard-color-css' => 'ac6fe6a7', 846 846 'phui-workboard-view-css' => 'e6d89647', 847 847 'phui-workcard-view-css' => '3646fb96', 848 848 'phui-workpanel-view-css' => '92197373',
+1 -1
src/applications/project/controller/PhabricatorProjectBoardViewController.php
··· 456 456 $background_color_class = "phui-workboard-{$background}"; 457 457 458 458 $page->addClass('phui-workboard-color'); 459 - $nav->addClass($background_color_class); 459 + $page->addClass($background_color_class); 460 460 } 461 461 462 462 return $page;
+8 -1
webroot/rsrc/css/phui/phui-profile-menu.css
··· 150 150 } 151 151 152 152 .phui-profile-menu .phabricator-side-menu .phui-profile-menu-error { 153 - color: {$greytext}; 153 + color: rgba({$alphawhite}, 0.5); 154 154 font-size: {$smallerfontsize}; 155 155 padding: 18px 15px; 156 + } 157 + 158 + .phui-profile-menu .phabricator-side-menu .phui-list-item-disabled 159 + .phui-list-item-href, 160 + .phui-profile-menu .phui-list-sidenav .phui-list-item-disabled 161 + .phui-list-item-href { 162 + color: rgba({$alphawhite}, 0.5); 156 163 } 157 164 158 165 .phui-profile-menu .phabricator-side-menu .phui-profile-segment-bar {
+12
webroot/rsrc/css/phui/workboards/phui-workboard-color.css
··· 30 30 background-color: rgba({$alphawhite},.6); 31 31 } 32 32 33 + body.phui-workboard-color .phui-profile-menu .phabricator-side-menu { 34 + background-color: rgba({$alphagrey},.3); 35 + } 36 + 37 + body.phui-workboard-color .phabricator-side-menu .phui-profile-menu-footer-1 { 38 + background-color: transparent; 39 + } 40 + 41 + .phui-workboard-color .phui-profile-menu .phabricator-side-menu { 42 + box-shadow: none; 43 + } 44 + 33 45 .phui-workboard-color-preview { 34 46 width: 50px; 35 47 height: 50px;