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};
|
2013-09-02 22:57:48 +02:00
|
|
|
color: {$darkgreytext};
|
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;
|
2016-02-15 06:29:56 +01:00
|
|
|
box-shadow: 0px 1px 2px rgba({$alphablack}, 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
|
|
|
|
2014-04-28 02:31:11 +02:00
|
|
|
.jx-notification-security {
|
|
|
|
background: {$lightviolet};
|
|
|
|
border: 1px solid {$violet};
|
|
|
|
}
|
|
|
|
|
2016-04-09 00:04:05 +02:00
|
|
|
.jx-notification-read-only {
|
|
|
|
background: {$greybackground};
|
|
|
|
border: 1px solid {$darkgreyborder};
|
|
|
|
}
|
|
|
|
|
2013-06-21 02:38:57 +02:00
|
|
|
.jx-notification-container .phabricator-notification {
|
|
|
|
padding: 0;
|
|
|
|
}
|