Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Shinichi-Ohki/1ea01035b81d8ade80dff2535adb4d41 to your computer and use it in GitHub Desktop.
Save Shinichi-Ohki/1ea01035b81d8ade80dff2535adb4d41 to your computer and use it in GitHub Desktop.
Twitterのアイコンを10%の角丸にするCSSです。Stylishでどうぞ。書き込み欄の角丸も取ります。
/* Twitter */
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("twitter.com") {
.edge-design .avatar {
border-radius: 10% !important;
}
.DashboardProfileCard-avatarImage {
border-radius: 10% !important;
}
.avatar {
border-radius: 10% !important;
}
.ProfileAvatar, .ProfileAvatar-image, .ProfileAvatar-placeholderImage {
border-radius: 10% !important;
}
.ProfileCard-avatarLink, .ProfileCard-avatarImage {
border-radius: 10% !important;
}
.ProfileCardMini-avatarImage {
border-radius: 10% !important;
}
.RichEditor{
border-radius: 1% !important;
}
.u-borderRadiusInherit{
border-radius: 1% !important;
}
.global-nav .search-input{
border-radius: 1% !important;
}
.nav .session .dropdown-toggle{
border-radius: 1% !important;
}
.EdgeButton{
border-radius: 1% !important;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment