mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
fb361f206c
Summary: This increases the transparent space around the Phabricator logo. The logo itself is the same size. This allows for adding of other logos more easily without needing to alter the space provided. (Like Phacility) Test Plan: Reload page, screenshot logo, pull into Photoshop and verify spacing top and bottom. {F309985} Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: Korvin, epriestley Differential Revision: https://secure.phabricator.com/D11828
27 lines
512 B
CSS
27 lines
512 B
CSS
/**
|
|
* @provides sprite-menu-css
|
|
* @generated
|
|
*/
|
|
|
|
.sprite-menu {
|
|
background-image: url(/rsrc/image/sprite-menu.png);
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
@media
|
|
only screen and (min-device-pixel-ratio: 1.5),
|
|
only screen and (-webkit-min-device-pixel-ratio: 1.5) {
|
|
.sprite-menu {
|
|
background-image: url(/rsrc/image/sprite-menu-X2.png);
|
|
background-size: 97px 82px;
|
|
}
|
|
}
|
|
|
|
|
|
.phabricator-main-menu-logo {
|
|
background-position: 0px 0px;
|
|
}
|
|
|
|
.phabricator-main-menu-eye {
|
|
background-position: 0px -41px;
|
|
}
|