mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 12:15:51 +00:00
167 lines
2.8 KiB
CSS
Executable File
167 lines
2.8 KiB
CSS
Executable File
/* The contents of this file are subject to the Mozilla Public
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.mozilla.org/MPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
* implied. See the License for the specific language governing
|
|
* rights and limitations under the License.
|
|
*
|
|
* The Original Code is Litmus.
|
|
*
|
|
* Contributor(s): Zach Lipton <zach@zachlipton.com>
|
|
*/
|
|
|
|
|
|
/* Banner -- thanks to Bugzilla */
|
|
#banner
|
|
{
|
|
text-align: center;
|
|
width: 100%;
|
|
background: #000;
|
|
/* for Netscape 4 only */
|
|
border: 1px solid #fff;
|
|
border-bottom-width: 0.65em;
|
|
}
|
|
|
|
/* hide from NN4 */
|
|
div#banner { border-bottom-width: 0.2em; }
|
|
|
|
#banner p
|
|
{
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
#banner-name
|
|
{
|
|
font-family: serif;
|
|
font-size: 255%;
|
|
color: #fff;
|
|
}
|
|
|
|
/* hide from NN4 */
|
|
p#banner-name
|
|
{
|
|
text-align: left;
|
|
font-size: 300%;
|
|
}
|
|
|
|
#banner-version
|
|
{
|
|
font-size: 75%;
|
|
background: #fff;
|
|
}
|
|
|
|
/* hide from NN4 */
|
|
p#banner-version { font-size: 85%; }
|
|
|
|
/* banner (end) */
|
|
|
|
.footer
|
|
{
|
|
padding: 10px;
|
|
background-color: #FFFF99;
|
|
width: 55%;
|
|
border: 1px solid #000;
|
|
position: relative;
|
|
bottom: -15px;
|
|
}
|
|
|
|
.pagetitle
|
|
{
|
|
font-size: x-large;
|
|
text-align: center;
|
|
}
|
|
|
|
/* Test result colors */
|
|
.fail-autoconfirmed { background-color: #FF4E4B; }
|
|
.fail-unconfirmed { background-color: #FAA4A1; }
|
|
.pass-autoconfirmed { background-color: #80FF6A; }
|
|
.pass-unconfirmed { background-color: #B4FFA0; }
|
|
|
|
.menubox
|
|
{
|
|
background-color: #FFFF99;
|
|
height: auto;
|
|
width: 220px;
|
|
border: thin solid #000000;
|
|
float: left;
|
|
position: relative;
|
|
left: 10px;
|
|
padding-left: 5px;
|
|
}
|
|
|
|
.menu_content
|
|
{
|
|
left: 250px;
|
|
position: absolute;
|
|
}
|
|
|
|
.key
|
|
{
|
|
top: 80px;
|
|
left: 10px;
|
|
}
|
|
|
|
.hotlist
|
|
{
|
|
background-color: #FFFFFF;
|
|
float: left;
|
|
height: auto;
|
|
width: 765px;
|
|
padding: 5px;
|
|
border: thin solid #000000;
|
|
clear: none;
|
|
position: relative;
|
|
top: 20px;
|
|
}
|
|
|
|
.suitelist
|
|
{
|
|
background-color: #FFCF8C;
|
|
position: relative;
|
|
width: 765px;
|
|
border: thin solid #000000;
|
|
height: auto;
|
|
}
|
|
|
|
.smallcaps
|
|
{
|
|
font-size: small;
|
|
font-weight: bold;
|
|
font-variant: small-caps;
|
|
}
|
|
|
|
.pagetitle {
|
|
font-size: x-large;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.pageinstruction {
|
|
font-size: large;
|
|
font-weight: bold;
|
|
}
|
|
|
|
/* table headers */
|
|
tr#header {
|
|
font-weight: bold;
|
|
}
|
|
|
|
/* for test lists, striped white and gray */
|
|
.testlist_odd {
|
|
background: #FFFFFF;
|
|
}
|
|
.testlist_even {
|
|
background: #ABABAB;
|
|
}
|
|
|
|
/* background colors based on if a group/subgroup is
|
|
complete and if it is confirmed */
|
|
.completegroup {
|
|
background-color: #999999;
|
|
}
|
|
.confirmedgroup {
|
|
background-color: #666666;
|
|
} |