Merge pull request #345 from matrix-org/wmwragg/modal-restyle

Wmwragg/modal restyle
pull/21833/head
Matthew Hodgson 2016-07-15 14:05:22 +01:00 committed by GitHub
commit ca5987bf6c
6 changed files with 6 additions and 6 deletions

View File

@ -59,7 +59,7 @@ module.exports = React.createClass({
{this.props.description} {this.props.description}
</div> </div>
<div className="mx_Dialog_buttons"> <div className="mx_Dialog_buttons">
<button onClick={this.props.onFinished} autoFocus={this.props.focus}> <button className="mx_Dialog_primary" onClick={this.props.onFinished} autoFocus={this.props.focus}>
{this.props.button} {this.props.button}
</button> </button>
</div> </div>

View File

@ -46,7 +46,7 @@ module.exports = React.createClass({
Sign out? Sign out?
</div> </div>
<div className="mx_Dialog_buttons" onKeyDown={ this.onKeyDown }> <div className="mx_Dialog_buttons" onKeyDown={ this.onKeyDown }>
<button autoFocus onClick={this.logOut}>Sign Out</button> <button className="mx_Dialog_primary" autoFocus onClick={this.logOut}>Sign Out</button>
<button onClick={this.cancelPrompt}>Cancel</button> <button onClick={this.cancelPrompt}>Cancel</button>
</div> </div>
</div> </div>

View File

@ -63,7 +63,7 @@ module.exports = React.createClass({
{this.props.description} {this.props.description}
</div> </div>
<div className="mx_Dialog_buttons"> <div className="mx_Dialog_buttons">
<button onClick={this.props.onFinished} autoFocus={true}> <button className="mx_Dialog_primary" onClick={this.props.onFinished} autoFocus={true}>
Cancel Cancel
</button> </button>
<button onClick={this.onRegisterClicked}> <button onClick={this.onRegisterClicked}>

View File

@ -56,7 +56,7 @@ module.exports = React.createClass({
{this.props.description} {this.props.description}
</div> </div>
<div className="mx_Dialog_buttons"> <div className="mx_Dialog_buttons">
<button onClick={this.onOk} autoFocus={this.props.focus}> <button className="mx_Dialog_primary" onClick={this.onOk} autoFocus={this.props.focus}>
{this.props.button} {this.props.button}
</button> </button>

View File

@ -76,7 +76,7 @@ module.exports = React.createClass({
/> />
</div> </div>
<div className="mx_Dialog_buttons"> <div className="mx_Dialog_buttons">
<input type="submit" value="Set" /> <input className="mx_Dialog_primary" type="submit" value="Set" />
</div> </div>
</form> </form>
</div> </div>

View File

@ -86,7 +86,7 @@ module.exports = React.createClass({
<button onClick={this.onCancel}> <button onClick={this.onCancel}>
Cancel Cancel
</button> </button>
<button onClick={this.onOk}> <button className="mx_Dialog_primary" onClick={this.onOk}>
{this.props.button} {this.props.button}
</button> </button>
</div> </div>