@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] Add back power icon

Summary: Adds back the power icon

Test Plan: Logged out of local instance, saw icon appear. Click login icon. Logged in. Ate a toast sandwich.

Reviewers: epriestley

Subscribers: epriestley, Korvin

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

+19 -5
+5 -5
resources/celerity/map.php
··· 7 7 return array( 8 8 'names' => 9 9 array( 10 - 'core.pkg.css' => 'c6ff1a89', 10 + 'core.pkg.css' => '75154c20', 11 11 'core.pkg.js' => '7db41c19', 12 12 'darkconsole.pkg.js' => 'ca8671ce', 13 13 'differential.pkg.css' => 'fbf57382', ··· 154 154 'rsrc/css/sprite-gradient.css' => '487b5761', 155 155 'rsrc/css/sprite-login.css' => '67ff30b2', 156 156 'rsrc/css/sprite-main-header.css' => '92720ee2', 157 - 'rsrc/css/sprite-menu.css' => '1605a7fb', 157 + 'rsrc/css/sprite-menu.css' => 'd781c13b', 158 158 'rsrc/css/sprite-minicons.css' => 'df4f76fe', 159 159 'rsrc/css/sprite-payments.css' => 'cc085d44', 160 160 'rsrc/css/sprite-projects.css' => '7578fa56', ··· 320 320 'rsrc/image/sprite-login-X2.png' => '5f75d60b', 321 321 'rsrc/image/sprite-login.png' => 'efe40ddb', 322 322 'rsrc/image/sprite-main-header.png' => '83521873', 323 - 'rsrc/image/sprite-menu-X2.png' => '5a3c3459', 324 - 'rsrc/image/sprite-menu.png' => '33682c5c', 323 + 'rsrc/image/sprite-menu-X2.png' => '911b55b1', 324 + 'rsrc/image/sprite-menu.png' => '74958b64', 325 325 'rsrc/image/sprite-minicons-X2.png' => '55377e4e', 326 326 'rsrc/image/sprite-minicons.png' => '272644ea', 327 327 'rsrc/image/sprite-payments.png' => 'd8576309', ··· 804 804 'sprite-gradient-css' => '487b5761', 805 805 'sprite-login-css' => '67ff30b2', 806 806 'sprite-main-header-css' => '92720ee2', 807 - 'sprite-menu-css' => '1605a7fb', 807 + 'sprite-menu-css' => 'd781c13b', 808 808 'sprite-minicons-css' => 'df4f76fe', 809 809 'sprite-payments-css' => 'cc085d44', 810 810 'sprite-projects-css' => '7578fa56',
+5
resources/sprite/manifest/menu.json
··· 61 61 "rule" : ".menu-icon-new-blue", 62 62 "hash" : "3cb927000c2bb3a11002377fe5fab9ec" 63 63 }, 64 + "power" : { 65 + "name" : "power", 66 + "rule" : ".menu-icon-power", 67 + "hash" : "f14a923a0ab7c359426defc561227e31" 68 + }, 64 69 "search" : { 65 70 "name" : "search", 66 71 "rule" : ".menu-icon-search",
resources/sprite/menu_1x/power.png

This is a binary file and will not be displayed.

resources/sprite/menu_2x/power.png

This is a binary file and will not be displayed.

+5
src/infrastructure/celerity/CeleritySpriteGenerator.php
··· 165 165 'y' => 28, 166 166 'css' => '.menu-icon-settings-sm', 167 167 ), 168 + 'power' => array( 169 + 'x' => 28, 170 + 'y' => 28, 171 + 'css' => '.menu-icon-power', 172 + ), 168 173 'app' => array( 169 174 'x' => 24, 170 175 'y' => 24,
+4
webroot/rsrc/css/sprite-menu.css
··· 63 63 } 64 64 65 65 .menu-icon-settings-sm { 66 + background-position: -87px -90px; 67 + } 68 + 69 + .menu-icon-power { 66 70 background-position: -60px -119px; 67 71 } 68 72
webroot/rsrc/image/sprite-menu-X2.png

This is a binary file and will not be displayed.

webroot/rsrc/image/sprite-menu.png

This is a binary file and will not be displayed.