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