View Customize¶
最終更新日:2023/09/18
Redmineの見た目をカスタマイズできる神プラグイン。
このサイトでもがっつり使ってます。
インストール方法¶
onozaty/redmine-view-customize: View customize plugin for Redmine
https://github.com/onozaty/redmine-view-customize
他のプラグインと同じく、Redmineのプラグインフォルダに入れてインストールコマンドを打つだけ。
詳細はリンク先へ。
サンプル¶
有用なものをピックアップ!
公式リポジトリにもたくさんあります。
onozaty/redmine-view-customize-scripts: Code examples for "Redmine View Customize Plugin"
https://github.com/onozaty/redmine-view-customize-scripts
- トップメニューのヘルプを非表示
パスのパターン:
種別:CSS
div#top-menu a.help{
display:none;
}
- プロジェクトの活動を非表示
パスのパターン:/projects/
種別:CSS
.activity{
display:none !important;
}
- wikiの外部リンクを別ウィンドウで開く
パスのパターン:/wiki[/]*
種別:JavaScript
$(function(){
$('a[href^=http]').attr('target','_blank');
});