]> cat aescling's git repositories - mastodon.git/commitdiff
Added inline spoiler button styles
authorAnthony Bellew <anthonyreflected@gmail.com>
Thu, 26 Jan 2017 10:02:42 +0000 (03:02 -0700)
committerGitHub <noreply@github.com>
Thu, 26 Jan 2017 10:02:42 +0000 (03:02 -0700)
app/assets/javascripts/components/components/status_content.jsx

index 476d4520d7e76a7120a7ac64f2a65ea9867cc5c3..397374a7550739a16fa06bbcd354ec7e2300301d 100644 (file)
@@ -86,6 +86,15 @@ const StatusContent = React.createClass({
 
     const content = { __html: emojify(status.get('content')) };
     const spoilerContent = { __html: emojify(status.get('spoiler_text', '')) };
+    const spoilerStyle = {
+      backgroundColor: '#fff', 
+      borderRadius: '0 4px',
+      color: '#363c4b',
+      fontWeight: '500',
+      fontSize: '12px',
+      textTransform: 'uppercase'
+    };
+
 
     if (status.get('spoiler_text').length > 0) {
       const toggleText = hidden ? <FormattedMessage id='status.show_more' defaultMessage='Show more' /> : <FormattedMessage id='status.show_less' defaultMessage='Show less' />;
@@ -93,7 +102,8 @@ const StatusContent = React.createClass({
       return (
         <div className='status__content' style={{ cursor: 'pointer' }} onMouseDown={this.handleMouseDown} onMouseUp={this.handleMouseUp}>
           <p style={{ marginBottom: hidden ? '0px' : '' }} >
-            <span dangerouslySetInnerHTML={spoilerContent} /> <a onClick={this.handleSpoilerClick}>[{toggleText}]</a>
+            <span dangerouslySetInnerHTML={spoilerContent} /> 
+            <a style={spoilerStyle} onClick={this.handleSpoilerClick}>[{toggleText}]</a>
           </p>
 
           <div style={{ display: hidden ? 'none' : 'block' }} dangerouslySetInnerHTML={content} />