File tree Expand file tree Collapse file tree 2 files changed +12
-15
lines changed
src/shared/containers/SubscribeMailChimpTag Expand file tree Collapse file tree 2 files changed +12
-15
lines changed Original file line number Diff line number Diff line change 4
4
import React from 'react' ;
5
5
import PT from 'prop-types' ;
6
6
import { isValidEmail } from 'utils/tc' ;
7
- import { config } from 'topcoder-react-utils' ;
8
7
import { Modal } from 'topcoder-react-ui-kit' ;
9
8
import modalStyle from 'components/NewsletterSignupForMembers/modal.scss' ;
10
9
import defaulTheme from './style.scss' ;
11
10
12
11
/* Holds the base URL of Community App endpoints that proxy HTTP request to
13
12
* mailchimp APIs. */
14
- const PROXY_ENDPOINT = ` ${ config . URL . COMMUNITY_APP } /api/mailchimp` ;
13
+ const PROXY_ENDPOINT = ' /api/mailchimp' ;
15
14
16
15
class SubscribeMailChimpTagContainer extends React . Component {
17
16
constructor ( props ) {
Original file line number Diff line number Diff line change 10
10
font-family : Roboto, sans-serif ;
11
11
font-size : 14px ;
12
12
line-height : 22px ;
13
+ }
13
14
14
- & ::placeholder ,
15
- & ::-moz-placeholder ,
16
- & ::-webkit-input-placeholder ,
17
- & ::-webkit-placeholder {
18
- color : #aaa !important ;
19
- font-family : Roboto, sans-serif !important ;
20
- font-size : 14px !important ;
21
- line-height : 40px !important ;
22
- text-transform : none ;
23
- }
15
+ input ::-webkit-input-placeholder ,
16
+ input ::placeholder {
17
+ color : #aaa !important ;
18
+ font-family : Roboto, sans-serif !important ;
19
+ font-size : 14px !important ;
20
+ line-height : 40px !important ;
21
+ text-transform : none ;
22
+ }
24
23
25
- & :focus {
26
- box-shadow : none !important ;
27
- }
24
+ input :focus {
25
+ box-shadow : none !important ;
28
26
}
29
27
30
28
.button {
You can’t perform that action at this time.
0 commit comments