How to change result color in status field?

The release related discussions, plans and questions.
Locked
daniel0418
TestLink user
Posts: 2
Joined: Wed Sep 24, 2008 7:43 am

How to change result color in status field?

Post by daniel0418 »

Dear all,

Except to "Passed,Failed,Blocked" result,for our need,I added two custom result "not ready" & "no environment" to result,and I try to modify css in testlink.css,but it can not take effect. Here is my css path /gui/themes/theme_m1/css/testlink.css,

.not_ready {
color: white;
background: yellow;
}

.no_environment {
color: white;
background: orange;


div.not_ready {
color: white;
background: yellow;
margin: 8px;
padding: 6px;
text-align: center;
div.no_environment {
color: white;
background: orange;
margin: 8px;
padding: 6px;
text-align: center;

I use testlink 1.7.4. thanks.
fman
Member of TestLink Community
Posts: 3123
Joined: Tue Nov 15, 2005 7:19 am

Post by fman »

have ypu clear browser cache ?
use firefox and inspect elements to understand if page has taken your CSS
daniel0418
TestLink user
Posts: 2
Joined: Wed Sep 24, 2008 7:43 am

Post by daniel0418 »

fman wrote:have ypu clear browser cache ?
use firefox and inspect elements to understand if page has taken your CSS
Hi, fman
After I clear borwser cache,the color of result works.thanks for your reply.
Locked