No-hover buttons

This commit is contained in:
James Barnsley
2017-07-20 09:40:35 +12:00
parent f426160d1e
commit c46af01346
3 changed files with 4 additions and 4 deletions

View File

@ -43,7 +43,7 @@ class Debug extends React.Component{
var options = (
<span>
<button onClick={e => hashHistory.push(global.baseURL+'settings')}>
<button className="no-hover" onClick={e => hashHistory.push(global.baseURL+'settings')}>
<FontAwesome name="reply" />&nbsp;
Back
</button>

View File

@ -39,7 +39,7 @@ class QueueHistory extends React.Component{
render(){
var options = (
<span>
<button onClick={e => hashHistory.push(global.baseURL+'queue')}>
<button className="no-hover" onClick={e => hashHistory.push(global.baseURL+'queue')}>
<FontAwesome name="reply" />&nbsp;
Back
</button>

View File

@ -213,11 +213,11 @@ class Settings extends React.Component{
var options = (
<span>
<button onClick={e => hashHistory.push(global.baseURL+'settings/debug')}>
<button className="no-hover" onClick={e => hashHistory.push(global.baseURL+'settings/debug')}>
<FontAwesome name="flask" />&nbsp;
Debug
</button>
<a className="button" href="https://github.com/jaedb/Iris/wiki" target="_blank">
<a className="no-hover button" href="https://github.com/jaedb/Iris/wiki" target="_blank">
<FontAwesome name="question" />&nbsp;
Help
</a>