comparison css/dashboard.css @ 18:b2e0ea0178fb

Moved js and css files into their own directories.
author Atul Varma <varmaa@toolness.com>
date Wed, 10 Mar 2010 12:44:58 -0800
parents dashboard.css@c4de72b56b3e
children 9758e65141df
comparison
equal deleted inserted replaced
17:4a698ea4be60 18:b2e0ea0178fb
1 body {
2 font-family: Helvetica Neue, Arial, sans-serif;
3 font-size: 9pt;
4 background: white;
5 }
6
7 a {
8 color: black;
9 text-decoration: none;
10 }
11
12 a:hover {
13 background: yellow;
14 }
15
16 #reports .container {
17 display: table;
18 }
19
20 #reports .container > div:first-child {
21 padding: 0;
22 }
23
24 #reports .container > div {
25 display: table-cell;
26 padding: 0 0.5em;
27 }
28
29 #reports .container h2 {
30 margin-top: 0;
31 width: 20em;
32 }
33
34 #templates, #form-cache {
35 display: none;
36 }
37
38 /* Rule to fix quirks-mode inheritance behavior */
39 table, caption {
40 font-size: inherit;
41 font-weight: inherit;
42 font-style: inherit;
43 font-variant: inherit;
44 }
45
46 table {
47 width: 100%;
48 border-collapse: collapse;
49 }
50
51 tr {
52 border-bottom: 1px black dotted;
53 }
54
55 th {
56 text-align: left;
57 }
58
59 tr.bug-row {
60 cursor: pointer;
61 }
62
63 tr.bug-row:hover {
64 background: #f0f0f0;
65 }
66
67 th, td {
68 padding: 0.5em;
69 }
70
71 .P1.critical, .P1.blocker {
72 color: red;
73 }
74
75 .status-RESOLVED, .status-VERIFIED {
76 text-decoration: line-through;
77 }
78
79 .countdown {
80 color: #f0f0f0;
81 }
82
83 .bug-tooltip {
84 /* TODO: Actually display this. */
85 display: none;
86 }