Created
June 6, 2018 08:50
-
-
Save Guaseon/6fa8f9b823857aafd282cdac8a105ab4 to your computer and use it in GitHub Desktop.
Custom stylesheet for tweetdeck.twitter.com
This file contains 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
/* 프로필 이미지 불투명도를 10%로 설정 */ | |
img[src*="pbs.twimg.com/profile_images"] { | |
opacity: .1; | |
} | |
/* 단체 DM방 참가자 프로필 이미지 불투명도를 10%로 설정 */ | |
html.dark .media-grid-container.multiple-avatar-grid, html.dark .media-grid-container.multiple-avatar-grid-mini { | |
opacity: .1; | |
} | |
/* 프로필 헤더 이미지 제거 */ | |
html.dark .prf-header { | |
background-image: none !important; | |
} | |
/* 내 계정 목록 숨기기 */ | |
html.dark .list-account.s-justify { | |
opacity: .15; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment