view css/black-box.css @ 110:4567dc69cb3e

Added failure messages and more color feedback to black-box tests
author Atul Varma <avarma@mozilla.com>
date Fri, 30 Apr 2010 05:26:01 -0700
parents 9a524c01b0f1
children
line wrap: on
line source

body {
    background: black;
    color: white;
    font-family: Monaco, monospace;
    font-size: 9pt;
}

a {
    color: white;
    text-decoration: underline;
}

#dashboard-container {
    margin-right: 1em;
}

#dashboard {
    width: 640px;
    height: 480px;
    border: none;
}

.test-button:before {
    content: "Test ";
}

.test-button {
    display: block;
    margin: 1em;
    cursor: pointer;
}

.fail {
    color: red;
}

.success {
    color: #00ff00;
}

.running:after {
    content: " (now running)";
    color: yellow;
}

span.test-button:hover {
    background: #404040;
}