Last active
July 30, 2017 05:02
-
-
Save Shinichi-Ohki/1ea01035b81d8ade80dff2535adb4d41 to your computer and use it in GitHub Desktop.
Twitterのアイコンを10%の角丸にするCSSです。Stylishでどうぞ。書き込み欄の角丸も取ります。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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