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-10 22:52:41 +0300
committerBaron Schwartz <xaprb@users.noreply.github.com>2019-02-10 22:52:41 +0300
commit159dbcb44b189a50117bd602e0d6848d03d8aa4c (patch)
tree004c766161727b1036217ccd7802b264d4c508ce
parent1090824bebb3d05161d0785ec7709837558ac651 (diff)
remove some unused tweetquote styles
-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 13582fc..b0ebc81 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 dib v-top");
- $(this).prepend('<i class="fl mr2 v-top fab fa-twitter-square fa-3x">');
+ $(this).addClass("no-underline link dim b");
+ $(this).prepend('<i class="fl mr2 fab fa-twitter-square fa-3x">');
var m = $(this).attr('href').match(/twitter.com\/([^\/]*)\//);
if (m.length > 1) {
$(this).append('<br><span class="normal gray">@' + m[1] + '</span>');