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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
|
body {
width:99%;
padding:0%;
margin:0 auto;
}
.testRoot {
width:79%;
padding-right:1%;
float:right;
padding-top: 5pt;
padding-bottom: 5pt;
margin-top:10pt;
}
.testMenu {
float:left;
width:17%;
padding-left: 1%;
padding-right: 1%;
margin: 0px;
border: 1px solid black;
padding-top: 5pt;
padding-bottom: 5pt;
margin-top:10pt;
background: #ECF1EF;
}
.testBox img, .failedTestList img{
vertical-align:text-top;
}
.testMenu li{
list-style-type: none;
}
.suiteList, .runDate, .suiteHead, .suiteContent, .failedTestList, .testHead, .testContent{
width:98%;
margin-top: 5pt;
margin-bottom: 5pt;
margin-left: 1%;
margin-right:0%;
padding-left:1%;
padding-right:0%;
}
.runDate , .runDuration {
font-size:80%;
text-align:right;
}
.suiteHead, .failedTestList, .testHead, .testContent{
border: 1px solid grey;
}
.testContent {
margin-bottom:20pt;
}
.suiteList a{
border:1px solid black;
padding-left:3px;
padding-right:3px;
background:#ECF1EF;
}
.runDate {
float:right;
width:auto;
clear:right;
padding:0px;
margin:0px;
}
.runDuration {
float:right;
clear:right;
padding:0px;
margin:0px;
}
.suiteLink {
text-decoration:none;
color:black;
}
.suiteLink:hover {
text-decoration:undeline;
}
.failedTestList{
background: #ECF1EF;
font-weight:bold;
padding-top:5pt;
padding-bottom:5pt;
}
.suiteHead {
background:#ECF1EF;
}
a.errorTestLink, a.failureTestLink{
padding-left:2pt;
padding-right:2pt;
padding-top:1pt;
padding-bottom:1pt;
margin:1pt;
border:1px solid red;
color:black;
text-decoration:none;
}
.testStatusSuccess .testHead, .testStatusSuccess .testContent{
background:#EEF3E2;
}
.testStatusFailure .testHead, .testStatusFailure .testContent, a.failureTestLink{
background:#FFEECA
}
.testStatusError .testHead, .testStatusError .testContent, a.errorTestLink{
background:#FEE0C6;
}
.testMenuEntry {
padding-left:0%;
padding-right:0%;
margin-left:0%;
margin-right:0%;
clear:both;
}
.menuEntryOut{
float:right;
}
.menuEntryStatus {
float:left;
}
.menuEntryWeb {
float:left;
}
img {
border: none;
}
.testLogo {
text-align:center;
border-bottom:1px solid black;
padding-bottom:5pt;
}
|