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

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: fixes 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
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..f17acf60d58b1df18c0458f01056b4dafbf86f62 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="../../../../../../../default.css" type="text/css">
mikecase (-- gone --) 2016/08/12 18:58:52 can you explain... href="../../../../../../../def
BigBossZhiling 2016/08/12 21:23:03 This took me some time to figure out. This does no
<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'))

Powered by Google App Engine
This is Rietveld 408576698