@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.)
hq.recaptime.dev/wiki/Phorge
phorge
phabricator
1/**
2 * @provides phabricator-notification-css
3 */
4
5.jx-notification-container {
6 position: fixed;
7
8 bottom: 24px;
9 left: 24px;
10}
11
12.jx-notification {
13 width: 240px;
14 padding: 8px 12px;
15
16 font-size: 11px;
17 overflow: hidden;
18
19 background: {$lightsky};
20 color: {$darkgreytext};
21 border: 1px solid {$sky};
22
23 cursor: pointer;
24
25 border-radius: 3px;
26 box-shadow: 0px 1px 2px rgba({$alphablack}, 0.25);
27 margin-top: 4px;
28}
29
30.jx-notification-alert {
31 background: {$lightyellow};
32 border: 1px solid {$yellow};
33}
34
35.jx-notification-debug {
36 background: {$lightindigo};
37 border: 1px solid {$indigo};
38}
39
40.jx-notification-done {
41 background: {$lightgreen};
42 border: 1px solid {$green};
43}
44
45.jx-notification-error {
46 background: {$lightred};
47 border: 1px solid {$red};
48}
49
50.jx-notification-security {
51 background: {$lightviolet};
52 border: 1px solid {$violet};
53}
54
55.jx-notification-read-only {
56 background: {$greybackground};
57 border: 1px solid {$darkgreyborder};
58}
59
60.jx-notification-container .phabricator-notification {
61 padding: 0;
62}