blob: 3c329b79d6bd6c63e395417d95b376386e0ee96e [file] [log] [blame]
Nils Diewaldab4d3ca2015-04-17 01:48:43 +00001@import "../util";
Nils Diewalda31a5152015-04-17 21:05:23 +00002@import "alertify/alertify-core";
3@import "alertify/alertify-default";
Nils Diewalda944fab2015-04-08 21:02:04 +00004
Akron7e5afce2020-08-25 15:50:19 +02005/**
6 * Alertify styles.
7 */
Nils Diewalda944fab2015-04-08 21:02:04 +00008
9article.alertify-log-warn {
10 background-color: $dark-orange;
Akronc0a2da82018-07-04 15:27:37 +020011 code.src {
12 color: $darkest-orange;
13 }
Nils Diewalda944fab2015-04-08 21:02:04 +000014}
Akronc0a2da82018-07-04 15:27:37 +020015
16article.alertify-log code.src {
17 display: block;
18 color: $dark-red;
19 font-size: 70%;
Akron7e5afce2020-08-25 15:50:19 +020020}
21
22.alertify-log-error {
23 background-color: $alert-red;
Akroncb5c1712021-01-26 18:01:04 +010024}
25
26#notifications {
27 display: none;
28}
29
30// TODO:
31// This differs from alertify messages and should be united
32div.notify {
33 position: relative;
34 margin: .5em auto;
35 display: block;
36 padding: .5em;
37
38 border-radius: $standard-border-radius;
39 max-width: 30em;
40 background-color: $alert-red;
41 color: $nearly-white;
42 &.notify-success {
43 background-color: $ids-green-1
44 }
45 &.notify-warn {
46 background-color: $ids-orange-2
47 }
Akronc0a2da82018-07-04 15:27:37 +020048}