Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(383)

Side by Side Diff: appengine_apps/chromium_status/templates/current.html

Issue 778533003: Moved chromium_status to appengine/ (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <html>
2 <body marginwidth="0" marginheight="0" topmargin="0" leftmargin="6">
3 <style type="text/css">
4 a:link { color: #0000ff; }
5 a:vlink { color: #0000ff; }
6 a:alink { color: #0000ff; }
7 div.status-message {
8 margin-bottom: 1em;
9 padding: 0.5em;
10 font-weight: normal;
11 font-size: 16px;
12 font-family: Verdana, Cursor;
13 text-align: center;
14 color: black;
15 border-top-right-radius: 24px;
16 -webkit-border-top-right-radius: 24px;
17 -moz-border-radius-topright: 1em;
18 border-top-left-radius: 24px;
19 -webkit-border-top-left-radius: 24px;
20 -moz-border-radius-topleft: 1em;
21 box-shadow: 2px 2px 6px rgba(0,0,0,0.6);
22 -moz-box-shadow: 2px 2px 6px rgba(0,0,0,0.6);
23 -webkit-box-shadow: 2px 2px 6px rgba(0,0,0,0.6);
24 }
25 span.change_status {
26 float:right;
27 font-size: 10px;
28 }
29 div.open {
30 background-color: #8fdf5f;
31 }
32 div.closed {
33 background-color: #e98080;
34 }
35 div.maintenance {
36 background-color: #e0b0ff;
37 }
38 div.throttled {
39 background-color: #fffc6c;
40 }
41 </style>
42
43 <center width="100%">
44 {% if show_login %}
45 <div class="status-message maintenance">
46 <a target="_blank" href="/">Login Required</a></div>
47 {% else %}
48 <a href="/" target="_blank">
49 <div class="status-message {{ state }}">{{ message }} </div>
50 </a>
51 {% endif %}
52 </center>
53
54 </body>
55 </html>
OLDNEW
« no previous file with comments | « appengine_apps/chromium_status/templates/cq_top_score.html ('k') | appengine_apps/chromium_status/templates/main.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698