2012-06-14 00:00:24 +02:00
|
|
|
/**
|
|
|
|
* @provides phabricator-notification-css
|
|
|
|
*/
|
|
|
|
|
|
|
|
.jx-notification-container {
|
|
|
|
position: fixed;
|
|
|
|
|
|
|
|
bottom: 24px;
|
|
|
|
left: 24px;
|
2012-06-17 20:35:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.jx-notification {
|
2012-06-14 00:00:24 +02:00
|
|
|
width: 240px;
|
|
|
|
padding: 8px 16px;
|
|
|
|
|
|
|
|
font-size: 11px;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
background: #f3f6ff;
|
|
|
|
color: #444444;
|
|
|
|
border: 1px solid #afbfcf;
|
|
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
border-radius: 3px;
|
|
|
|
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
|
2012-06-17 20:35:36 +02:00
|
|
|
margin-top: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.jx-notification-alert {
|
|
|
|
background: #ffffa0;
|
|
|
|
border: 1px solid #aaaa60;
|
2012-06-14 00:00:24 +02:00
|
|
|
}
|