annotate css/main.css @ 44:d3ed74176b4d

added module preloading and loading screen
author Atul Varma <avarma@mozilla.com>
date Sat, 24 Apr 2010 19:04:38 -0700
parents 2a378aa52063
children 72d01c7d5258
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
36
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
1 body {
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
2 font-family: Helvetica Neue, Arial, sans-serif;
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
3 font-size: 9pt;
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
4 background: white;
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
5 }
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
6
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
7 a {
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
8 color: black;
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
9 text-decoration: none;
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
10 }
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
11
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
12 a:hover {
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
13 background: yellow;
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
14 }
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
15
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
16 #header h1 {
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
17 display: inline;
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
18 }
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
19
37
deebff30e816 added login form
Atul Varma <avarma@mozilla.com>
parents: 36
diff changeset
20 #header .menu {
deebff30e816 added login form
Atul Varma <avarma@mozilla.com>
parents: 36
diff changeset
21 margin: 0;
36
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
22 }
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
23
37
deebff30e816 added login form
Atul Varma <avarma@mozilla.com>
parents: 36
diff changeset
24 #header .menu li {
deebff30e816 added login form
Atul Varma <avarma@mozilla.com>
parents: 36
diff changeset
25 display: inline;
deebff30e816 added login form
Atul Varma <avarma@mozilla.com>
parents: 36
diff changeset
26 border-right: 1px solid black;
deebff30e816 added login form
Atul Varma <avarma@mozilla.com>
parents: 36
diff changeset
27 padding-left: 0.25em;
deebff30e816 added login form
Atul Varma <avarma@mozilla.com>
parents: 36
diff changeset
28 color: gray;
deebff30e816 added login form
Atul Varma <avarma@mozilla.com>
parents: 36
diff changeset
29 cursor: pointer;
deebff30e816 added login form
Atul Varma <avarma@mozilla.com>
parents: 36
diff changeset
30 }
deebff30e816 added login form
Atul Varma <avarma@mozilla.com>
parents: 36
diff changeset
31
deebff30e816 added login form
Atul Varma <avarma@mozilla.com>
parents: 36
diff changeset
32 #header .menu li:last-child {
deebff30e816 added login form
Atul Varma <avarma@mozilla.com>
parents: 36
diff changeset
33 border-right: none;
deebff30e816 added login form
Atul Varma <avarma@mozilla.com>
parents: 36
diff changeset
34 }
deebff30e816 added login form
Atul Varma <avarma@mozilla.com>
parents: 36
diff changeset
35
deebff30e816 added login form
Atul Varma <avarma@mozilla.com>
parents: 36
diff changeset
36 #header .menu li:hover {
deebff30e816 added login form
Atul Varma <avarma@mozilla.com>
parents: 36
diff changeset
37 background: yellow;
deebff30e816 added login form
Atul Varma <avarma@mozilla.com>
parents: 36
diff changeset
38 }
deebff30e816 added login form
Atul Varma <avarma@mozilla.com>
parents: 36
diff changeset
39
deebff30e816 added login form
Atul Varma <avarma@mozilla.com>
parents: 36
diff changeset
40 #header .menu {
36
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
41 float: right;
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
42 }
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
43
44
d3ed74176b4d added module preloading and loading screen
Atul Varma <avarma@mozilla.com>
parents: 40
diff changeset
44 #loading-screen {
d3ed74176b4d added module preloading and loading screen
Atul Varma <avarma@mozilla.com>
parents: 40
diff changeset
45 width: 2em;
d3ed74176b4d added module preloading and loading screen
Atul Varma <avarma@mozilla.com>
parents: 40
diff changeset
46 margin: 10em auto;
d3ed74176b4d added module preloading and loading screen
Atul Varma <avarma@mozilla.com>
parents: 40
diff changeset
47 }
d3ed74176b4d added module preloading and loading screen
Atul Varma <avarma@mozilla.com>
parents: 40
diff changeset
48
36
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
49 #reports .container {
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
50 display: table;
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
51 }
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
52
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
53 #reports .container > div:first-child {
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
54 padding: 0;
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
55 }
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
56
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
57 #reports .container > div {
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
58 display: table-cell;
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
59 padding: 0 0.5em;
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
60 }
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
61
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
62 #reports .container h2 {
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
63 margin-top: 0;
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
64 width: 20em;
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
65 }
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
66
37
deebff30e816 added login form
Atul Varma <avarma@mozilla.com>
parents: 36
diff changeset
67 #templates {
deebff30e816 added login form
Atul Varma <avarma@mozilla.com>
parents: 36
diff changeset
68 display: none;
deebff30e816 added login form
Atul Varma <avarma@mozilla.com>
parents: 36
diff changeset
69 }
deebff30e816 added login form
Atul Varma <avarma@mozilla.com>
parents: 36
diff changeset
70
deebff30e816 added login form
Atul Varma <avarma@mozilla.com>
parents: 36
diff changeset
71 .dialog {
36
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
72 display: none;
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
73 }
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
74
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
75 /* Rule to fix quirks-mode inheritance behavior */
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
76 table, caption {
39
6f48313c4da3 better dialog box styling
Atul Varma <avarma@mozilla.com>
parents: 38
diff changeset
77 color: inherit;
6f48313c4da3 better dialog box styling
Atul Varma <avarma@mozilla.com>
parents: 38
diff changeset
78 font-size: inherit;
6f48313c4da3 better dialog box styling
Atul Varma <avarma@mozilla.com>
parents: 38
diff changeset
79 font-weight: inherit;
6f48313c4da3 better dialog box styling
Atul Varma <avarma@mozilla.com>
parents: 38
diff changeset
80 font-style: inherit;
6f48313c4da3 better dialog box styling
Atul Varma <avarma@mozilla.com>
parents: 38
diff changeset
81 font-variant: inherit;
36
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
82 }
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
83
39
6f48313c4da3 better dialog box styling
Atul Varma <avarma@mozilla.com>
parents: 38
diff changeset
84 #reports table {
36
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
85 width: 100%;
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
86 border-collapse: collapse;
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
87 }
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
88
39
6f48313c4da3 better dialog box styling
Atul Varma <avarma@mozilla.com>
parents: 38
diff changeset
89 #reports tr {
36
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
90 border-bottom: 1px black dotted;
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
91 }
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
92
39
6f48313c4da3 better dialog box styling
Atul Varma <avarma@mozilla.com>
parents: 38
diff changeset
93 #reports th {
36
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
94 text-align: left;
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
95 }
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
96
39
6f48313c4da3 better dialog box styling
Atul Varma <avarma@mozilla.com>
parents: 38
diff changeset
97 #reports tr.bug-row {
36
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
98 cursor: pointer;
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
99 }
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
100
39
6f48313c4da3 better dialog box styling
Atul Varma <avarma@mozilla.com>
parents: 38
diff changeset
101 #reports tr.bug-row:hover {
36
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
102 background: #f0f0f0;
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
103 }
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
104
39
6f48313c4da3 better dialog box styling
Atul Varma <avarma@mozilla.com>
parents: 38
diff changeset
105 #reports th, td {
36
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
106 padding: 0.5em;
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
107 }
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
108
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
109 .P1.critical, .P1.blocker {
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
110 color: red;
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
111 }
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
112
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
113 .status-RESOLVED, .status-VERIFIED {
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
114 text-decoration: line-through;
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
115 }
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
116
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
117 .countdown {
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
118 color: #f0f0f0;
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
119 }
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
120
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
121 .bug-tooltip {
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
122 /* TODO: Actually display this. */
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
123 display: none;
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
124 }
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
125
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
126 .loading {
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
127 background-image: url('images/ajax-loader.gif');
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
128 background-repeat: no-repeat;
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
129 background-position: top right;
eb2cc1f89869 Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
Atul Varma <avarma@mozilla.com>
parents:
diff changeset
130 }
38
1cf0cdbc18cc better first-run experience
Atul Varma <avarma@mozilla.com>
parents: 37
diff changeset
131
1cf0cdbc18cc better first-run experience
Atul Varma <avarma@mozilla.com>
parents: 37
diff changeset
132 .dialog {
1cf0cdbc18cc better first-run experience
Atul Varma <avarma@mozilla.com>
parents: 37
diff changeset
133 position: absolute;
1cf0cdbc18cc better first-run experience
Atul Varma <avarma@mozilla.com>
parents: 37
diff changeset
134 top: 0px;
1cf0cdbc18cc better first-run experience
Atul Varma <avarma@mozilla.com>
parents: 37
diff changeset
135 left: 0px;
40
2a378aa52063 more styling changes
Atul Varma <avarma@mozilla.com>
parents: 39
diff changeset
136 width: 100%;
38
1cf0cdbc18cc better first-run experience
Atul Varma <avarma@mozilla.com>
parents: 37
diff changeset
137 }
1cf0cdbc18cc better first-run experience
Atul Varma <avarma@mozilla.com>
parents: 37
diff changeset
138
1cf0cdbc18cc better first-run experience
Atul Varma <avarma@mozilla.com>
parents: 37
diff changeset
139 .dialog .content {
39
6f48313c4da3 better dialog box styling
Atul Varma <avarma@mozilla.com>
parents: 38
diff changeset
140 line-height: 1.5em;
38
1cf0cdbc18cc better first-run experience
Atul Varma <avarma@mozilla.com>
parents: 37
diff changeset
141 color: white;
1cf0cdbc18cc better first-run experience
Atul Varma <avarma@mozilla.com>
parents: 37
diff changeset
142 background: rgba(0, 0, 0, 0.75);
1cf0cdbc18cc better first-run experience
Atul Varma <avarma@mozilla.com>
parents: 37
diff changeset
143 padding: 2em;
40
2a378aa52063 more styling changes
Atul Varma <avarma@mozilla.com>
parents: 39
diff changeset
144 width: 40em;
38
1cf0cdbc18cc better first-run experience
Atul Varma <avarma@mozilla.com>
parents: 37
diff changeset
145 margin: 10em auto;
1cf0cdbc18cc better first-run experience
Atul Varma <avarma@mozilla.com>
parents: 37
diff changeset
146 }
39
6f48313c4da3 better dialog box styling
Atul Varma <avarma@mozilla.com>
parents: 38
diff changeset
147
6f48313c4da3 better dialog box styling
Atul Varma <avarma@mozilla.com>
parents: 38
diff changeset
148 .dialog input {
6f48313c4da3 better dialog box styling
Atul Varma <avarma@mozilla.com>
parents: 38
diff changeset
149 border: 1px solid black;
6f48313c4da3 better dialog box styling
Atul Varma <avarma@mozilla.com>
parents: 38
diff changeset
150 background: #e0e0e0;
6f48313c4da3 better dialog box styling
Atul Varma <avarma@mozilla.com>
parents: 38
diff changeset
151 outline: none;
6f48313c4da3 better dialog box styling
Atul Varma <avarma@mozilla.com>
parents: 38
diff changeset
152 padding: 0.25em;
6f48313c4da3 better dialog box styling
Atul Varma <avarma@mozilla.com>
parents: 38
diff changeset
153 font-family: Helvetica Neue, Arial, sans-serif;
6f48313c4da3 better dialog box styling
Atul Varma <avarma@mozilla.com>
parents: 38
diff changeset
154 }
6f48313c4da3 better dialog box styling
Atul Varma <avarma@mozilla.com>
parents: 38
diff changeset
155
6f48313c4da3 better dialog box styling
Atul Varma <avarma@mozilla.com>
parents: 38
diff changeset
156 .dialog input:hover {
6f48313c4da3 better dialog box styling
Atul Varma <avarma@mozilla.com>
parents: 38
diff changeset
157 background: white;
6f48313c4da3 better dialog box styling
Atul Varma <avarma@mozilla.com>
parents: 38
diff changeset
158 }
6f48313c4da3 better dialog box styling
Atul Varma <avarma@mozilla.com>
parents: 38
diff changeset
159
40
2a378aa52063 more styling changes
Atul Varma <avarma@mozilla.com>
parents: 39
diff changeset
160 .dialog input[type=submit] {
39
6f48313c4da3 better dialog box styling
Atul Varma <avarma@mozilla.com>
parents: 38
diff changeset
161 cursor: pointer;
6f48313c4da3 better dialog box styling
Atul Varma <avarma@mozilla.com>
parents: 38
diff changeset
162 }
6f48313c4da3 better dialog box styling
Atul Varma <avarma@mozilla.com>
parents: 38
diff changeset
163
6f48313c4da3 better dialog box styling
Atul Varma <avarma@mozilla.com>
parents: 38
diff changeset
164 .dialog table {
6f48313c4da3 better dialog box styling
Atul Varma <avarma@mozilla.com>
parents: 38
diff changeset
165 margin-left: 0;
6f48313c4da3 better dialog box styling
Atul Varma <avarma@mozilla.com>
parents: 38
diff changeset
166 }