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