763 lines
9.9 KiB
CSS
763 lines
9.9 KiB
CSS
/**********
|
|
|
|
Global effects
|
|
|
|
**********/
|
|
|
|
body {
|
|
margin: 0px;
|
|
padding: 0px;
|
|
font-family: 'Lucida Grande', 'Bitstream Vera Sans', 'trebuchet ms', verdana, tahoma, arial, sans-serif;
|
|
font-size: 1em;
|
|
background-color: #FAFAFE;
|
|
}
|
|
|
|
ul, ol {
|
|
padding-left: 0;
|
|
margin: 0;
|
|
list-style-position: inside;
|
|
}
|
|
|
|
ul {
|
|
padding-left: 1em;
|
|
text-indent: -1em;
|
|
}
|
|
|
|
ol {
|
|
padding-left: 1.3em;
|
|
text-indent: -1.3em;
|
|
}
|
|
|
|
a:link, a:visited, a:hover, a:active {
|
|
background: transparent;
|
|
}
|
|
|
|
a:link {
|
|
color: #2E2EB2;
|
|
}
|
|
|
|
a:visited {
|
|
color: #606099;
|
|
}
|
|
|
|
a:hover {
|
|
color: #8989D9;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:active {
|
|
color: #FF8000;
|
|
}
|
|
|
|
table, td, th {
|
|
border: solid #777777;
|
|
}
|
|
|
|
table {
|
|
background: #F8F8F8;
|
|
margin: 5px;
|
|
padding: 0px;
|
|
border-width: 1px 0px 0px 1px;
|
|
}
|
|
|
|
table.plain_text_table {
|
|
background: #FFFFFF;
|
|
margin: 5px;
|
|
padding: 0px;
|
|
border-width: 1px 1px 1px 1px;
|
|
border-style:dotted;
|
|
}
|
|
|
|
table.plain_text_table td {
|
|
border-width:0px 0px 1px 1px;
|
|
border-style:dotted;
|
|
border-color:#D0D0D0;
|
|
padding: 0px 6px 0px 6px;
|
|
margin: 0px;
|
|
}
|
|
|
|
table.plain_text_table tr {
|
|
margin: 1px;
|
|
}
|
|
|
|
td, th {
|
|
border-width: 0px 1px 1px 0px;
|
|
padding: 5px;
|
|
}
|
|
|
|
table.hash_table {
|
|
border: solid #777777;
|
|
margin: 5px;
|
|
padding: 0px;
|
|
border-width: 1px 0px 0px 1px;
|
|
border-style:dotted;
|
|
}
|
|
|
|
td.hash_key {
|
|
border-width: 0px 1px 1px 0px;
|
|
background: #dddddd;
|
|
padding: 5px;
|
|
font-weight: bold;
|
|
border-style:dotted;
|
|
}
|
|
|
|
td.hash_value {
|
|
border-width: 0px 1px 1px 0px;
|
|
padding: 5px;
|
|
border-style:dotted;
|
|
}
|
|
|
|
table.confirmation-form {
|
|
border: solid 1px #C6CCB7;
|
|
padding: 5px;
|
|
margin: 5px;
|
|
}
|
|
|
|
td.confirmation-form, th.confirmation-form {
|
|
vertical-align: middle;
|
|
border: solid 0px #C6CCB7;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
}
|
|
|
|
td.numeric, th.numeric {
|
|
text-align:right;
|
|
}
|
|
|
|
h1, h2, h3, h4 {
|
|
font-family: Helvetica, sans-serif;
|
|
font-variant: small-caps;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 1.6em;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 1.4em;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
h4 {
|
|
font-size: 1em;
|
|
font-style: italic;
|
|
}
|
|
|
|
textarea.oldContent {
|
|
width: 100%;
|
|
}
|
|
|
|
textarea.pageContent {
|
|
font-family: monaco, 'Lucida Sans Typewriter', monospace;
|
|
font-size: 12px;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
textarea.no_wrap {
|
|
overflow: scroll;
|
|
}
|
|
|
|
pre {
|
|
/* font-size: 1.5em;*/
|
|
}
|
|
|
|
img {
|
|
border: 0px;
|
|
}
|
|
|
|
/**********
|
|
|
|
Structural
|
|
|
|
**********/
|
|
|
|
div.popup_window {
|
|
visibility: hidden;
|
|
position: absolute;
|
|
top: 50px;
|
|
width: 600px;
|
|
height: 300px;
|
|
border: 3px outset gray;
|
|
z-index: 10;
|
|
}
|
|
|
|
div.popup_title {
|
|
position: absolute;
|
|
top: 0px;
|
|
height: 18px;
|
|
width: 590px;
|
|
background-color: #aaa;
|
|
border-bottom: groove gray 2px;
|
|
padding: 3px 5px 2px 5px;
|
|
font: bold 11pt sans-serif;
|
|
}
|
|
|
|
div.popup_content {
|
|
position: absolute;
|
|
top: 25px;
|
|
height: 265px;
|
|
width: 590px;
|
|
padding: 5px;
|
|
overflow: auto;
|
|
background-color: white;
|
|
}
|
|
|
|
div.sidebar {
|
|
background: #D9DFC9;
|
|
margin: 0px;
|
|
padding: 5px;
|
|
position: fixed;
|
|
top: 0px;
|
|
left: 0px;
|
|
width: 130px;
|
|
height: 1000px;
|
|
border-right: 1px dotted #C6CCB7;
|
|
}
|
|
|
|
div.art_niche {
|
|
margin: 0px;
|
|
padding: 0px 0px 5px 0px;
|
|
position: relative;
|
|
top: 0px;
|
|
left: 0px;
|
|
height: 90px;
|
|
border-bottom: solid 1px #984D00;
|
|
background-image: url("/files/images/FitNesseLogo.gif");
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
}
|
|
|
|
div.actions {
|
|
margin: 0px;
|
|
padding-top: 5px;
|
|
padding-botton: 5px;
|
|
}
|
|
|
|
div.mainbar {
|
|
margin: 0px;
|
|
position: absolute;
|
|
top: 0px;
|
|
left: 145px;
|
|
width: 85%;
|
|
}
|
|
|
|
div.header {
|
|
margin: 0px;
|
|
padding: 5px;
|
|
height: 90px;
|
|
border-bottom: 1px solid #984D00;
|
|
}
|
|
|
|
div.footer {
|
|
margin: 0px;
|
|
padding: 5px; /* Use same color as border color for div.header. */
|
|
border-top: 1px solid #984D00;
|
|
font-size: 12px;
|
|
text-align: center;
|
|
}
|
|
|
|
div.contents {
|
|
margin: 2px;
|
|
padding: 2px;
|
|
border: 1px solid #F0F0F0;
|
|
}
|
|
|
|
div.nested-contents {
|
|
margin: 2px;
|
|
padding: 2px;
|
|
border: 0px solid #F0F0F0;
|
|
}
|
|
|
|
hr {
|
|
/* Use same color as border color for div.header. */
|
|
color: #984D00; /* for IE */
|
|
background-color: #984D00; /* for other browsers */
|
|
height: 1;
|
|
}
|
|
|
|
div.main {
|
|
margin: 0px;
|
|
padding: 5px;
|
|
}
|
|
|
|
div.properties {
|
|
height: 150px;
|
|
width: 100%;
|
|
margin: 5px;
|
|
padding: 5px;
|
|
border: solid 1px #C6CCB7;
|
|
}
|
|
|
|
div.virtual-wiki-properties {
|
|
height: 80px;
|
|
width: 100%;
|
|
margin: 5px;
|
|
padding: 5px;
|
|
border: solid 1px #C6CCB7;
|
|
}
|
|
|
|
#execution-status,
|
|
#stop-test {
|
|
position: absolute;
|
|
top: 0px;
|
|
right: 0px;
|
|
width: 100px;
|
|
height: 90px;
|
|
margin: 5px;
|
|
text-align: center;
|
|
}
|
|
|
|
#test-summary {
|
|
width: 99%;
|
|
top: 105px;
|
|
padding: 2px 2px 2px 5px;
|
|
margin: 0px 0px 5px 0px;
|
|
font-size: 1.2em;
|
|
border: solid black 1px;
|
|
}
|
|
|
|
#progressBar {
|
|
margin: -2px -2px -2px -5px;
|
|
padding: 2px 2px 2px 5px;
|
|
}
|
|
|
|
.actions a:link, .actions a:visited {
|
|
display: block;
|
|
margin: 0px;
|
|
line-height: 2.2em;
|
|
text-indent: .5em;
|
|
color: black;
|
|
font-family: sans-serif, verdana, tahoma, arial, sans-serif;
|
|
font-size: 14px;
|
|
background-color: #F8F6D3;
|
|
text-decoration: none;
|
|
border: solid 1px #8D8360;
|
|
}
|
|
|
|
.actions a:hover {
|
|
color: #3D4529;
|
|
background-color: #DEDDBD;
|
|
}
|
|
|
|
.header a:link {
|
|
font-weight: bold;
|
|
}
|
|
|
|
/**********
|
|
|
|
Miscellaneous formatting
|
|
|
|
**********/
|
|
|
|
.note {
|
|
font-size: 12px;
|
|
color: #818181;
|
|
}
|
|
|
|
.page_title {
|
|
font-size: 2.5em;
|
|
}
|
|
|
|
span.page_title {
|
|
}
|
|
|
|
.page_type {
|
|
font-size: 1.2em;
|
|
font-variant: small-caps;
|
|
}
|
|
|
|
.caps, .resultsHeader {
|
|
font-size: 1em;
|
|
font-variant: small-caps;
|
|
}
|
|
|
|
.resultsHeader, .resultsRow2 {
|
|
background-color: #EFEFEF;
|
|
}
|
|
|
|
.resultsRow1 {
|
|
background-color: #FFFFFF;
|
|
}
|
|
|
|
.centered {
|
|
margin: 5px;
|
|
text-align: center;
|
|
}
|
|
|
|
.right {
|
|
float: right;
|
|
}
|
|
|
|
.left {
|
|
float: left;
|
|
}
|
|
|
|
.strike {
|
|
text-decoration: line-through;
|
|
}
|
|
|
|
.code {
|
|
font-family: courier, 'Lucida Sans Typewriter', monospace;
|
|
font-size: 16px;
|
|
color: #004000;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.red {
|
|
color: red;
|
|
}
|
|
|
|
.orange {
|
|
color: orange;
|
|
}
|
|
|
|
.yellow {
|
|
color: yellow;
|
|
}
|
|
|
|
.green {
|
|
color: green;
|
|
}
|
|
|
|
.blue {
|
|
color: blue;
|
|
}
|
|
|
|
.indigo {
|
|
color: indigo;
|
|
}
|
|
|
|
.violet {
|
|
color: violet;
|
|
}
|
|
|
|
.pink {
|
|
color: pink;
|
|
}
|
|
|
|
.lightYellow {
|
|
color: lightYellow;
|
|
}
|
|
|
|
.lightGreen {
|
|
color: lightGreen;
|
|
}
|
|
|
|
.lightBlue {
|
|
color: lightBlue;
|
|
}
|
|
|
|
.chocolate {
|
|
color: chocolate;
|
|
}
|
|
|
|
.darkOrange {
|
|
color: darkOrange;
|
|
}
|
|
|
|
.darkRed {
|
|
color: darkRed;
|
|
}
|
|
|
|
.olive {
|
|
color: olive;
|
|
}
|
|
|
|
.darkBlue {
|
|
color: darkBlue;
|
|
}
|
|
|
|
.darkGreen {
|
|
color: darkGreen;
|
|
}
|
|
|
|
.virtual {
|
|
background-image: url("/files/images/virtualPage.jpg");
|
|
background-position: center top;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.imported {
|
|
background-image: url("/files/images/importedPage.jpg");
|
|
background-position: center top;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.meta {
|
|
color: #BF8660;
|
|
font-style: italic;
|
|
}
|
|
|
|
.included, .setup, .teardown, .collapse_rim {
|
|
background: #F9F9F9;
|
|
margin: 5px 0px 5px 0px;
|
|
padding: 2px 2px 2px 2px;
|
|
border: 1px dotted #909090;
|
|
}
|
|
|
|
.setup, .teardown {
|
|
background: #FFFFF0;
|
|
border-color: #FF8000;
|
|
}
|
|
|
|
.included {
|
|
background: #F9F9FF;
|
|
border-color: #2E2EB2;
|
|
}
|
|
|
|
.collapse_rim {
|
|
border-color: #BF8660;
|
|
}
|
|
|
|
.alternating_row_1, .alternating_row_2 {
|
|
display: block;
|
|
height: 1.5em;
|
|
width: 100%;
|
|
clear: both;
|
|
}
|
|
|
|
.alternating_row_1, .alternating_block_1 {
|
|
background-color: #EFEFEF;
|
|
}
|
|
|
|
.alternating_row_2, .alternating_block_2 {
|
|
background-color: #FFFFFF;
|
|
}
|
|
|
|
.alternating_block_1, .alternating_block_2 {
|
|
border: solid 1px #DFD4A7;
|
|
}
|
|
|
|
div.collapsable {
|
|
margin: 0px 0px 0px 15px;
|
|
display: block;
|
|
}
|
|
|
|
div.collapsable-contents {
|
|
margin: 0px 0px 0px 15px;
|
|
display: block;
|
|
}
|
|
|
|
div.invisible {
|
|
line-height: 0px;
|
|
margin: 0px 0px 0px 0px;
|
|
display: none;
|
|
visibility: hidden;
|
|
}
|
|
|
|
.pageHelp {
|
|
color: #CC6600;
|
|
font-size: 0.7em;
|
|
font-style: italic;
|
|
margin-left: 1.5em;
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
}
|
|
|
|
.toc1 ul {
|
|
list-style-type: disc;
|
|
color: black;
|
|
}
|
|
|
|
.toc3 ul {
|
|
list-style-type: disc;
|
|
color: gray;
|
|
}
|
|
|
|
.toc2 ul, .toc4 ul, .toc5 ul, .toc6 ul {
|
|
list-style-type: circle;
|
|
}
|
|
|
|
table {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
/**********
|
|
|
|
Page Specific
|
|
|
|
**********/
|
|
|
|
div.edit_buttons {
|
|
float: left;
|
|
}
|
|
|
|
div.edit_options {
|
|
float: right;
|
|
}
|
|
|
|
div.hints {
|
|
clear: both;
|
|
}
|
|
|
|
div.nav_break {
|
|
font-size: .3em;
|
|
}
|
|
|
|
div.merge_new {
|
|
float: left;
|
|
font-size: 1.4em;
|
|
width: 49%;
|
|
}
|
|
|
|
div.merge_old {
|
|
float: right;
|
|
font-size: 1.4em;
|
|
width: 49%;
|
|
}
|
|
|
|
.test_summary_link {
|
|
text-align: right;
|
|
}
|
|
|
|
.test_summary_results {
|
|
padding: 0px 5px 0px 5px;
|
|
text-align: left;
|
|
}
|
|
|
|
.suite_summary {
|
|
margin: 5px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
text-align: center;
|
|
}
|
|
|
|
.test_name {
|
|
font-size: 1.5em;
|
|
float: left;
|
|
}
|
|
|
|
.top_of_page {
|
|
margin-top: .5em;
|
|
margin-right: 3px;
|
|
float: right;
|
|
color: #BF8660;
|
|
font-style: italic;
|
|
}
|
|
|
|
.test_output_name {
|
|
margin-top: 10px;
|
|
background-color: #DFD4A7;
|
|
text-indent: 1em;
|
|
height: 2em;
|
|
}
|
|
|
|
table.dirListing {
|
|
background: transparent;
|
|
margin: 2px;
|
|
padding: 0px;
|
|
border: 0px;
|
|
width: 99%;
|
|
font-size: 1.0em;
|
|
}
|
|
|
|
.dirListing td, .dirListing th {
|
|
border: 0px;
|
|
padding: 1px 3px 1px 3px;
|
|
}
|
|
|
|
/**********
|
|
|
|
Used in FIT and the summary bar
|
|
|
|
**********/
|
|
|
|
.pass {
|
|
background-color: #AAFFAA;
|
|
}
|
|
|
|
.fail {
|
|
background-color: #FFAAAA;
|
|
}
|
|
|
|
.error {
|
|
background-color: #FFFFAA;
|
|
}
|
|
|
|
.ignore {
|
|
background-color: #CCCCCC;
|
|
}
|
|
|
|
.fit_stacktrace {
|
|
font-size: 0.7em;
|
|
}
|
|
|
|
.fit_label {
|
|
font-style: italic;
|
|
color: #C08080;
|
|
}
|
|
|
|
.fit_grey {
|
|
color: #808080;
|
|
}
|
|
|
|
.passed_tests,
|
|
.unrun_tests,
|
|
.failed_tests {
|
|
background-repeat: no-repeat;
|
|
padding-left: 22px;
|
|
margin: 0px 4px;
|
|
}
|
|
|
|
.passed_tests {
|
|
background-image: url('../images/pass.png');
|
|
}
|
|
|
|
.unrun_tests {
|
|
background-image: url('../images/unrun.png');
|
|
}
|
|
|
|
.failed_tests {
|
|
background-image: url('../images/fail.png');
|
|
}
|
|
|
|
.completion_folder{
|
|
margin: 2px 5px;
|
|
}
|
|
|
|
.completion_test{
|
|
margin: 0px 25px;
|
|
}
|
|
|
|
a.fail,
|
|
.fail {
|
|
background-color: #ffcbd0;
|
|
}
|
|
|
|
.unrun,
|
|
a.unrun
|
|
{
|
|
background-color: #fff3b4;
|
|
}
|
|
|
|
.overview_part {
|
|
margin: 0px;
|
|
padding: 0px;
|
|
float: left;
|
|
height: 1.4em;
|
|
}
|
|
|
|
.overview_bar {
|
|
border: 1px solid black;
|
|
height: 1.4em;
|
|
margin: 0 -.5px;
|
|
}
|
|
|
|
.overview_results table td {
|
|
border : none;
|
|
background-position: 1px;
|
|
}
|
|
|
|
.overview_results table {
|
|
border : 1px solid black;
|
|
margin : 10px 0px;
|
|
padding : 10px;
|
|
}
|