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;
|
|
|
|
|
2013-06-20 05:25:41 +02:00
|
|
|
background: {$lightsky};
|
2012-06-14 00:00:24 +02:00
|
|
|
color: #444444;
|
2013-06-20 05:25:41 +02:00
|
|
|
border: 1px solid {$sky};
|
2012-06-14 00:00:24 +02:00
|
|
|
|
|
|
|
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 {
|
2013-06-20 05:25:41 +02:00
|
|
|
background: {$lightyellow};
|
|
|
|
border: 1px solid {$yellow};
|
2012-06-14 00:00:24 +02:00
|
|
|
}
|
2012-06-20 22:20:47 +02:00
|
|
|
|
|
|
|
.jx-notification-debug {
|
2013-06-20 05:25:41 +02:00
|
|
|
background: {$lightindigo};
|
|
|
|
border: 1px solid {$indigo};
|
2012-06-20 22:20:47 +02:00
|
|
|
}
|
2012-10-09 00:23:05 +02:00
|
|
|
|
|
|
|
.jx-notification-done {
|
2013-06-20 05:25:41 +02:00
|
|
|
background: {$lightgreen};
|
|
|
|
border: 1px solid {$green};
|
2012-10-09 00:23:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.jx-notification-error {
|
2013-06-20 05:25:41 +02:00
|
|
|
background: {$lightred};
|
|
|
|
border: 1px solid {$red};
|
2012-10-09 00:23:05 +02:00
|
|
|
}
|
2013-06-21 02:38:57 +02:00
|
|
|
|
|
|
|
.jx-notification-container .phabricator-notification {
|
|
|
|
padding: 0;
|
|
|
|
}
|