Fix progress color

This commit is contained in:
afc163 2016-03-04 17:18:57 +08:00
parent e584a5b8ab
commit 973c13c245
2 changed files with 4 additions and 4 deletions

View File

@ -8,7 +8,7 @@ const prefixCls = 'ant-progress';
const statusColorMap = {
normal: '#2db7f5',
exception: '#ff6600',
exception: '#ff5500',
success: '#87d068'
};
@ -31,7 +31,7 @@ let Line = React.createClass({
strokeWidth: 10,
status: 'normal', // exception active
showInfo: true,
trailColor: '#e9e9e9'
trailColor: '#f3f3f3'
};
},
render() {
@ -115,7 +115,7 @@ let Circle = React.createClass({
percent: 0,
strokeWidth: 6,
status: 'normal', // exception
trailColor: '#f9f9f9',
trailColor: '#f3f3f3',
};
},
render() {

View File

@ -21,7 +21,7 @@
&-line-inner {
display: inline-block;
width: 100%;
background-color: #e9e9e9;
background-color: #f3f3f3;
border-radius: 100px;
}
&-line-bg {