LoginSignup
1
0

More than 5 years have passed since last update.

HipChat クライアントアプリのフォントを変更する

Posted at

目的

HipChatのクライアントアプリ(Windows版) が中華フォントで気持ち悪いので変更したい。

方法

アプリケーションのフォルダにある「hipchat-client.css」を書き換える。
例)C:\Program Files (x86)\Atlassian\HipChat4\localweb\hipchat-client.css

1. hipchat-client.cssから以下の記述を見つける

hipchat-client.css
body,
#page,
#hipchat {
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  height: 100%;
  width: 100%;
  min-width: 720px;
  transition: 0.5s -webkit-filter linear, 0.5s filter linear;
}

2. font-family:に任意のフォントを指定する(meiryoなど)

hipchat-client.css
body,
#page,
#hipchat {
  font-family: Arial, meiryo, sans-serif;
  height: 100%;
  width: 100%;
  min-width: 720px;
  transition: 0.5s -webkit-filter linear, 0.5s filter linear;
}

3.クライアントアプリ起動中の場合は再起動する

※アプリのアップデートなどでhipchat-client.cssの内容が更新されるとフォントが戻ってしまうので注意

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0