1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-18 12:52:42 +01:00

[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
This commit is contained in:
Chad Little 2014-05-29 20:48:19 -07:00
parent 0e05f078b0
commit ec4dc50f4e
8 changed files with 19 additions and 5 deletions

View file

@ -7,7 +7,7 @@
return array(
'names' =>
array(
'core.pkg.css' => 'c6ff1a89',
'core.pkg.css' => '75154c20',
'core.pkg.js' => '7db41c19',
'darkconsole.pkg.js' => 'ca8671ce',
'differential.pkg.css' => 'fbf57382',
@ -154,7 +154,7 @@ return array(
'rsrc/css/sprite-gradient.css' => '487b5761',
'rsrc/css/sprite-login.css' => '67ff30b2',
'rsrc/css/sprite-main-header.css' => '92720ee2',
'rsrc/css/sprite-menu.css' => '1605a7fb',
'rsrc/css/sprite-menu.css' => 'd781c13b',
'rsrc/css/sprite-minicons.css' => 'df4f76fe',
'rsrc/css/sprite-payments.css' => 'cc085d44',
'rsrc/css/sprite-projects.css' => '7578fa56',
@ -320,8 +320,8 @@ return array(
'rsrc/image/sprite-login-X2.png' => '5f75d60b',
'rsrc/image/sprite-login.png' => 'efe40ddb',
'rsrc/image/sprite-main-header.png' => '83521873',
'rsrc/image/sprite-menu-X2.png' => '5a3c3459',
'rsrc/image/sprite-menu.png' => '33682c5c',
'rsrc/image/sprite-menu-X2.png' => '911b55b1',
'rsrc/image/sprite-menu.png' => '74958b64',
'rsrc/image/sprite-minicons-X2.png' => '55377e4e',
'rsrc/image/sprite-minicons.png' => '272644ea',
'rsrc/image/sprite-payments.png' => 'd8576309',
@ -804,7 +804,7 @@ return array(
'sprite-gradient-css' => '487b5761',
'sprite-login-css' => '67ff30b2',
'sprite-main-header-css' => '92720ee2',
'sprite-menu-css' => '1605a7fb',
'sprite-menu-css' => 'd781c13b',
'sprite-minicons-css' => 'df4f76fe',
'sprite-payments-css' => 'cc085d44',
'sprite-projects-css' => '7578fa56',

View file

@ -61,6 +61,11 @@
"rule" : ".menu-icon-new-blue",
"hash" : "3cb927000c2bb3a11002377fe5fab9ec"
},
"power" : {
"name" : "power",
"rule" : ".menu-icon-power",
"hash" : "f14a923a0ab7c359426defc561227e31"
},
"search" : {
"name" : "search",
"rule" : ".menu-icon-search",

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View file

@ -165,6 +165,11 @@ final class CeleritySpriteGenerator {
'y' => 28,
'css' => '.menu-icon-settings-sm',
),
'power' => array(
'x' => 28,
'y' => 28,
'css' => '.menu-icon-power',
),
'app' => array(
'x' => 24,
'y' => 24,

View file

@ -63,6 +63,10 @@ only screen and (-webkit-min-device-pixel-ratio: 1.5) {
}
.menu-icon-settings-sm {
background-position: -87px -90px;
}
.menu-icon-power {
background-position: -60px -119px;
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.6 KiB

After

Width:  |  Height:  |  Size: 8.3 KiB