最終更新日: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[/]*
種別:JavaScript
$(function(){
$('a[href^=http]').attr('target','_blank');
});