I didn't say anything about "look and feeling" in my post as the post was already too long.
Anyhow, you may look at following file as an example. In my example the new status is called "conditional_pass".
Open testlink\gui\themes\default\css\testlink.css file in an editor and look for "render test result status" then use following example for your added test "Status":
.conditional_pass {
color: white;
background: #808000; /* hanah */
}
Look for "Execution & Results" in the same file and follow the example below:
div.conditional_pass {
background: #808000; /* hanah */
}
look for "execution tree coloring" and follow the example below:
span.light_passed, span.light_failed, span.light_blocked, span.light_not_run, span.light_not_available, span.light_unknown, span.light_conditional_pass{
color: black;
padding: 3px;
}
span.light_conditional_pass {
background: #FFEECC;
}
Hope I could answer your question.
Cheers,
Ali