feat(dark-theme): Applies dark theme on inline-dialogs, tooltips, flags and more

This commit is contained in:
yanas
2017-10-06 11:14:45 -05:00
parent d3e8856896
commit e09949be9f
22 changed files with 253 additions and 329 deletions

View File

@@ -1,5 +1,5 @@
import Button from '@atlaskit/button';
import { FieldText } from '@atlaskit/field-text';
import { FieldTextStateless as TextField } from '@atlaskit/field-text';
import PropTypes from 'prop-types';
import React, { Component } from 'react';
import { connect } from 'react-redux';
@@ -106,7 +106,7 @@ class AddPasswordForm extends Component {
onSubmit = { this._onSubmit } >
<div className = 'form-control__container'>
<div className = 'form-control__input-container'>
<FieldText
<TextField
autoFocus = { true }
compact = { true }
id = 'newPasswordInput'
@@ -123,7 +123,6 @@ class AddPasswordForm extends Component {
id = 'addPasswordBtn'
isDisabled = { !this.state.password }
onClick = { this._onSubmit }
shouldFitContainer = { true }
type = 'button'>
{ t('dialog.add') }
</Button>