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

Side by Side Diff: appengine/findit/templates/build_failure.html

Issue 2015543003: [Findit] Fix the problem that it's only partially working for triage buttons. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Created 4 years, 7 months 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <head> 2 <head>
3 <title>Build Failure</title> 3 <title>Build Failure</title>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <link rel="stylesheet" href="/common.css"> 5 <link rel="stylesheet" href="/common.css">
6 <style> 6 <style>
7 .running { 7 .running {
8 color: #666666; 8 color: #666666;
9 background-color: #fffc6c; 9 background-color: #fffc6c;
10 border-color: #c5c56d; 10 border-color: #c5c56d;
11 } 11 }
12 .completed { 12 .completed {
13 color: #ffffff; 13 color: #ffffff;
14 background-color: #8fdf5f; 14 background-color: #8fdf5f;
15 border-color: #4f8530; 15 border-color: #4f8530;
16 } 16 }
17 .error { 17 .error {
18 color: #ffffff; 18 color: #ffffff;
19 background-color: #e98080; 19 background-color: #e98080;
20 border-color: #a77272; 20 border-color: #a77272;
21 } 21 }
22 .thumbs-up-down { 22 .thumbs-up-down {
23 border-radius: 7px; 23 border-radius: 7px;
24 display: inline-block; 24 display: inline-block;
25 height: 28px;
26 } 25 }
27 .triage, .triaged { 26 .triage, .triaged {
28 display: block; 27 display: block;
29 float: left; 28 float: left;
30 vertical-align: middle; 29 vertical-align: middle;
31 } 30 }
32 .triage { 31 .triage {
33 background-color: #e5e5e5; 32 background-color: #e5e5e5;
34 cursor: pointer; 33 cursor: pointer;
35 } 34 }
(...skipping 18 matching lines...) Expand all
54 } 53 }
55 .thumb-up:hover, .thumb-up.triaged { 54 .thumb-up:hover, .thumb-up.triaged {
56 background-color: #8fdf5f; 55 background-color: #8fdf5f;
57 } 56 }
58 .thumb-down:hover, .thumb-down.triaged { 57 .thumb-down:hover, .thumb-down.triaged {
59 background-color: #e98080; 58 background-color: #e98080;
60 } 59 }
61 .not-display, .hidden-row { 60 .not-display, .hidden-row {
62 display: none; 61 display: none;
63 } 62 }
64 .displayed-row {
65 display: table-row;
66 background: #E0E0E0;
67 }
68 .toggle-img {
69 vertical-align: middle;
70 }
71 .header-test {
72 background-color:#E0E0E0;
73 }
74 .valign-middle {
75 vertical-align: middle;
76 }
77 .truncate { 63 .truncate {
78 width: 500px; 64 width: 500px;
79 white-space: nowrap; 65 white-space: nowrap;
80 overflow: hidden; 66 overflow: hidden;
81 text-overflow: ellipsis; 67 text-overflow: ellipsis;
82 } 68 }
83 </style> 69 </style>
84 <link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1. 11.1/themes/smoothness/jquery-ui.css"> 70 <link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1. 11.1/themes/smoothness/jquery-ui.css">
85 <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js "></script> 71 <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js "></script>
86 <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.1/jquery-ui.m in.js"></script> 72 <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.1/jquery-ui.m in.js"></script>
(...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after
548 appearing in the failure log. (eg: file.h was changed and 534 appearing in the failure log. (eg: file.h was changed and
549 file_unittest.cc or file_impl.cc appeared in the log.)</li> 535 file_unittest.cc or file_impl.cc appeared in the log.)</li>
550 <li>1: The CL rolled a dependency within src/DEPS and a file of that 536 <li>1: The CL rolled a dependency within src/DEPS and a file of that
551 dependency appears in the failure log. (eg: third_party/dep 537 dependency appears in the failure log. (eg: third_party/dep
552 was changed in src/DEPS and third_party/dep/f.cpp appeared 538 was changed in src/DEPS and third_party/dep/f.cpp appeared
553 in the log.)</li> 539 in the log.)</li>
554 </ul> 540 </ul>
555 (More rules will be added when implemented.) 541 (More rules will be added when implemented.)
556 </div> 542 </div>
557 </body> 543 </body>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698