change alertify warn color

This commit is contained in:
Pierre Bondoerffer 2017-08-08 10:37:37 +02:00
parent ba9696ba33
commit 88be5444f0
No known key found for this signature in database
GPG Key ID: C0C7C0C5063F2236
2 changed files with 6 additions and 3 deletions

View File

@ -39,14 +39,14 @@
box-shadow: @alertify_box-shadow; box-shadow: @alertify_box-shadow;
&, &.default { &, &.default {
// FIXME // FIXME
background: rgba(0, 0, 0, .8); background: @colortheme_notification-log;
} }
&.error { &.error {
font-weight: bold; font-weight: bold;
background: @colortheme_cp-red; background: @colortheme_notification-warn;
} }
&.success { &.success {
background: rgba(0, 0, 0, .8); background: @colortheme_notification-log;
} }
} }
} }

View File

@ -24,6 +24,9 @@
@colortheme_alertify-red: #E55236; @colortheme_alertify-red: #E55236;
@colortheme_alertify-green: #77C825; @colortheme_alertify-green: #77C825;
@colortheme_notification-log: rgba(0, 0, 0, 0.8);
@colortheme_notification-warn: rgba(205, 37, 50, 0.8);
// Apps // Apps
@colortheme_pad-bg: #1c4fa0; @colortheme_pad-bg: #1c4fa0;