diff --git a/lib/zin/wg/heading/v1.php b/lib/zin/wg/heading/v1.php index fd6dc5d8c6..3c54aea194 100644 --- a/lib/zin/wg/heading/v1.php +++ b/lib/zin/wg/heading/v1.php @@ -43,7 +43,7 @@ class heading extends wg ( set::url($url), set::hint($lang->$tab->common), - $tab == 'devops' ? setClass('num') : null, + ($tab == 'devops' || $tab == 'bi') ? setClass('font-brand') : null, set::icon($icon), set::text($lang->$tab->common) ); diff --git a/module/index/js/index.ui.js b/module/index/js/index.ui.js index eef851b87a..a24f7e0ffd 100644 --- a/module/index/js/index.ui.js +++ b/module/index/js/index.ui.js @@ -654,7 +654,7 @@ function initAppsMenu(items) item.icon = ($link.find('.icon').attr('class') || '').replace('icon ', ''); item.text = $link.text().trim(); $link.html('' + item.text + ''); - if(item.code === 'devops') $link.find('.text').addClass('num'); + if(item.code === 'devops' || item.code === 'bi') $link.find('.text').addClass('font-brand'); apps.map[item.code] = item; $('
').attr('data-app', item.code)