Chromium Code Reviews| 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')) |