1、在你的zabbix系统找到assets/styles目录,创建css后缀的文件:
# cp blue-theme.css custom-theme.css
2、修改custom-theme.css的内容,由于是测试,我修改了导航栏的背景颜色:
注释掉原来的css代码,然后把background-color修改成:aqua
3、在你的zabbix系统找到include/classes/core目录,在Z.php文件中添加以下php代码:
# vim Z.php
public static function getThemes() {
return array_merge(parent::getThemes(), array(
'custom-theme' => _('Custom theme')
));
}
注意:如果想添加多个自定义主题,用逗号分隔就行,例如:
4、在zabbix的web界面选择新添加的主题,并查看效果:
QQ在线Zabbix答疑群177428068