raised -> contained
This commit is contained in:
parent
afbbb82199
commit
81ad026e9d
|
|
@ -69,7 +69,7 @@ export default class AddDialog extends Component<IProps, IState> {
|
|||
disabled={!submitEnabled}
|
||||
onClick={submitAndClose}
|
||||
color="primary"
|
||||
variant="raised">
|
||||
variant="contained">
|
||||
Create
|
||||
</Button>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -75,7 +75,7 @@ export default class UpdateDialog extends Component<IProps, IState> {
|
|||
disabled={!submitEnabled}
|
||||
onClick={submitAndClose}
|
||||
color="primary"
|
||||
variant="raised">
|
||||
variant="contained">
|
||||
Update
|
||||
</Button>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@ export default class AddDialog extends Component<IProps, {name: string}> {
|
|||
disabled={!submitEnabled}
|
||||
onClick={submitAndClose}
|
||||
color="primary"
|
||||
variant="raised">
|
||||
variant="contained">
|
||||
Create
|
||||
</Button>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@ export default class UpdateDialog extends Component<IProps, IState> {
|
|||
disabled={!submitEnabled}
|
||||
onClick={submitAndClose}
|
||||
color="primary"
|
||||
variant="raised">
|
||||
variant="contained">
|
||||
Update
|
||||
</Button>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@ export default function ConfirmDialog({title, text, fClose, fOnSubmit}: IProps)
|
|||
onClick={submitAndClose}
|
||||
autoFocus
|
||||
color="primary"
|
||||
variant="raised"
|
||||
variant="contained"
|
||||
className="confirm">
|
||||
Yes
|
||||
</Button>
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ const DefaultPage: SFC<IProps> = ({
|
|||
{hideButton ? null : (
|
||||
<Button
|
||||
id={buttonId}
|
||||
variant="raised"
|
||||
variant="contained"
|
||||
color="primary"
|
||||
disabled={buttonDisabled}
|
||||
onClick={fButton}>
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@ class SettingsDialog extends Component<IProps & Stores<'currentUser'>> {
|
|||
disabled={pass.length === 0}
|
||||
onClick={submitAndClose}
|
||||
color="primary"
|
||||
variant="raised">
|
||||
variant="contained">
|
||||
Change
|
||||
</Button>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -97,7 +97,7 @@ export default class AddEditDialog extends Component<IProps, IState> {
|
|||
disabled={!passPresent || !namePresent}
|
||||
onClick={submitAndClose}
|
||||
color="primary"
|
||||
variant="raised">
|
||||
variant="contained">
|
||||
{isEdit ? 'Save' : 'Create'}
|
||||
</Button>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@ class Login extends Component<Stores<'currentUser'>> {
|
|||
/>
|
||||
<Button
|
||||
type="submit"
|
||||
variant="raised"
|
||||
variant="contained"
|
||||
size="large"
|
||||
className="login"
|
||||
color="primary"
|
||||
|
|
|
|||
Loading…
Reference in New Issue