Mercurial > bugzilla-dashboard
annotate css/main.css @ 102:00b02ba5236c
made all delegates have a dotted name (namespaced), modified black-box.js a bit
author | Atul Varma <avarma@mozilla.com> |
---|---|
date | Wed, 28 Apr 2010 20:06:26 -0700 |
parents | ee0a4597c067 |
children |
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 | 20 #header .menu { |
21 margin: 0; | |
48
b86cf631e753
turned menu into a fixed overlay
Atul Varma <avarma@mozilla.com>
parents:
47
diff
changeset
|
22 padding: 0.5em; |
b86cf631e753
turned menu into a fixed overlay
Atul Varma <avarma@mozilla.com>
parents:
47
diff
changeset
|
23 background: rgba(0, 0, 0, 0.75); |
b86cf631e753
turned menu into a fixed overlay
Atul Varma <avarma@mozilla.com>
parents:
47
diff
changeset
|
24 position: fixed; |
b86cf631e753
turned menu into a fixed overlay
Atul Varma <avarma@mozilla.com>
parents:
47
diff
changeset
|
25 right: 0; |
b86cf631e753
turned menu into a fixed overlay
Atul Varma <avarma@mozilla.com>
parents:
47
diff
changeset
|
26 top: 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
|
27 } |
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
|
28 |
37 | 29 #header .menu li { |
30 display: inline; | |
48
b86cf631e753
turned menu into a fixed overlay
Atul Varma <avarma@mozilla.com>
parents:
47
diff
changeset
|
31 color: white; |
b86cf631e753
turned menu into a fixed overlay
Atul Varma <avarma@mozilla.com>
parents:
47
diff
changeset
|
32 } |
b86cf631e753
turned menu into a fixed overlay
Atul Varma <avarma@mozilla.com>
parents:
47
diff
changeset
|
33 |
b86cf631e753
turned menu into a fixed overlay
Atul Varma <avarma@mozilla.com>
parents:
47
diff
changeset
|
34 #header .menu li:last-child:after { |
b86cf631e753
turned menu into a fixed overlay
Atul Varma <avarma@mozilla.com>
parents:
47
diff
changeset
|
35 content: ""; |
b86cf631e753
turned menu into a fixed overlay
Atul Varma <avarma@mozilla.com>
parents:
47
diff
changeset
|
36 } |
b86cf631e753
turned menu into a fixed overlay
Atul Varma <avarma@mozilla.com>
parents:
47
diff
changeset
|
37 |
b86cf631e753
turned menu into a fixed overlay
Atul Varma <avarma@mozilla.com>
parents:
47
diff
changeset
|
38 #header .menu li:after { |
b86cf631e753
turned menu into a fixed overlay
Atul Varma <avarma@mozilla.com>
parents:
47
diff
changeset
|
39 content: " | "; |
b86cf631e753
turned menu into a fixed overlay
Atul Varma <avarma@mozilla.com>
parents:
47
diff
changeset
|
40 } |
b86cf631e753
turned menu into a fixed overlay
Atul Varma <avarma@mozilla.com>
parents:
47
diff
changeset
|
41 |
b86cf631e753
turned menu into a fixed overlay
Atul Varma <avarma@mozilla.com>
parents:
47
diff
changeset
|
42 #header .menu li span { |
37 | 43 cursor: pointer; |
44 } | |
45 | |
48
b86cf631e753
turned menu into a fixed overlay
Atul Varma <avarma@mozilla.com>
parents:
47
diff
changeset
|
46 #header .menu li span:hover { |
b86cf631e753
turned menu into a fixed overlay
Atul Varma <avarma@mozilla.com>
parents:
47
diff
changeset
|
47 text-decoration: underline; |
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
|
48 } |
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 |
44
d3ed74176b4d
added module preloading and loading screen
Atul Varma <avarma@mozilla.com>
parents:
40
diff
changeset
|
50 #loading-screen { |
d3ed74176b4d
added module preloading and loading screen
Atul Varma <avarma@mozilla.com>
parents:
40
diff
changeset
|
51 width: 2em; |
d3ed74176b4d
added module preloading and loading screen
Atul Varma <avarma@mozilla.com>
parents:
40
diff
changeset
|
52 margin: 10em auto; |
d3ed74176b4d
added module preloading and loading screen
Atul Varma <avarma@mozilla.com>
parents:
40
diff
changeset
|
53 } |
d3ed74176b4d
added module preloading and loading screen
Atul Varma <avarma@mozilla.com>
parents:
40
diff
changeset
|
54 |
47
0b71df72ebe1
integrated dashboard into main.html.
Atul Varma <avarma@mozilla.com>
parents:
46
diff
changeset
|
55 #reports { |
0b71df72ebe1
integrated dashboard into main.html.
Atul Varma <avarma@mozilla.com>
parents:
46
diff
changeset
|
56 padding-top: 1em; |
0b71df72ebe1
integrated dashboard into main.html.
Atul Varma <avarma@mozilla.com>
parents:
46
diff
changeset
|
57 } |
0b71df72ebe1
integrated dashboard into main.html.
Atul Varma <avarma@mozilla.com>
parents:
46
diff
changeset
|
58 |
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
|
59 #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
|
60 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
|
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 |
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 #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
|
64 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
|
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 |
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
|
67 #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
|
68 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
|
69 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
|
70 } |
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
|
71 |
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 #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
|
73 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
|
74 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
|
75 } |
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 |
37 | 77 #templates { |
78 display: none; | |
79 } | |
80 | |
81 .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
|
82 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
|
83 } |
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
|
84 |
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 /* 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
|
86 table, caption { |
39 | 87 color: inherit; |
88 font-size: inherit; | |
89 font-weight: inherit; | |
90 font-style: inherit; | |
91 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
|
92 } |
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
|
93 |
39 | 94 #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
|
95 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
|
96 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
|
97 } |
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 |
39 | 99 #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
|
100 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
|
101 } |
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 |
39 | 103 #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
|
104 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
|
105 } |
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 |
39 | 107 #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
|
108 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
|
109 } |
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 |
39 | 111 #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
|
112 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
|
113 } |
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 |
39 | 115 #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
|
116 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
|
117 } |
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 |
89
ee0a4597c067
Added a really basic error log that gets populated when the wrong username/pass is entered. Also, the username/password prompt for login now emphasizes the fact that it is a bugzilla login.
Atul Varma <avarma@mozilla.com>
parents:
73
diff
changeset
|
119 #errors { |
ee0a4597c067
Added a really basic error log that gets populated when the wrong username/pass is entered. Also, the username/password prompt for login now emphasizes the fact that it is a bugzilla login.
Atul Varma <avarma@mozilla.com>
parents:
73
diff
changeset
|
120 display: none; |
ee0a4597c067
Added a really basic error log that gets populated when the wrong username/pass is entered. Also, the username/password prompt for login now emphasizes the fact that it is a bugzilla login.
Atul Varma <avarma@mozilla.com>
parents:
73
diff
changeset
|
121 position: fixed; |
ee0a4597c067
Added a really basic error log that gets populated when the wrong username/pass is entered. Also, the username/password prompt for login now emphasizes the fact that it is a bugzilla login.
Atul Varma <avarma@mozilla.com>
parents:
73
diff
changeset
|
122 left: 0px; |
ee0a4597c067
Added a really basic error log that gets populated when the wrong username/pass is entered. Also, the username/password prompt for login now emphasizes the fact that it is a bugzilla login.
Atul Varma <avarma@mozilla.com>
parents:
73
diff
changeset
|
123 bottom: 0px; |
ee0a4597c067
Added a really basic error log that gets populated when the wrong username/pass is entered. Also, the username/password prompt for login now emphasizes the fact that it is a bugzilla login.
Atul Varma <avarma@mozilla.com>
parents:
73
diff
changeset
|
124 padding: 1em; |
ee0a4597c067
Added a really basic error log that gets populated when the wrong username/pass is entered. Also, the username/password prompt for login now emphasizes the fact that it is a bugzilla login.
Atul Varma <avarma@mozilla.com>
parents:
73
diff
changeset
|
125 background: #cc0033; |
ee0a4597c067
Added a really basic error log that gets populated when the wrong username/pass is entered. Also, the username/password prompt for login now emphasizes the fact that it is a bugzilla login.
Atul Varma <avarma@mozilla.com>
parents:
73
diff
changeset
|
126 color: white; |
ee0a4597c067
Added a really basic error log that gets populated when the wrong username/pass is entered. Also, the username/password prompt for login now emphasizes the fact that it is a bugzilla login.
Atul Varma <avarma@mozilla.com>
parents:
73
diff
changeset
|
127 } |
ee0a4597c067
Added a really basic error log that gets populated when the wrong username/pass is entered. Also, the username/password prompt for login now emphasizes the fact that it is a bugzilla login.
Atul Varma <avarma@mozilla.com>
parents:
73
diff
changeset
|
128 |
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
|
129 .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
|
130 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
|
131 } |
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
|
132 |
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
|
133 .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
|
134 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
|
135 } |
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
|
136 |
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
|
137 .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
|
138 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
|
139 } |
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
|
140 |
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
|
141 .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
|
142 /* 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
|
143 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
|
144 } |
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
|
145 |
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
|
146 .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
|
147 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
|
148 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
|
149 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
|
150 } |
38 | 151 |
152 .dialog { | |
49
808687cab9c0
changed .dialog class from absolute to fixed positioning.
Atul Varma <avarma@mozilla.com>
parents:
48
diff
changeset
|
153 position: fixed; |
38 | 154 top: 0px; |
155 left: 0px; | |
40 | 156 width: 100%; |
38 | 157 } |
158 | |
159 .dialog .content { | |
39 | 160 line-height: 1.5em; |
38 | 161 color: white; |
162 background: rgba(0, 0, 0, 0.75); | |
163 padding: 2em; | |
40 | 164 width: 40em; |
38 | 165 margin: 10em auto; |
166 } | |
39 | 167 |
168 .dialog input { | |
169 border: 1px solid black; | |
170 background: #e0e0e0; | |
171 outline: none; | |
46
1531c2a29e87
increased padding of form widgets
Atul Varma <avarma@mozilla.com>
parents:
45
diff
changeset
|
172 padding: 0.5em; |
39 | 173 font-family: Helvetica Neue, Arial, sans-serif; |
61 | 174 width: 25em; |
39 | 175 } |
176 | |
70
fbaf7857e7c3
made submit buttons auto-width
Atul Varma <avarma@mozilla.com>
parents:
61
diff
changeset
|
177 .dialog input[type=submit] { |
fbaf7857e7c3
made submit buttons auto-width
Atul Varma <avarma@mozilla.com>
parents:
61
diff
changeset
|
178 width: auto; |
fbaf7857e7c3
made submit buttons auto-width
Atul Varma <avarma@mozilla.com>
parents:
61
diff
changeset
|
179 } |
fbaf7857e7c3
made submit buttons auto-width
Atul Varma <avarma@mozilla.com>
parents:
61
diff
changeset
|
180 |
39 | 181 .dialog input:hover { |
182 background: white; | |
183 } | |
184 | |
60
07d3d1560b93
added find a user functionality
Atul Varma <avarma@mozilla.com>
parents:
49
diff
changeset
|
185 .dialog input:focus { |
07d3d1560b93
added find a user functionality
Atul Varma <avarma@mozilla.com>
parents:
49
diff
changeset
|
186 background: white; |
07d3d1560b93
added find a user functionality
Atul Varma <avarma@mozilla.com>
parents:
49
diff
changeset
|
187 } |
07d3d1560b93
added find a user functionality
Atul Varma <avarma@mozilla.com>
parents:
49
diff
changeset
|
188 |
07d3d1560b93
added find a user functionality
Atul Varma <avarma@mozilla.com>
parents:
49
diff
changeset
|
189 .dialog input.ui-autocomplete-loading { |
07d3d1560b93
added find a user functionality
Atul Varma <avarma@mozilla.com>
parents:
49
diff
changeset
|
190 background-image: url('images/ajax-loader.gif'); |
07d3d1560b93
added find a user functionality
Atul Varma <avarma@mozilla.com>
parents:
49
diff
changeset
|
191 background-repeat: no-repeat; |
07d3d1560b93
added find a user functionality
Atul Varma <avarma@mozilla.com>
parents:
49
diff
changeset
|
192 background-position: 95% 35%; |
07d3d1560b93
added find a user functionality
Atul Varma <avarma@mozilla.com>
parents:
49
diff
changeset
|
193 } |
07d3d1560b93
added find a user functionality
Atul Varma <avarma@mozilla.com>
parents:
49
diff
changeset
|
194 |
40 | 195 .dialog input[type=submit] { |
39 | 196 cursor: pointer; |
197 } | |
198 | |
199 .dialog table { | |
200 margin-left: 0; | |
201 } | |
45
72d01c7d5258
added hide-while-loading class
Atul Varma <avarma@mozilla.com>
parents:
44
diff
changeset
|
202 |
72d01c7d5258
added hide-while-loading class
Atul Varma <avarma@mozilla.com>
parents:
44
diff
changeset
|
203 .hide-while-loading { |
72d01c7d5258
added hide-while-loading class
Atul Varma <avarma@mozilla.com>
parents:
44
diff
changeset
|
204 display: none; |
72d01c7d5258
added hide-while-loading class
Atul Varma <avarma@mozilla.com>
parents:
44
diff
changeset
|
205 } |
73
1cd66cabe153
Added a 'more...' link at the bottom of columns that have more than 10 bugs.
Atul Varma <avarma@mozilla.com>
parents:
70
diff
changeset
|
206 |
1cd66cabe153
Added a 'more...' link at the bottom of columns that have more than 10 bugs.
Atul Varma <avarma@mozilla.com>
parents:
70
diff
changeset
|
207 div.more-link { |
1cd66cabe153
Added a 'more...' link at the bottom of columns that have more than 10 bugs.
Atul Varma <avarma@mozilla.com>
parents:
70
diff
changeset
|
208 padding: 0.5em; |
1cd66cabe153
Added a 'more...' link at the bottom of columns that have more than 10 bugs.
Atul Varma <avarma@mozilla.com>
parents:
70
diff
changeset
|
209 color: gray; |
1cd66cabe153
Added a 'more...' link at the bottom of columns that have more than 10 bugs.
Atul Varma <avarma@mozilla.com>
parents:
70
diff
changeset
|
210 cursor: pointer; |
1cd66cabe153
Added a 'more...' link at the bottom of columns that have more than 10 bugs.
Atul Varma <avarma@mozilla.com>
parents:
70
diff
changeset
|
211 } |
1cd66cabe153
Added a 'more...' link at the bottom of columns that have more than 10 bugs.
Atul Varma <avarma@mozilla.com>
parents:
70
diff
changeset
|
212 |
1cd66cabe153
Added a 'more...' link at the bottom of columns that have more than 10 bugs.
Atul Varma <avarma@mozilla.com>
parents:
70
diff
changeset
|
213 div.more-link:hover { |
1cd66cabe153
Added a 'more...' link at the bottom of columns that have more than 10 bugs.
Atul Varma <avarma@mozilla.com>
parents:
70
diff
changeset
|
214 background: #f0f0f0; |
1cd66cabe153
Added a 'more...' link at the bottom of columns that have more than 10 bugs.
Atul Varma <avarma@mozilla.com>
parents:
70
diff
changeset
|
215 } |