Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/xaprb/story.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBaron Schwartz <xaprb@users.noreply.github.com>2019-02-15 02:05:27 +0300
committerBaron Schwartz <xaprb@users.noreply.github.com>2019-02-15 02:05:27 +0300
commitf1b1f7ea2dad13bb85c220b52f436e412b6fc1ee (patch)
treeef5c05ef427480031745be01da48d5a4ec8fced6
parent159dbcb44b189a50117bd602e0d6848d03d8aa4c (diff)
revise tweetquote styling
-rw-r--r--static/js/story.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/static/js/story.js b/static/js/story.js
index b0ebc81..4bbbd09 100644
--- a/static/js/story.js
+++ b/static/js/story.js
@@ -44,8 +44,8 @@ $( function() {
if ( $( "body.feature-tweetquote:not(.feature-notweetquote)" ).length ) {
$("blockquote p:first-child a[href*='twitter.com']").each(function(i, e){
$(this.parentElement.parentElement).addClass("tweet sans-serif mw6");
- $(this).addClass("no-underline link dim b");
- $(this).prepend('<i class="fl mr2 fab fa-twitter-square fa-3x">');
+ $(this).addClass("no-underline b");
+ $(this).prepend('<i class="fl mr2 fab fa-twitter fa-2x pa2 ba br3">');
var m = $(this).attr('href').match(/twitter.com\/([^\/]*)\//);
if (m.length > 1) {
$(this).append('<br><span class="normal gray">@' + m[1] + '</span>');