0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Testlink 背景に画像を表示する

Last updated at Posted at 2023-01-20

Testlink が殺風景なので背景に画像を表示させてみた

Testlink Ver 1.9.9

以下のフォルダに表する画像イメージファイルを置く。
ドキュメントルート htdocs の下の img フォルダ
例: tlBG.jpg

背景イメージはTestLinkオリジナルの薄いブルー(#EEEEEE)に近い色合いが違和感なく馴染みます。

下記フォルダにある testlink.css を編集


C:\xampp\htdocs\testlink\gui\themes\default\css

先頭部分の以下のセクションで background-image を指定する。


/* ***** GLOBAL HTML ***************************************************************** */
body, body.testlink {
background:      #EEE; 
background-image: url(/img/tlBG.jpg);  /*この行を追加する*/
font-family:     'Trebuchet MS', Arial, Verdana, sans-serif;
font-size:         small;
margin:            0px;
padding:        0px;
}

testlink を再表示させる。

tlBG-1.png

  • 背景画像を表示させると、テストレポートの背景まで画像になって見にくい
  • C:\xampp\htdocs\testlink\gui\templates\results
    resultsNavigator.tpl
    にて背景色の指定がなかった。BGColorの指定が必要。
    62行目付近、47行目、52行目も修正

<div style="margin:3px; padding: 15px 0px; background-color:#EDF7FF;" >

  • タイトル行の背景も見にくいので以下を修正。
    testlink.css 変更

/* * Menu bar specific *************************************** /
div.menu_title {
background: #EEEEEE; /*この行を追加/
margin-left: 135px;
padding: 3px;
}

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?