1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 09:18:48 +02:00
phorge-phorge/webroot/rsrc/css/aphront/notification.css
epriestley c5e504ff5e Add Z-index to notifications
Summary:
Currently, notifications aren't z-indexed so they can end up underneath some other elements:

{F13144}

Fix this so they float correctly.

Test Plan: {F13166}

Reviewers: jungejason, btrahan

Reviewed By: jungejason

CC: aran

Maniphest Tasks: T1398

Differential Revision: https://secure.phabricator.com/D2834
2012-06-22 10:48:16 -07:00

40 lines
586 B
CSS

/**
* @provides phabricator-notification-css
*/
.jx-notification-container {
position: fixed;
bottom: 24px;
left: 24px;
z-index: 7;
}
.jx-notification {
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);
margin-top: 4px;
}
.jx-notification-alert {
background: #ffffa0;
border: 1px solid #aaaa60;
}
.jx-notification-debug {
background: #ffa0ff;
border: 1px solid #aa60aa;
}