From 88be5444f0d6457238c6f06e972dc74d26a34d3b Mon Sep 17 00:00:00 2001 From: Pierre Bondoerffer Date: Tue, 8 Aug 2017 10:37:37 +0200 Subject: [PATCH] change alertify warn color --- customize.dist/src/less2/include/alertify.less | 6 +++--- customize.dist/src/less2/include/colortheme.less | 3 +++ 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/customize.dist/src/less2/include/alertify.less b/customize.dist/src/less2/include/alertify.less index 1a791bc04..3e9bec46a 100644 --- a/customize.dist/src/less2/include/alertify.less +++ b/customize.dist/src/less2/include/alertify.less @@ -39,14 +39,14 @@ box-shadow: @alertify_box-shadow; &, &.default { // FIXME - background: rgba(0, 0, 0, .8); + background: @colortheme_notification-log; } &.error { font-weight: bold; - background: @colortheme_cp-red; + background: @colortheme_notification-warn; } &.success { - background: rgba(0, 0, 0, .8); + background: @colortheme_notification-log; } } } diff --git a/customize.dist/src/less2/include/colortheme.less b/customize.dist/src/less2/include/colortheme.less index a1e02d9d4..51b9af335 100644 --- a/customize.dist/src/less2/include/colortheme.less +++ b/customize.dist/src/less2/include/colortheme.less @@ -24,6 +24,9 @@ @colortheme_alertify-red: #E55236; @colortheme_alertify-green: #77C825; +@colortheme_notification-log: rgba(0, 0, 0, 0.8); +@colortheme_notification-warn: rgba(205, 37, 50, 0.8); + // Apps @colortheme_pad-bg: #1c4fa0;