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

Unified Diff: scripts/slave/recipe_modules/chromium_android/resources/template/main.html

Issue 2224173002: Added different colors for success/failure and code search. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: fixed relative directory Created 4 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/chromium_android/resources/template/table.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/recipe_modules/chromium_android/resources/template/main.html
diff --git a/scripts/slave/recipe_modules/chromium_android/resources/template/main.html b/scripts/slave/recipe_modules/chromium_android/resources/template/main.html
index e9d0d69d7a3d9b7caec8911d4d873a06d33f47f9..327706f5d109941e86b88ac9141e71c1f5a99b84 100644
--- a/scripts/slave/recipe_modules/chromium_android/resources/template/main.html
+++ b/scripts/slave/recipe_modules/chromium_android/resources/template/main.html
@@ -1,6 +1,8 @@
<!DOCTYPE html>
<html>
<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+ <link rel="stylesheet" href="/i/{{master_name}}/default.css" type="text/css">
<style>
table, th, td {
border: 1px solid black;
@@ -15,12 +17,22 @@
table {
width: 100%;
}
- .align-center {
+ .center {
text-align: center;
}
- .algin-left {
+ .left {
text-align: left;
}
+ td a {
+ text-decoration: none;
+ }
+ td a:hover {
+ text-decoration: underline;
+ cursor: pointer;
+ }
+ tr:hover {
+ background-color: #F6F6F6;
+ }
</style>
<script type="text/javascript">
function sortByColumn(head) {
@@ -82,13 +94,15 @@
}
</script>
</head>
- <body>
- {% for tb_value in tb_values %}
- {% include 'template/table.html' %}
- <br>
- <br>
- <br>
- {% endfor %}
+ <body class="interface">
+ <div class="content">
+ {% for tb_value in tb_values %}
+ {% include 'template/table.html' %}
+ <br>
+ <br>
+ <br>
+ {% endfor %}
+ </div>
</body>
<script>
Array.prototype.slice.call(document.getElementsByTagName('th'))
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/chromium_android/resources/template/table.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698