mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
39 lines
844 B
CSS
39 lines
844 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: 47px 69px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.alert-notifications .phabricator-main-menu-alert-icon {
|
||
|
background-position: 0px 0px;
|
||
|
}
|
||
|
|
||
|
.alert-notifications:hover .phabricator-main-menu-alert-icon {
|
||
|
background-position: -15px 0px;
|
||
|
}
|
||
|
|
||
|
.phabricator-main-menu-alert-bubble.alert-unread {
|
||
|
background-position: 0px -15px;
|
||
|
}
|
||
|
|
||
|
.phabricator-main-menu-alert-bubble {
|
||
|
background-position: 0px -42px;
|
||
|
}
|
||
|
|
||
|
.alert-notifications.alert-unread .phabricator-main-menu-alert-icon {
|
||
|
background-position: -27px -42px;
|
||
|
}
|