mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
274cbf3cdb
Summary: Ref T8099, hashtag#yolo. Adds back the original gradients plus a 'light' theme. Unclear which should be default, but we can play with it until a decision needs to be made. Test Plan: Change colors a lot, turn on durable column. Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: Korvin, epriestley Maniphest Tasks: T8099 Differential Revision: https://secure.phabricator.com/D13146
35 lines
582 B
CSS
35 lines
582 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 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;
|
|
}
|