1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
html {
font-face: Verdana, Arial, Helvetica, sans-serif;
font-weight: bold;
color: black;
}
.pass { color: green; }
.fail { color: red; }
.activetab {
position: relative;
background: white;
border-color: black;
border-style: solid;
border-weight: 1;
border-top-color: white;
border-style: solid;
border-weight: 1;
}
.inactivetab{
position: relative;
background: silver;
border-color: black;
border-style: solid;
border-weight: 1;
}
span.inactivetab a:link ,
span.activetab a:link {
text-decoration: none;
color: black;
}
pre { background-color: lightgray; }
#wait {
background: #B7B8DD;
position: absolute;
visibility: hidden;
text-align: center;
border-color: blue;
border-style: solid;
border-weight: 2;
}
#webunit {
position: absolute;
visibility: hidden;
background: silver;
border-color: black;
border-style: solid;
border-weight: 2;
}
#visible_tab {
position: relative;
visibility: hidden;
overflow: auto;
background: white;
width: 100%;
height: 100%;
border-color: black;
border-style: solid;
border-weight: 1;
}
#visible_tab a:link {
text-decoration: none;
color: inherit;
}
#msg {
position: absolute;
visibility: hidden;
overflow: auto;
background: white;
border-color: black;
border-style: solid;
border-weight: 1;
}
#fail,
#tree {
position: absolute;
visibility: hidden;
}
|