1. 程式人生 > 實用技巧 >0977. Squares of a Sorted Array (E)

0977. Squares of a Sorted Array (E)

技術標籤:Python

allure修改Logo 及標題

1.修改配置檔案,進入‘E:\allure-2.13.7\config’ 目錄,開啟 ‘allure.yml’ 檔案,在最下面增加一行 ‘- custom-logo-plugin' , 特別要注意層級關係。


plugins:
  - junit-xml-plugin
  - xunit-xml-plugin
  - trx-plugin
  - behaviors-plugin
  - packages-plugin
  - screen-diff-plugin
  - xctest-plugin
  - jira-plugin
  - xray-plugin
  - custom-logo-plugin

2.上傳logo

進入按照allure路徑下 ‘E:\allure-2.13.7\plugins\custom-logo-plugin\static’ 資料夾 ,並且把需要展示的logo放進去。 參考下圖

3. 修改‘styles.css’ 檔案 來配置logo,不會的可以參考我的設定。

.side-nav__brand {
  background: url('logo-0.png') no-repeat left center !important;
  margin-left: 10px;
  height: 65px;
  background-size: contain !important;
}
.side-nav__brand span{
	display: none;
}
.side-nav__brand:after{
	content: "任我充";
	margin-left: 20px;

}

4.以上配置完成後, 建議重啟ide 重新執行 指令碼。