无法更改默认徽标

问题描述 投票:1回答:1

我正在尝试在Zabbix中更改singnin徽标和仪表板徽标中的徽标。我在目录/ usr / share / zabbix / img minilogo.png和biglogo.png

中放置了两个图像

并且在/ user / share / zabbix / styles中的两种样式blue-theme.css和dark-theme.css中,我都进行了更改:

.signin-logo {
  margin: 0 auto;
  margin-bottom: 21px;
  height: 30px;
  background: url(../img/biglogo.png) no-repeat 0; }

.logo {
  float: left;
  display: block;
  width: 95px;
  height: 25px;
  background: url(../img/minilogo.png) no-repeat 0; }


.browser-logo-chrome {
  background: url(../img/minilogo.png) no-repeat 0 0; }

.browser-logo-ff {
  background: url(../img/minilogo.png) no-repeat; }

.browser-logo-ie {
  background: url(../img/minilogo.png) no-repeat 0; }

.browser-logo-opera {
  background: url(../img/minilogoo.png) no-repeat 0; }

.browser-logo-safari {
  background: url(../img/minilogo.png) no-repeat 0; }

最后运行此命令:systemctl restart apache2

但是当刷新浏览器时,zabbix的默认徽标仍然存在,并且在我登录时也是如此。哪里有问题?

css zabbix
1个回答
0
投票

从4.2版开始,所有这些配置都更改为Assets文件夹(/ usr / share / zabbix / assets)。

© www.soinside.com 2019 - 2024. All rights reserved.