view css/main.css @ 38:1cf0cdbc18cc

better first-run experience
author Atul Varma <avarma@mozilla.com>
date Sat, 24 Apr 2010 13:55:15 -0700
parents deebff30e816
children 6f48313c4da3
line wrap: on
line source

body {
    font-family: Helvetica Neue, Arial, sans-serif;
    font-size: 9pt;
    background: white;
}

a {
    color: black;
    text-decoration: none;
}

a:hover {
    background: yellow;
}

#header h1 {
    display: inline;
}

#header .menu {
    margin: 0;
}

#header .menu li {
    display: inline;
    border-right: 1px solid black;
    padding-left: 0.25em;
    color: gray;
    cursor: pointer;
}

#header .menu li:last-child {
    border-right: none;
}

#header .menu li:hover {
    background: yellow;
}

#header .menu {
    float: right;
}

#reports .container {
    display: table;
}

#reports .container > div:first-child {
    padding: 0;
}

#reports .container > div {
    display: table-cell;
    padding: 0 0.5em;
}

#reports .container h2 {
    margin-top: 0;
    width: 20em;
}

#templates {
    display: none;
}

.dialog {
    display: none;
}

/* Rule to fix quirks-mode inheritance behavior */
table, caption {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  font-variant: inherit;
}

table {
    width: 100%;
    border-collapse: collapse;
}

tr {
    border-bottom: 1px black dotted;
}

th {
    text-align: left;
}

tr.bug-row {
    cursor: pointer;
}

tr.bug-row:hover {
    background: #f0f0f0;
}

th, td {
    padding: 0.5em;
}

.P1.critical, .P1.blocker {
    color: red;
}

.status-RESOLVED, .status-VERIFIED {
    text-decoration: line-through;
}

.countdown {
    color: #f0f0f0;
}

.bug-tooltip {
    /* TODO: Actually display this. */
    display: none;
}

.loading {
    background-image: url('images/ajax-loader.gif');
    background-repeat: no-repeat;
    background-position: top right;
}

.dialog {
    position: absolute;
    top: 0px;
    left: 0px;
}

.dialog .content {
    color: white;
    background: rgba(0, 0, 0, 0.75);
    padding: 2em;
    width: 50%;
    margin: 10em auto;
}