summaryrefslogtreecommitdiffstats
path: root/webapp/components/user_settings/premade_theme_chooser.jsx
diff options
context:
space:
mode:
authorAsaad Mahmood <asaad@spinpunch.com>2016-03-29 17:03:46 +0500
committerAsaad Mahmood <asaad@spinpunch.com>2016-03-29 17:03:46 +0500
commit4c28726760836d7d25164cd1b6488819be18c38c (patch)
treea54a6dc3b9838856f7a1d579697fadd89d661be5 /webapp/components/user_settings/premade_theme_chooser.jsx
parent31750305aa4834b05ea1e7b0f00d0c83f528342a (diff)
downloadchat-4c28726760836d7d25164cd1b6488819be18c38c.tar.gz
chat-4c28726760836d7d25164cd1b6488819be18c38c.tar.bz2
chat-4c28726760836d7d25164cd1b6488819be18c38c.zip
Multiple UI Improvements
Diffstat (limited to 'webapp/components/user_settings/premade_theme_chooser.jsx')
-rw-r--r--webapp/components/user_settings/premade_theme_chooser.jsx12
1 files changed, 12 insertions, 0 deletions
diff --git a/webapp/components/user_settings/premade_theme_chooser.jsx b/webapp/components/user_settings/premade_theme_chooser.jsx
index c35748b41..61e876d40 100644
--- a/webapp/components/user_settings/premade_theme_chooser.jsx
+++ b/webapp/components/user_settings/premade_theme_chooser.jsx
@@ -7,6 +7,8 @@ import Constants from 'utils/constants.jsx';
import React from 'react';
+import {FormattedMessage} from 'react-intl';
+
export default class PremadeThemeChooser extends React.Component {
constructor(props) {
super(props);
@@ -50,6 +52,16 @@ export default class PremadeThemeChooser extends React.Component {
return (
<div className='row appearance-section'>
{premadeThemes}
+ <a
+ href='http://docs.mattermost.com/help/settings/theme-colors.html#custom-themes'
+ target='_blank'
+ className='col-sm-12 padding-bottom x2'
+ >
+ <FormattedMessage
+ id='user.settings.display.theme.otherThemes'
+ defaultMessage='See other themes'
+ />
+ </a>
</div>
);
}