summaryrefslogtreecommitdiffstats
path: root/web/react
diff options
context:
space:
mode:
authorAsaad Mahmood <asaad@spinpunch.com>2016-01-04 15:11:16 +0500
committerAsaad Mahmood <asaad@spinpunch.com>2016-01-04 15:11:16 +0500
commitf095e772b4486cf09bbbb8880ea3375c6a5bbf7d (patch)
treef10c191bbf9b8234c3972cd0144bd4c44a02a9dc /web/react
parent8931ff6e57cdff214b23fab2fce57fd71a7b37a2 (diff)
downloadchat-f095e772b4486cf09bbbb8880ea3375c6a5bbf7d.tar.gz
chat-f095e772b4486cf09bbbb8880ea3375c6a5bbf7d.tar.bz2
chat-f095e772b4486cf09bbbb8880ea3375c6a5bbf7d.zip
Multiple UI Improvements
Diffstat (limited to 'web/react')
-rw-r--r--web/react/components/setting_item_min.jsx2
-rw-r--r--web/react/components/tutorial/tutorial_tip.jsx32
2 files changed, 18 insertions, 16 deletions
diff --git a/web/react/components/setting_item_min.jsx b/web/react/components/setting_item_min.jsx
index 2a72be207..ffd2061fe 100644
--- a/web/react/components/setting_item_min.jsx
+++ b/web/react/components/setting_item_min.jsx
@@ -8,7 +8,7 @@ export default class SettingItemMin extends React.Component {
editButton = (
<li className='col-sm-2 section-edit'>
<a
- className='section-edit theme'
+ className='theme'
href='#'
onClick={this.props.updateSection}
>
diff --git a/web/react/components/tutorial/tutorial_tip.jsx b/web/react/components/tutorial/tutorial_tip.jsx
index d7c67cc9c..03ecdabab 100644
--- a/web/react/components/tutorial/tutorial_tip.jsx
+++ b/web/react/components/tutorial/tutorial_tip.jsx
@@ -101,22 +101,24 @@ export default class TutorialTip extends React.Component {
<div className={'tip-overlay ' + this.props.overlayClass}>
<div className='arrow'></div>
{this.props.screens[this.state.currentScreen]}
- <div className='tutorial__circles'>{dots}</div>
- <div className='text-right'>
- <button
- className='btn btn-primary'
- onClick={this.handleNext}
- >
- {buttonText}
- </button>
- <div className='tip-opt'>
- {'Seen this before? '}
- <a
- href='#'
- onClick={this.skipTutorial}
+ <div className='tutorial__footer'>
+ <div className='tutorial__circles'>{dots}</div>
+ <div className='text-right'>
+ <button
+ className='btn btn-primary'
+ onClick={this.handleNext}
>
- {'Opt out of these tips.'}
- </a>
+ {buttonText}
+ </button>
+ <div className='tip-opt'>
+ {'Seen this before? '}
+ <a
+ href='#'
+ onClick={this.skipTutorial}
+ >
+ {'Opt out of these tips.'}
+ </a>
+ </div>
</div>
</div>
</div>