Last active
June 27, 2024 15:17
-
-
Save uupaa/6304204 to your computer and use it in GitHub Desktop.
Revisions
-
uupaa revised this gist
Aug 22, 2013 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ ## IRC クライアント Limechat for Mac で joined, left, quit メッセージを消す方法 /Applications/LimeChat.app/Contents/Themes/Limelight.css に以下のCSSを追加。 他のテーマを使っている場合は、そのテーマのcssを編集。 -
uupaa revised this gist
Aug 22, 2013 . 1 changed file with 3 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,7 @@ ## IRC クライアント Limechat for Mac で joined, left, quit を消す方法 /Applications/LimeChat.app/Contents/Themes/Limelight.css に以下のCSSを追加。 他のテーマを使っている場合は、そのテーマのcssを編集。 ```css .line[type=join] { display:none; } @@ -10,4 +11,4 @@ .line[type=nick] { display:none; } ``` Limechat は HTMLでレンダリングしているらしい。 -
uupaa revised this gist
Aug 22, 2013 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ ## IRC クライアント Limechat for Mac で joined, left, quit を消す方法 /Applications/LimeChat.app/Contents/Themes/Limelight.css に以下のCSSを追加 -
uupaa created this gist
Aug 22, 2013 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ # IRC クライアント Limechat for Mac で joined, left, quit を消す方法 /Applications/LimeChat.app/Contents/Themes/Limelight.css に以下のCSSを追加 ```css .line[type=join] { display:none; } .line[type=quit] { display:none; } .line[type=mode] { display:none; } .line[type=part] { display:none; } .line[type=nick] { display:none; } ``` レンダリングはHTMLでやっているので、これができるらしい