2012-07-30 16:09:14 -07:00
|
|
|
/**
|
|
|
|
* @provides phabricator-notification-menu-css
|
|
|
|
*/
|
|
|
|
|
|
|
|
.phabricator-notification-menu {
|
2014-05-27 15:26:16 -07:00
|
|
|
background: #fff;
|
2012-07-30 16:09:14 -07:00
|
|
|
font-size: 11px;
|
|
|
|
word-wrap: break-word;
|
|
|
|
overflow-y: auto;
|
2014-05-27 15:26:16 -07:00
|
|
|
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.35);
|
|
|
|
border: 1px solid {$blueborder};
|
2013-03-22 16:15:28 -07:00
|
|
|
border-radius: 3px;
|
2012-07-30 16:09:14 -07:00
|
|
|
}
|
|
|
|
|
2014-01-22 20:09:32 -08:00
|
|
|
.phabricator-notification .phabricator-notification-date {
|
|
|
|
margin-left: 8px;
|
|
|
|
color: {$lightgreytext};
|
|
|
|
}
|
|
|
|
|
2013-01-28 17:34:59 -08:00
|
|
|
.phabricator-notification-menu-loading {
|
|
|
|
text-align: center;
|
|
|
|
padding: 10px 0;
|
2013-09-02 08:12:18 -07:00
|
|
|
color: {$lightgreytext};
|
2013-01-28 17:34:59 -08:00
|
|
|
}
|
|
|
|
|
2013-03-22 16:15:28 -07:00
|
|
|
.device-desktop .phabricator-notification-menu,
|
|
|
|
.device-tablet .phabricator-notification-menu {
|
2014-08-13 15:37:13 -07:00
|
|
|
position: absolute;
|
2012-07-30 16:09:14 -07:00
|
|
|
width: 360px;
|
|
|
|
top: 42px;
|
|
|
|
}
|
|
|
|
|
2013-03-22 16:15:28 -07:00
|
|
|
.device-phone .phabricator-notification-menu {
|
2014-05-27 15:26:16 -07:00
|
|
|
border-bottom: 1px solid {$thinblueborder};
|
2013-03-22 16:15:28 -07:00
|
|
|
width: 94%;
|
|
|
|
max-width: 390px;
|
|
|
|
top: 42px !important;
|
|
|
|
left: 3% !important;
|
|
|
|
position: absolute;
|
|
|
|
|
2012-07-30 16:09:14 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.phabricator-notification {
|
2014-05-27 15:26:16 -07:00
|
|
|
padding: 6px 8px;
|
2013-12-03 11:58:10 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
.phabricator-notification-menu .phabricator-notification {
|
2012-12-07 16:26:43 -08:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2013-06-20 13:51:56 -07:00
|
|
|
.device-desktop .phabricator-notification-menu .phabricator-notification:hover {
|
2014-05-27 15:26:16 -07:00
|
|
|
background: {$hoverblue};
|
2012-12-07 16:26:43 -08:00
|
|
|
}
|
|
|
|
|
2014-05-30 21:03:23 -07:00
|
|
|
.device-desktop .phabricator-notification-menu
|
|
|
|
.phabricator-notification-unread.phabricator-notification:hover {
|
|
|
|
background: {$hoverselectedblue};
|
|
|
|
}
|
|
|
|
|
2012-12-07 16:26:43 -08:00
|
|
|
.phabricator-notification + .phabricator-notification {
|
2014-05-27 15:26:16 -07:00
|
|
|
border-top: 1px solid {$hoverborder};
|
2012-07-30 16:09:14 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.no-notifications {
|
2013-09-02 08:12:18 -07:00
|
|
|
color: {$lightgreytext};
|
2012-07-30 16:09:14 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.phabricator-notification-list .phabricator-notification-unread,
|
|
|
|
.phabricator-notification-menu .phabricator-notification-unread {
|
2014-05-27 15:26:16 -07:00
|
|
|
background: {$hoverblue};
|
2012-07-30 16:09:14 -07:00
|
|
|
}
|
|
|
|
|
2012-12-07 16:26:43 -08:00
|
|
|
.phabricator-notification-header {
|
|
|
|
font-weight: bold;
|
2014-05-27 15:26:16 -07:00
|
|
|
padding: 10px 8px;
|
2012-12-07 16:26:43 -08:00
|
|
|
font-size: 12px;
|
2014-05-27 15:26:16 -07:00
|
|
|
border-bottom: 1px solid {$thinblueborder};
|
2012-12-07 16:26:43 -08:00
|
|
|
}
|
|
|
|
|
2014-04-29 10:43:38 -07:00
|
|
|
.phabricator-notification-header a {
|
|
|
|
color: {$darkgreytext};
|
|
|
|
}
|
|
|
|
|
2014-08-14 17:19:01 -07:00
|
|
|
.phabricator-notification-header a:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
2014-04-29 10:43:38 -07:00
|
|
|
.phabricator-notification-header .phabricator-notification-clear-all {
|
|
|
|
color: #18559D;
|
|
|
|
float: right;
|
2014-05-27 15:26:16 -07:00
|
|
|
font-weight: normal;
|
2014-04-29 10:43:38 -07:00
|
|
|
}
|
|
|
|
|
2014-08-14 17:19:01 -07:00
|
|
|
.phabricator-notification-footer {
|
2014-05-27 15:26:16 -07:00
|
|
|
background: {$greybackground};
|
|
|
|
border-top: 1px solid {$thinblueborder};
|
2013-03-22 16:15:28 -07:00
|
|
|
border-bottom-left-radius: 3px;
|
|
|
|
border-bottom-right-radius: 3px;
|
2014-05-27 15:26:16 -07:00
|
|
|
padding: 8px;
|
|
|
|
font-size: 12px;
|
2014-08-14 17:19:01 -07:00
|
|
|
color: {$darkgreytext};
|
|
|
|
}
|
|
|
|
|
|
|
|
.phabricator-notification-footer a {
|
|
|
|
color: {$darkgreytext};
|
|
|
|
}
|
|
|
|
|
|
|
|
.phabricator-notification-footer a:hover {
|
|
|
|
text-decoration: underline;
|
2012-07-30 16:09:14 -07:00
|
|
|
}
|
2014-06-23 16:26:16 -07:00
|
|
|
|
|
|
|
.phabricator-notification-menu .aphlict-connection-status {
|
|
|
|
color: {$lightgreytext};
|
|
|
|
}
|
|
|
|
|
|
|
|
.aphlict-connection-status .aphlict-connection-status-connected {
|
|
|
|
color: {$green};
|
|
|
|
}
|
|
|
|
|
|
|
|
.aphlict-connection-status .aphlict-connection-status-error {
|
|
|
|
color: {$red};
|
|
|
|
}
|