| Index: dashboard/dashboard/templates/bad_bisect.html
|
| diff --git a/dashboard/dashboard/templates/bad_bisect.html b/dashboard/dashboard/templates/bad_bisect.html
|
| index 3c52ea330d30d13a8893060dde74df6b88b91894..9041f45a3d2d90a762a498f24e27b9dcb3f7d2c8 100644
|
| --- a/dashboard/dashboard/templates/bad_bisect.html
|
| +++ b/dashboard/dashboard/templates/bad_bisect.html
|
| @@ -2,23 +2,26 @@
|
| <html>
|
| <head>
|
| <link type="text/css" rel="stylesheet" href="/dashboard/static/base.css">
|
| + <link rel="import" href="/components/paper-button/paper-button.html">
|
| <link rel="import" href="/dashboard/elements/nav-bar.html">
|
| - <link rel="import" href="/dashboard/elements/primary-button.html">
|
| <style>
|
| a {
|
| text-decoration: none;
|
| }
|
| + paper-button {
|
| + background: #4285f4;
|
| + color: #fff;
|
| + }
|
| </style>
|
| </head>
|
| <body>
|
| <nav-bar></nav-bar>
|
|
|
| - <form action="/bad_bisect" method="POST">
|
| + <form action="/bad_bisect" id="bisect_form" method="POST">
|
| {{xsrf_input|safe}}
|
| <input type="hidden" name="try_job_id" value="{{try_job_id}}">
|
| <p>
|
| - <button class="mini" type="submit" is="primary-button">
|
| - Confirm</button>
|
| + <paper-button onclick="document.getElementById('bisect_form').submit()">Confirm</paper-button>
|
| that bisect job <a href="#">{{try_job_id}}</a> is incorrect.
|
| </p>
|
| </form>
|
|
|