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

Unified Diff: dashboard/dashboard/templates/bad_bisect.html

Issue 2162963002: [polymer] Merge of master into polymer10-migration (Closed) Base URL: git@github.com:catapult-project/catapult.git@polymer10-migration
Patch Set: Merge polymer10-migration int polymer10-merge Created 4 years, 5 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 | « dashboard/dashboard/start_try_job_test.py ('k') | dashboard/queue.yaml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « dashboard/dashboard/start_try_job_test.py ('k') | dashboard/queue.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698