mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-11 01:12:41 +01:00
d119b051e8
Summary: This is //extremely// basic but dead simple and should cover us for v1, I think. Let me know what features you need. Test Plan: Used UI example page. Reviewers: allenjohnashton, ddfisher, keebuhm Reviewed By: ddfisher CC: aran, ender Maniphest Tasks: T944 Differential Revision: https://secure.phabricator.com/D2732
24 lines
370 B
CSS
24 lines
370 B
CSS
/**
|
|
* @provides phabricator-notification-css
|
|
*/
|
|
|
|
.jx-notification-container {
|
|
position: fixed;
|
|
|
|
bottom: 24px;
|
|
left: 24px;
|
|
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);
|
|
}
|