@capillarytech/creatives-library 2.0.82 → 2.0.83
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/CapTagList/index.js +24 -21
- package/components/CardGrid/index.js +10 -16
- package/components/Ckeditor/index.js +1 -2
- package/components/CustomPopOver/index.js +1 -1
- package/components/EmailPreview/index.js +2 -3
- package/components/FormBuilder/_formBuilder.scss +15 -8
- package/components/FormBuilder/index.js +194 -260
- package/components/Header/index.js +1 -4
- package/components/PreviewSideBar/_previewsidebar.scss +1 -1
- package/components/PreviewSideBar/index.js +5 -3
- package/components/TemplatePreview/WechatRichmediaTemplatePreview/index.js +3 -2
- package/components/TemplatePreview/_templatePreview.scss +1 -1
- package/components/TemplatePreview/index.js +47 -47
- package/components/TemplatePreview/messages.js +1 -9
- package/containers/Assets/Gallery/index.js +1 -1
- package/containers/Email/index.js +1 -1
- package/containers/Login/components/LoginForm/index.js +1 -1
- package/containers/Templates/index.js +1 -1
- package/containers/WeChat/RichmediaTemplates/Create/index.js +1 -1
- package/package.json +2 -1
- package/v2Components/BreadCrumbs/index.js +65 -0
- package/v2Components/BreadCrumbs/messages.js +13 -0
- package/v2Components/BreadCrumbs/tests/index.test.js +10 -0
- package/v2Components/CallTaskPreview/_callTaskPreview.scss +17 -0
- package/v2Components/CallTaskPreview/images/Footer.png +0 -0
- package/v2Components/CallTaskPreview/images/Header.png +0 -0
- package/v2Components/CallTaskPreview/index.js +37 -0
- package/v2Components/CallTaskPreview/messages.js +13 -0
- package/v2Components/CallTaskPreview/tests/index.test.js +15 -0
- package/v2Components/CapTagList/index.js +232 -0
- package/v2Components/CapTagList/messages.js +25 -0
- package/v2Components/CapTagList/tests/index.test.js +10 -0
- package/v2Components/Card/_customCard.scss +27 -0
- package/v2Components/Card/index.js +78 -0
- package/{containers/WeChat → v2Components/Card}/tests/index.test.js +2 -2
- package/v2Components/CardGrid/index.js +77 -0
- package/v2Components/CardGrid/tests/index.test.js +10 -0
- package/v2Components/Ckeditor/index.js +234 -0
- package/v2Components/Ckeditor/messages.js +13 -0
- package/v2Components/Ckeditor/tests/index.test.js +10 -0
- package/v2Components/CmsTemplatesComponent/index.js +33 -0
- package/v2Components/CmsTemplatesComponent/messages.js +17 -0
- package/v2Components/CmsTemplatesComponent/tests/index.test.js +10 -0
- package/v2Components/Component/index.js +29 -0
- package/v2Components/Component/tests/index.test.js +10 -0
- package/v2Components/CustomPopOver/index.js +82 -0
- package/v2Components/CustomPopOver/messages.js +13 -0
- package/v2Components/CustomPopOver/tests/index.test.js +10 -0
- package/v2Components/DateFilter/index.js +349 -0
- package/v2Components/DateFilter/messages.js +17 -0
- package/v2Components/DateFilter/tests/index.test.js +15 -0
- package/v2Components/DateRange/index.js +113 -0
- package/v2Components/DateRange/messages.js +13 -0
- package/v2Components/DateRange/tests/index.test.js +10 -0
- package/v2Components/Edmeditor/index.js +65 -0
- package/v2Components/Edmeditor/messages.js +13 -0
- package/v2Components/Edmeditor/tests/index.test.js +10 -0
- package/v2Components/EmailMobilePreview/index.js +129 -0
- package/v2Components/EmailMobilePreview/index.scss +55 -0
- package/v2Components/EmailPreview/_emailPreview.scss +119 -0
- package/v2Components/EmailPreview/index.js +106 -0
- package/v2Components/EmailPreview/messages.js +17 -0
- package/v2Components/EmailPreview/tests/index.test.js +10 -0
- package/v2Components/EmailPreviewV2/_emailPreviewV2.scss +69 -0
- package/v2Components/EmailPreviewV2/index.js +132 -0
- package/v2Components/EmailPreviewV2/messages.js +41 -0
- package/v2Components/EmailPreviewV2/tests/index.test.js +10 -0
- package/v2Components/Footer/index.js +27 -0
- package/v2Components/Footer/messages.js +13 -0
- package/v2Components/Footer/tests/index.test.js +10 -0
- package/v2Components/FormBuilder/_formBuilder.scss +78 -0
- package/v2Components/FormBuilder/index.js +3309 -0
- package/v2Components/FormBuilder/messages.js +13 -0
- package/v2Components/FormBuilder/tests/index.test.js +10 -0
- package/v2Components/Header/index.js +46 -0
- package/v2Components/Header/messages.js +25 -0
- package/v2Components/Header/tests/index.test.js +10 -0
- package/v2Components/ImagePreview/_imagePreview.scss +63 -0
- package/v2Components/ImagePreview/index.js +52 -0
- package/v2Components/ImagePreview/messages.js +13 -0
- package/v2Components/ImagePreview/tests/index.test.js +10 -0
- package/v2Components/MobilePushPreviewV2/index.js +120 -0
- package/v2Components/MobilePushPreviewV2/messages.js +13 -0
- package/v2Components/MobilePushPreviewV2/tests/index.test.js +10 -0
- package/v2Components/NewCallTask/_newCallTask.scss +9 -0
- package/v2Components/NewCallTask/index.js +152 -0
- package/v2Components/NewCallTask/messages.js +29 -0
- package/v2Components/NewCallTask/tests/index.test.js +10 -0
- package/v2Components/PageHeader/_pageHeader.scss +22 -0
- package/v2Components/PageHeader/index.js +37 -0
- package/v2Components/PageHeader/messages.js +13 -0
- package/v2Components/PageHeader/tests/index.test.js +10 -0
- package/v2Components/Pagination/_pagination.scss +5 -0
- package/v2Components/Pagination/index.js +49 -0
- package/v2Components/Pagination/tests/index.test.js +10 -0
- package/v2Components/PreviewSideBar/_previewsidebar.scss +28 -0
- package/v2Components/PreviewSideBar/index.js +150 -0
- package/v2Components/PreviewSideBar/messages.js +33 -0
- package/v2Components/PreviewSideBar/tests/index.test.js +10 -0
- package/v2Components/Sidebar/_sidebar.scss +115 -0
- package/v2Components/Sidebar/index.js +208 -0
- package/v2Components/Sidebar/messages.js +21 -0
- package/v2Components/Sidebar/tests/index.test.js +10 -0
- package/v2Components/SlideBox/_slideBox.scss +63 -0
- package/v2Components/SlideBox/index.js +48 -0
- package/v2Components/SlideBox/tests/index.test.js +103 -0
- package/v2Components/SmsEditor/index.js +55 -0
- package/v2Components/SmsEditor/tests/index.test.js +10 -0
- package/v2Components/SmsTest/index.js +115 -0
- package/v2Components/SmsTest/messages.js +13 -0
- package/v2Components/SmsTest/tests/index.test.js +10 -0
- package/v2Components/TemplatePreview/WechatRichmediaTemplatePreview/_wechatRichmediaTemplatePrev.scss +42 -0
- package/v2Components/TemplatePreview/WechatRichmediaTemplatePreview/index.js +139 -0
- package/v2Components/TemplatePreview/WechatRichmediaTemplatePreview/messages.js +21 -0
- package/v2Components/TemplatePreview/WechatRichmediaTemplatePreview/tests/index.test.js +10 -0
- package/v2Components/TemplatePreview/_templatePreview.scss +352 -0
- package/v2Components/TemplatePreview/assets/images/WECHAT_5x.png +0 -0
- package/v2Components/TemplatePreview/assets/images/androidPushMessage.svg +45 -0
- package/v2Components/TemplatePreview/assets/images/iPhonePushMessage.svg +135 -0
- package/v2Components/TemplatePreview/assets/images/mobile.svg +24 -0
- package/v2Components/TemplatePreview/assets/images/sms-body.png +0 -0
- package/v2Components/TemplatePreview/assets/images/sms-icon.png +0 -0
- package/v2Components/TemplatePreview/assets/images/sms_mobile.png +0 -0
- package/v2Components/TemplatePreview/assets/images/user-icon.svg +19 -0
- package/v2Components/TemplatePreview/assets/images/wechat-mobile.svg +78 -0
- package/v2Components/TemplatePreview/index.js +175 -0
- package/v2Components/TemplatePreview/messages.js +37 -0
- package/v2Components/TemplatePreview/tests/index.test.js +10 -0
- package/v2Components/Toastr/index.js +60 -0
- package/v2Components/Toastr/messages.js +13 -0
- package/v2Components/Toastr/tests/index.test.js +10 -0
- package/v2Components/ToastrMessage/index.js +110 -0
- package/v2Components/ToastrMessage/messages.js +13 -0
- package/v2Components/ToastrMessage/tests/index.test.js +10 -0
- package/v2Components/TopBar/_topbar.scss +46 -0
- package/v2Components/TopBar/assets/images/capillary_logo.png +0 -0
- package/v2Components/TopBar/index.js +113 -0
- package/v2Components/TopBar/messages.js +29 -0
- package/v2Components/TopBar/tests/index.test.js +10 -0
- package/v2Containers/Assets/Gallery/index.js +1 -1
- package/v2Containers/CallTask/index.js +1 -1
- package/v2Containers/Cap/index.js +2 -2
- package/v2Containers/CreativesContainer/SlideBoxContent.js +3 -3
- package/v2Containers/CreativesContainer/index.js +1 -0
- package/v2Containers/Dashboard/index.js +2 -2
- package/v2Containers/Ebill/index.js +2 -2
- package/v2Containers/Email/index.js +4 -4
- package/v2Containers/EmailWrapper/index.js +1 -1
- package/v2Containers/Line/Create/index.js +1 -1
- package/v2Containers/Line/Edit/index.js +1 -1
- package/v2Containers/Login/index.js +1 -1
- package/v2Containers/MobilePush/Create/index.js +1 -1
- package/v2Containers/MobilePush/Edit/index.js +1 -1
- package/v2Containers/Sms/Create/index.js +1 -1
- package/v2Containers/Sms/Edit/index.js +1 -1
- package/v2Containers/TagList/index.js +1 -1
- package/v2Containers/Templates/index.js +4 -4
- package/v2Containers/TestPage/index.js +1 -1
- package/v2Containers/WeChat/MapTemplates/index.js +3 -3
- package/v2Containers/WeChat/RichmediaTemplates/Create/index.js +3 -3
- package/containers/WeChat/_wechat.scss +0 -8
- package/containers/WeChat/actions.js +0 -46
- package/containers/WeChat/constants.js +0 -28
- package/containers/WeChat/index.js +0 -1617
- package/containers/WeChat/messages.js +0 -73
- package/containers/WeChat/reducer.js +0 -74
- package/containers/WeChat/sagas.js +0 -86
- package/containers/WeChat/selectors.js +0 -25
- package/containers/WeChat/tests/actions.test.js +0 -18
- package/containers/WeChat/tests/reducer.test.js +0 -9
- package/containers/WeChat/tests/sagas.test.js +0 -15
- package/containers/WeChat/tests/selectors.test.js +0 -10
|
@@ -8,14 +8,15 @@ import PropTypes from 'prop-types';
|
|
|
8
8
|
|
|
9
9
|
import React from 'react';
|
|
10
10
|
// import styled from 'styled-components';
|
|
11
|
-
import {
|
|
12
|
-
|
|
11
|
+
import { Tree, Input, Spin, Modal } from 'antd';
|
|
13
12
|
import _ from 'lodash';
|
|
13
|
+
// import { CapInput } from '@capillarytech/cap-react-ui-library/basic/input';
|
|
14
14
|
import { injectIntl, intlShape } from 'react-intl';
|
|
15
|
+
import { CapButton, CapPopover, CapSelect, CapInput } from '@capillarytech/cap-react-ui-library';
|
|
15
16
|
import messages from './messages';
|
|
17
|
+
const Search = Input.Search;
|
|
18
|
+
const TreeNode = Tree.TreeNode;
|
|
16
19
|
|
|
17
|
-
const {Search} = CapInput;
|
|
18
|
-
const {CapTreeNode} = CapTree;
|
|
19
20
|
class CapTagList extends React.Component { // eslint-disable-line react/prefer-stateless-function
|
|
20
21
|
|
|
21
22
|
constructor(props) {
|
|
@@ -65,11 +66,13 @@ class CapTagList extends React.Component { // eslint-disable-line react/prefer-s
|
|
|
65
66
|
return list;
|
|
66
67
|
}
|
|
67
68
|
|
|
68
|
-
handleOnChange = (data) => {
|
|
69
|
+
handleOnChange = (data, e) => {
|
|
70
|
+
console.log('module data', data, e);
|
|
69
71
|
this.props.onContextChange(data);
|
|
70
72
|
};
|
|
71
73
|
|
|
72
|
-
handleDynamicDateChange = (data) => {
|
|
74
|
+
handleDynamicDateChange = (data, e) => {
|
|
75
|
+
console.log('data.target', data.target.value, e);
|
|
73
76
|
this.setState({dynamicDateValue: data.target.value});
|
|
74
77
|
};
|
|
75
78
|
|
|
@@ -79,8 +82,8 @@ class CapTagList extends React.Component { // eslint-disable-line react/prefer-s
|
|
|
79
82
|
tagValue = tagValue.replace("(N)", `${days}`);
|
|
80
83
|
const resultArray = [];
|
|
81
84
|
resultArray.push(tagValue);
|
|
82
|
-
this.setState({showModal: false, dynamicDateValue: ''});
|
|
83
85
|
this.props.onSelect(resultArray);
|
|
86
|
+
this.setState({showModal: false, dynamicDateValue: ''});
|
|
84
87
|
};
|
|
85
88
|
|
|
86
89
|
handleCancel = () => {
|
|
@@ -124,6 +127,7 @@ class CapTagList extends React.Component { // eslint-disable-line react/prefer-s
|
|
|
124
127
|
this.setState({expandedKeys, autoExpandParent: false});
|
|
125
128
|
};
|
|
126
129
|
togglePopoverVisibility = (visible) => {
|
|
130
|
+
console.log('popover ');
|
|
127
131
|
this.setState({visible});
|
|
128
132
|
};
|
|
129
133
|
|
|
@@ -132,6 +136,7 @@ class CapTagList extends React.Component { // eslint-disable-line react/prefer-s
|
|
|
132
136
|
};
|
|
133
137
|
|
|
134
138
|
renderTags(tags, searchString) {
|
|
139
|
+
console.log('final tags list', tags);
|
|
135
140
|
const list = [];
|
|
136
141
|
_.forEach(tags, (val, key) => {
|
|
137
142
|
let supportedTagsString = '';
|
|
@@ -139,15 +144,16 @@ class CapTagList extends React.Component { // eslint-disable-line react/prefer-s
|
|
|
139
144
|
supportedTagsString += `${supportedTag} ,`;
|
|
140
145
|
});
|
|
141
146
|
supportedTagsString = supportedTagsString.replace(/,\s*$/, "");
|
|
147
|
+
console.log('supportedTagsString', supportedTagsString);
|
|
142
148
|
if (_.has(val, 'subtags')) {
|
|
143
149
|
const temp = this.renderTags(val.subtags);
|
|
144
150
|
list.push((
|
|
145
|
-
<
|
|
151
|
+
<TreeNode title={val.name} key={key}>
|
|
146
152
|
{temp}
|
|
147
|
-
</
|
|
153
|
+
</TreeNode>
|
|
148
154
|
));
|
|
149
155
|
} else if (searchString === '' || !searchString || val.name.toLowerCase().indexOf(searchString.toLowerCase()) !== -1) {
|
|
150
|
-
const tempNode = (<
|
|
156
|
+
const tempNode = (<TreeNode title={val.name} isLeaf key={key}></TreeNode>);
|
|
151
157
|
list.push(tempNode);
|
|
152
158
|
}
|
|
153
159
|
});
|
|
@@ -160,17 +166,14 @@ class CapTagList extends React.Component { // eslint-disable-line react/prefer-s
|
|
|
160
166
|
{
|
|
161
167
|
value: "All",
|
|
162
168
|
label: "All",
|
|
163
|
-
key: 'all',
|
|
164
169
|
},
|
|
165
170
|
{
|
|
166
171
|
value: "Outbound",
|
|
167
172
|
label: "Outbound",
|
|
168
|
-
key: 'outbound',
|
|
169
173
|
},
|
|
170
174
|
{
|
|
171
175
|
value: "Loyalty",
|
|
172
176
|
label: "Loyalty",
|
|
173
|
-
key: 'loyalty',
|
|
174
177
|
},
|
|
175
178
|
];
|
|
176
179
|
return (
|
|
@@ -179,12 +182,12 @@ class CapTagList extends React.Component { // eslint-disable-line react/prefer-s
|
|
|
179
182
|
visible={this.state.visible}
|
|
180
183
|
onVisibleChange={this.togglePopoverVisibility}
|
|
181
184
|
content={<div>
|
|
182
|
-
<
|
|
185
|
+
<Spin tip="Getting tags..." spinning={this.props.loading}>
|
|
183
186
|
<Search style={{ marginBottom: 8, width: '250px'}} placeholder="Search" onChange={this.onChange} />
|
|
184
187
|
{this.props.moduleFilterEnabled ? <CapSelect getPopupContainer={(triggerNode) => triggerNode.parentNode} style={{width: '250px', marginBottom: '16px', minWidth: 'initial', display: 'inherit'}} onChange={this.props.onContextChange} defaultValue="All" options={options}>
|
|
185
188
|
</CapSelect> : ''}
|
|
186
|
-
<
|
|
187
|
-
styling={{height: '350px', overflow: 'auto'}}
|
|
189
|
+
<Tree
|
|
190
|
+
styling={{'height': '350px', 'overflow': 'auto'}}
|
|
188
191
|
onSelect={this.handleOnSelect}
|
|
189
192
|
selectedKeys={this.state.tagValue}
|
|
190
193
|
expandedKeys={this.state.expandedKeys}
|
|
@@ -192,14 +195,14 @@ class CapTagList extends React.Component { // eslint-disable-line react/prefer-s
|
|
|
192
195
|
onExpand={this.onExpand}
|
|
193
196
|
>
|
|
194
197
|
{this.renderTags(tg, this.state.searchValue)}
|
|
195
|
-
</
|
|
196
|
-
</
|
|
198
|
+
</Tree>
|
|
199
|
+
</Spin>
|
|
197
200
|
</div>}
|
|
198
201
|
trigger="click"
|
|
199
202
|
placement="bottomRight">
|
|
200
|
-
<CapButton
|
|
203
|
+
<CapButton icon="plus-circle-o" type="secondary">{this.props.label !== '' ? this.props.label : ''}</CapButton>
|
|
201
204
|
</CapPopover>
|
|
202
|
-
<
|
|
205
|
+
<Modal
|
|
203
206
|
visible={this.state.showModal}
|
|
204
207
|
title={this.props.intl.formatMessage(messages["Dynamic Days before Expiry"])}
|
|
205
208
|
onOk={this.handleOk}
|
|
@@ -213,7 +216,7 @@ class CapTagList extends React.Component { // eslint-disable-line react/prefer-s
|
|
|
213
216
|
>
|
|
214
217
|
<p>{this.props.intl.formatMessage(messages.numberOfDaysBeforeExpiry)}</p>
|
|
215
218
|
<CapInput onChange={this.handleDynamicDateChange} value={this.state.dynamicDateValue}></CapInput>
|
|
216
|
-
</
|
|
219
|
+
</Modal>
|
|
217
220
|
</div>
|
|
218
221
|
);
|
|
219
222
|
}
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
import PropTypes from 'prop-types';
|
|
8
8
|
|
|
9
9
|
import React from 'react';
|
|
10
|
-
import {
|
|
10
|
+
import { Row, Col } from 'antd';
|
|
11
11
|
import CustomCard from '../Card';
|
|
12
12
|
|
|
13
13
|
class CardGrid extends React.Component { // eslint-disable-line react/prefer-stateless-function
|
|
@@ -37,18 +37,15 @@ class CardGrid extends React.Component { // eslint-disable-line react/prefer-sta
|
|
|
37
37
|
return (
|
|
38
38
|
<div className={this.props.className}>
|
|
39
39
|
<div style={{ marginBottom: '16px' }}>{this.props.filterContent}</div>
|
|
40
|
-
<
|
|
41
|
-
<
|
|
42
|
-
|
|
43
|
-
{ this.props.
|
|
44
|
-
<
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
</div>
|
|
50
|
-
</CapSpin>
|
|
51
|
-
|
|
40
|
+
<div className={this.props.enablePagination ? 'pagination-container' : ''}>
|
|
41
|
+
<Row gutter={this.props.gutterSize}>
|
|
42
|
+
{ this.props.listItem.length > 0 ? this.props.listItem.map( (item) => (
|
|
43
|
+
<Col style={{ width: `${100 / this.props.colNumber}%`, paddingBottom: '16px'}} key={item.id} span={parseInt(24 / this.props.colNumber, 10)}>
|
|
44
|
+
<CustomCard id={item.id} onHover={this.handleOnItemHover} onClick={this.handleOnItemClick} content={item.content} footer={item.footer} height={item.footer ? "312px" : "258px"}></CustomCard>
|
|
45
|
+
</Col>
|
|
46
|
+
)) : ''}
|
|
47
|
+
</Row>
|
|
48
|
+
</div>
|
|
52
49
|
</div>
|
|
53
50
|
);
|
|
54
51
|
}
|
|
@@ -63,15 +60,12 @@ CardGrid.propTypes = {
|
|
|
63
60
|
onItemClick: PropTypes.func,
|
|
64
61
|
className: PropTypes.string,
|
|
65
62
|
enablePagination: PropTypes.bool,
|
|
66
|
-
isLoading: PropTypes.bool,
|
|
67
|
-
loadingTip: PropTypes.string,
|
|
68
63
|
};
|
|
69
64
|
|
|
70
65
|
CardGrid.defaultProps = {
|
|
71
66
|
gutterSize: 16,
|
|
72
67
|
colNumber: 4,
|
|
73
68
|
className: '',
|
|
74
|
-
isLoading: false,
|
|
75
69
|
};
|
|
76
70
|
|
|
77
71
|
export default CardGrid;
|
|
@@ -163,8 +163,7 @@ class Ckeditor extends React.Component { // eslint-disable-line react/prefer-sta
|
|
|
163
163
|
_.forEach(this.props.events, (event, index) => {
|
|
164
164
|
this.editorInstance.on(index, event);
|
|
165
165
|
});
|
|
166
|
-
|
|
167
|
-
if (channel && channel.toLowerCase() === 'wechat') {
|
|
166
|
+
if (this.props.channel.toLowerCase() === 'wechat') {
|
|
168
167
|
this.editorInstance.on('blur', this.onFocusOut);
|
|
169
168
|
_.forEach(this.props.events, (event, index) => {
|
|
170
169
|
this.editorInstance.on(index, event);
|
|
@@ -8,7 +8,7 @@ import PropTypes from 'prop-types';
|
|
|
8
8
|
|
|
9
9
|
import React from 'react';
|
|
10
10
|
// import styled from 'styled-components';
|
|
11
|
-
import {CapPopover} from '@capillarytech/cap-ui-library';
|
|
11
|
+
import {CapPopover} from '@capillarytech/cap-react-ui-library';
|
|
12
12
|
// import { FormattedMessage } from 'react-intl';
|
|
13
13
|
// import messages from './messages';
|
|
14
14
|
import _ from "lodash";
|
|
@@ -11,10 +11,9 @@ import { FormattedMessage } from 'react-intl';
|
|
|
11
11
|
import moment from "moment";
|
|
12
12
|
import messages from "./messages";
|
|
13
13
|
import './_emailPreview.scss';
|
|
14
|
-
|
|
15
|
-
|
|
14
|
+
const tabletBody = require('./assets/images/iPad.svg');
|
|
15
|
+
const mobileBody = require('./assets/images/mobile.png');
|
|
16
16
|
|
|
17
|
-
// this component will be deprecated after replacing with the v2 component.
|
|
18
17
|
const deviceAspectRatio = {
|
|
19
18
|
desktop: {
|
|
20
19
|
height: "500",
|
|
@@ -1,18 +1,25 @@
|
|
|
1
|
-
|
|
1
|
+
.ant-tabs-nav{
|
|
2
|
+
text-align: center;
|
|
3
|
+
color: #333333;
|
|
4
|
+
line-height: 24px;
|
|
5
|
+
font-size: 16px;
|
|
6
|
+
font-family: open-sans, sans-serif;
|
|
7
|
+
font-style: normal;
|
|
8
|
+
font-weight: 600;
|
|
9
|
+
}
|
|
2
10
|
|
|
3
11
|
.form-tab-header{
|
|
4
12
|
display: flex;
|
|
5
13
|
align-items: center;
|
|
14
|
+
font-family: open-sans, sans-serif !important;
|
|
6
15
|
font-style: normal;
|
|
7
16
|
font-weight: 600;
|
|
8
17
|
}
|
|
9
18
|
|
|
10
|
-
.
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
}
|
|
15
|
-
|
|
19
|
+
.ant-tabs-tab{
|
|
20
|
+
// border: 1px solid #1D5B96;
|
|
21
|
+
// border-bottom: 2px solid #1D5B96;
|
|
22
|
+
padding: 0 16px 0 8px !important;
|
|
16
23
|
}
|
|
17
24
|
|
|
18
25
|
.textarea-error-message {
|
|
@@ -64,7 +71,7 @@
|
|
|
64
71
|
display: inline-block;
|
|
65
72
|
font-size: 16px;
|
|
66
73
|
margin: 4px;
|
|
67
|
-
|
|
74
|
+
font-family: Open-Sans;
|
|
68
75
|
text-align: center;
|
|
69
76
|
width: 24px;
|
|
70
77
|
height: 24px;
|