@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] Move to light header by default

Summary: This should default to light, also made the icons on the dark headers more transparent.

Test Plan: Tested light, dark, blue, blindigo, and default.

Reviewers: btrahan, epriestley

Reviewed By: epriestley

Subscribers: epriestley, Korvin

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

authored by

Chad Little and committed by
epriestley
69b30c5d dc53d8a7

+10 -10
+8 -8
resources/celerity/map.php
··· 7 7 */ 8 8 return array( 9 9 'names' => array( 10 - 'core.pkg.css' => '9993fd3a', 10 + 'core.pkg.css' => 'df56364d', 11 11 'core.pkg.js' => '41f5edc5', 12 12 'darkconsole.pkg.js' => 'e7393ebb', 13 13 'differential.pkg.css' => 'fe951924', ··· 33 33 'rsrc/css/aphront/typeahead.css' => '0e403212', 34 34 'rsrc/css/application/almanac/almanac.css' => 'dbb9b3af', 35 35 'rsrc/css/application/auth/auth.css' => '44975d4b', 36 - 'rsrc/css/application/base/main-menu-view.css' => '5e8c1ab7', 36 + 'rsrc/css/application/base/main-menu-view.css' => '44b4a289', 37 37 'rsrc/css/application/base/notification-menu.css' => '713df25a', 38 38 'rsrc/css/application/base/phabricator-application-launch-view.css' => '9a233ed6', 39 39 'rsrc/css/application/base/phui-theme.css' => '1ccdcc84', ··· 46 46 'rsrc/css/application/config/config-welcome.css' => '6abd79be', 47 47 'rsrc/css/application/config/setup-issue.css' => '631c4e92', 48 48 'rsrc/css/application/config/unhandled-exception.css' => '4c96257a', 49 - 'rsrc/css/application/conpherence/durable-column.css' => '09f1eb27', 49 + 'rsrc/css/application/conpherence/durable-column.css' => '1c938382', 50 50 'rsrc/css/application/conpherence/menu.css' => 'f9f1d143', 51 51 'rsrc/css/application/conpherence/message-pane.css' => '02d8d6aa', 52 52 'rsrc/css/application/conpherence/notification.css' => '919974b6', ··· 499 499 'conduit-api-css' => '7bc725c4', 500 500 'config-options-css' => '7fedf08b', 501 501 'config-welcome-css' => '6abd79be', 502 - 'conpherence-durable-column-view' => '09f1eb27', 502 + 'conpherence-durable-column-view' => '1c938382', 503 503 'conpherence-menu-css' => 'f9f1d143', 504 504 'conpherence-message-pane-css' => '02d8d6aa', 505 505 'conpherence-notification-css' => '919974b6', ··· 722 722 'phabricator-hovercard-view-css' => '0d665853', 723 723 'phabricator-keyboard-shortcut' => '1ae869f2', 724 724 'phabricator-keyboard-shortcut-manager' => 'c1700f6f', 725 - 'phabricator-main-menu-view' => '5e8c1ab7', 725 + 'phabricator-main-menu-view' => '44b4a289', 726 726 'phabricator-nav-view-css' => '0ecd30a1', 727 727 'phabricator-notification' => '0c6946e7', 728 728 'phabricator-notification-css' => '9c279160', ··· 1103 1103 'javelin-uri', 1104 1104 'javelin-install', 1105 1105 ), 1106 + '44b4a289' => array( 1107 + 'phui-theme-css', 1108 + ), 1106 1109 '453c5375' => array( 1107 1110 'javelin-behavior', 1108 1111 'javelin-dom', ··· 1263 1266 'javelin-behavior', 1264 1267 'javelin-stratcom', 1265 1268 'javelin-dom', 1266 - ), 1267 - '5e8c1ab7' => array( 1268 - 'phui-theme-css', 1269 1269 ), 1270 1270 '5e9f347c' => array( 1271 1271 'javelin-behavior',
+1 -1
src/applications/celerity/CelerityResourceTransformer.php
··· 209 209 'lightviolet' => '#ecdff1', 210 210 'charcoal' => '#4b4d51', 211 211 'backdrop' => '#dadee7', 212 - 'hoverwhite' => 'rgba(255,255,255,.75)', 212 + 'hoverwhite' => 'rgba(255,255,255,.6)', 213 213 'hovergrey' => '#c5cbcf', 214 214 'hoverblue' => '#eceff5', 215 215 'hoverborder' => '#dfe1e9',
+1 -1
src/applications/config/option/PhabricatorUIConfigOptions.php
··· 47 47 EOJSON; 48 48 49 49 return array( 50 - $this->newOption('ui.header-color', 'enum', 'dark') 50 + $this->newOption('ui.header-color', 'enum', 'light') 51 51 ->setDescription( 52 52 pht('Sets the color of the main header.')) 53 53 ->setEnumOptions($options),