mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
0cd5031ada
Summary: Modern mozilla browsers use min-resolution. Test Plan: Regernate sprites, use site in Firefox, see correct header image. Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D13555
36 lines
625 B
CSS
36 lines
625 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),
|
|
only screen and (min-resolution: 1.5dppx) {
|
|
.sprite-menu {
|
|
background-image: url(/rsrc/image/sprite-menu-X2.png);
|
|
background-size: 97px 123px;
|
|
}
|
|
}
|
|
|
|
|
|
.dark-logo {
|
|
background-position: 0px 0px;
|
|
}
|
|
|
|
.dark-eye {
|
|
background-position: 0px -82px;
|
|
}
|
|
|
|
.light-logo {
|
|
background-position: 0px -41px;
|
|
}
|
|
|
|
.light-eye {
|
|
background-position: -41px -82px;
|
|
}
|