From 5ec436d0dd1fd297e59f5d8c75945dccd642aae4 Mon Sep 17 00:00:00 2001 From: afc163 Date: Mon, 14 Mar 2016 14:04:33 +0800 Subject: [PATCH] Make default progress color not primary color --- style/components/progress.less | 2 +- style/themes/default/custom.less | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/style/components/progress.less b/style/components/progress.less index 7634236cb0..fc7531a70a 100644 --- a/style/components/progress.less +++ b/style/components/progress.less @@ -26,7 +26,7 @@ } &-line-bg { border-radius: 100px; - background-color: @primary-color; + background-color: @info-color; transition: all 0.3s linear 0s; position: relative; } diff --git a/style/themes/default/custom.less b/style/themes/default/custom.less index ef1509c8c3..cba20d0978 100644 --- a/style/themes/default/custom.less +++ b/style/themes/default/custom.less @@ -3,6 +3,7 @@ // Color @primary-color : #2db7f5; +@info-color : #2db7f5; @success-color : #87d068; @error-color : #f50; @warning-color : #fa0;