Skip to content

Instantly share code, notes, and snippets.

@uupaa
Last active June 27, 2024 15:17
Show Gist options
  • Select an option

  • Save uupaa/6304204 to your computer and use it in GitHub Desktop.

Select an option

Save uupaa/6304204 to your computer and use it in GitHub Desktop.

Revisions

  1. uupaa revised this gist Aug 22, 2013. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion irc.mac.remove.quit.md
    Original file line number Diff line number Diff line change
    @@ -1,4 +1,4 @@
    ## IRC クライアント Limechat for Mac で joined, left, quit を消す方法
    ## IRC クライアント Limechat for Mac で joined, left, quit メッセージを消す方法

    /Applications/LimeChat.app/Contents/Themes/Limelight.css に以下のCSSを追加。
    他のテーマを使っている場合は、そのテーマのcssを編集。
  2. uupaa revised this gist Aug 22, 2013. 1 changed file with 3 additions and 2 deletions.
    5 changes: 3 additions & 2 deletions irc.mac.remove.quit.md
    Original 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を追加
    /Applications/LimeChat.app/Contents/Themes/Limelight.css に以下のCSSを追加。
    他のテーマを使っている場合は、そのテーマのcssを編集。

    ```css
    .line[type=join] { display:none; }
    @@ -10,4 +11,4 @@
    .line[type=nick] { display:none; }
    ```

    レンダリングはHTMLでやっているので、これができるらしい
    Limechat は HTMLでレンダリングしているらしい。
  3. uupaa revised this gist Aug 22, 2013. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion irc.mac.remove.quit.md
    Original file line number Diff line number Diff line change
    @@ -1,4 +1,4 @@
    # IRC クライアント Limechat for Mac で joined, left, quit を消す方法
    ## IRC クライアント Limechat for Mac で joined, left, quit を消す方法

    /Applications/LimeChat.app/Contents/Themes/Limelight.css に以下のCSSを追加

  4. uupaa created this gist Aug 22, 2013.
    13 changes: 13 additions & 0 deletions irc.mac.remove.quit.md
    Original 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でやっているので、これができるらしい