Skip to content

Instantly share code, notes, and snippets.

@taizooo
Last active December 22, 2015 00:09
Show Gist options
  • Save taizooo/6387370 to your computer and use it in GitHub Desktop.
Save taizooo/6387370 to your computer and use it in GitHub Desktop.
twitter の青い線、t1_core.bundle.cssの該当部分 https://twitter.com/taizooo/status/373344546190401537
@-moz-document domain("twitter.com") {
/* in-reply-to の tweet 消すヤツ */
.conversation-tweet-item {
display:none;
}
/* 青い線消すヤツ */
.conversation-module > li:after,
.conversation-module > li:before {
background-color: transparent !important;
}
/* in-reply-to を表示するヤツ:クリックすると会話が表示される */
.conversation-header {
display: block !important;
}
}
/* t1_core.bundle.css の青い線、該当部分? */
.conversation-module>li:after,
.conversation-module>li:before {
content:"";
display:block;
position:absolute;
width:3px;
background-color:#55acee;
left:35px;
z-index:1;
border-radius:3px / 7px;
}
.conversation-module>li:after {
top:59px;
bottom:0;
}
.conversation-module>li:before {
top:-2px;
bottom:auto;
height:9px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment