mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
dca2048bab
Summary: Adds notification icons for Conpherence and re-writes the CSS a bit for the new icons and states. I removed the background bubble here and went straight CSS. I also seem to have a JS error and the notification menu doesn't display, but I'm tired and wanted to look at this in Differential. Will update after JS fix. Test Plan: Turned on notification numbers and conpherence numbers, turned them off. Made them big. Checked FF and IE. Reviewers: epriestley, btrahan Reviewed By: btrahan CC: aran, Korvin Maniphest Tasks: T2415 Differential Revision: https://secure.phabricator.com/D4666
59 lines
1.2 KiB
CSS
59 lines
1.2 KiB
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: 140px 88px;
|
|
}
|
|
}
|
|
|
|
|
|
.alert-notifications .phabricator-main-menu-alert-icon {
|
|
background-position: 0px 0px;
|
|
}
|
|
|
|
.alert-notifications:hover .phabricator-main-menu-alert-icon {
|
|
background-position: -15px 0px;
|
|
}
|
|
|
|
.alert-notifications.alert-unread .phabricator-main-menu-alert-icon {
|
|
background-position: -30px 0px;
|
|
}
|
|
|
|
.phabricator-crumb-divider {
|
|
background-position: 0px -56px;
|
|
}
|
|
|
|
.menu-icon-eye {
|
|
background-position: -10px -56px;
|
|
}
|
|
|
|
.menu-icon-app {
|
|
background-position: -35px -56px;
|
|
}
|
|
|
|
.phabricator-main-menu-logo-image {
|
|
background-position: 0px -30px;
|
|
}
|
|
|
|
.alert-notifications .phabricator-main-menu-message-icon {
|
|
background-position: 0px -15px;
|
|
}
|
|
|
|
.alert-notifications:hover .phabricator-main-menu-message-icon {
|
|
background-position: -15px -15px;
|
|
}
|
|
|
|
.alert-notifications.message-unread .phabricator-main-menu-message-icon {
|
|
background-position: -30px -15px;
|
|
}
|