mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
e2f0003ff9
Summary: Added in color variables in most used places. Tweaked green to be a bit more serious. Test Plan: Tested Tags, Error View, Timeline, Object Views, and Color Palette. Reviewers: epriestley, btrahan Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D6244
48 lines
761 B
CSS
48 lines
761 B
CSS
/**
|
|
* @provides phabricator-notification-css
|
|
*/
|
|
|
|
.jx-notification-container {
|
|
position: fixed;
|
|
|
|
bottom: 24px;
|
|
left: 24px;
|
|
}
|
|
|
|
.jx-notification {
|
|
width: 240px;
|
|
padding: 8px 16px;
|
|
|
|
font-size: 11px;
|
|
overflow: hidden;
|
|
|
|
background: {$lightsky};
|
|
color: #444444;
|
|
border: 1px solid {$sky};
|
|
|
|
cursor: pointer;
|
|
|
|
border-radius: 3px;
|
|
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
|
|
margin-top: 4px;
|
|
}
|
|
|
|
.jx-notification-alert {
|
|
background: {$lightyellow};
|
|
border: 1px solid {$yellow};
|
|
}
|
|
|
|
.jx-notification-debug {
|
|
background: {$lightindigo};
|
|
border: 1px solid {$indigo};
|
|
}
|
|
|
|
.jx-notification-done {
|
|
background: {$lightgreen};
|
|
border: 1px solid {$green};
|
|
}
|
|
|
|
.jx-notification-error {
|
|
background: {$lightred};
|
|
border: 1px solid {$red};
|
|
}
|