Browse Source

upgrade demo primary-color

pull/3824/head
afc163 8 years ago
parent
commit
ca9ed27445
  1. 2
      components/calendar/demo/notice-calendar.md
  2. 2
      components/icon/index.en-US.md
  3. 2
      components/icon/index.zh-CN.md
  4. 2
      components/notification/demo/custom-icon.md
  5. 2
      components/progress/progress.tsx
  6. 2
      components/tag/demo/colorful.md

2
components/calendar/demo/notice-calendar.md

@ -108,7 +108,7 @@ ReactDOM.render(
} }
.event-normal { .event-normal {
color: #2db7f5; color: #108ee9;
} }
.event-error { .event-error {

2
components/icon/index.en-US.md

@ -103,7 +103,7 @@ ul.anticons-list li:after {
content: "Copied!"; content: "Copied!";
text-align: center; text-align: center;
line-height: 110px; line-height: 110px;
color: #2db7f5; color: #108ee9;
transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28); transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
opacity: 0; opacity: 0;
} }

2
components/icon/index.zh-CN.md

@ -104,7 +104,7 @@ ul.anticons-list li:after {
content: "Copied!"; content: "Copied!";
text-align: center; text-align: center;
line-height: 110px; line-height: 110px;
color: #2db7f5; color: #108ee9;
transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28); transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
opacity: 0; opacity: 0;
} }

2
components/notification/demo/custom-icon.md

@ -20,7 +20,7 @@ const openNotification = function () {
notification.open({ notification.open({
message: 'Notification Title', message: 'Notification Title',
description: 'This is the content of the notification. This is the content of the notification. This is the content of the notification.', description: 'This is the content of the notification. This is the content of the notification. This is the content of the notification.',
icon: <Icon type="smile-circle" style={{ color: '#2db7f5' }} />, icon: <Icon type="smile-circle" style={{ color: '#108ee9' }} />,
}); });
}; };

2
components/progress/progress.tsx

@ -5,7 +5,7 @@ import { Circle } from 'rc-progress';
import classNames from 'classnames'; import classNames from 'classnames';
import splitObject from '../_util/splitObject'; import splitObject from '../_util/splitObject';
const statusColorMap = { const statusColorMap = {
normal: '#2db7f5', normal: '#108ee9',
exception: '#ff5500', exception: '#ff5500',
success: '#87d068', success: '#87d068',
}; };

2
components/tag/demo/colorful.md

@ -20,7 +20,7 @@ ReactDOM.render(
<div> <div>
<Tag color="#f50">#f50</Tag> <Tag color="#f50">#f50</Tag>
<Tag color="#87d068">#87d068</Tag> <Tag color="#87d068">#87d068</Tag>
<Tag color="#2db7f5">#2db7f5</Tag> <Tag color="#108ee9">#108ee9</Tag>
</div>, </div>,
mountNode mountNode
); );

Loading…
Cancel
Save