Created
January 20, 2015 22:50
-
-
Save NeoCat/a6189f245347581d608c to your computer and use it in GitHub Desktop.
twicli CSS - Don't enlarge thumbnails on hover & enlarge thumbnails when selected
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
/* twicliの設定→ユーザスタイルシートに下記をペーストして保存 */ | |
/* サムネールをマウスオーバーで拡大しない */ | |
.thumbnail-image:hover { max-width: 32px; width: 32px\9; } | |
/* tweetをクリックで選択した時にサムネールを拡大 */ | |
div.selected img.thumbnail-image { width: auto; max-width: 300px; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment