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

Unified Diff: chrome/browser/resources/engagement/site_engagement.html

Issue 2808663002: Add base and bonus scores to site-engagement WebUI. (Closed)
Patch Set: Created 3 years, 8 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: chrome/browser/resources/engagement/site_engagement.html
diff --git a/chrome/browser/resources/engagement/site_engagement.html b/chrome/browser/resources/engagement/site_engagement.html
index 9a7f960ddde6da6a86735a582f428cd2f4f9b4b0..7e2518f9a752438e912d47de4f1f2ed85adcb406 100644
--- a/chrome/browser/resources/engagement/site_engagement.html
+++ b/chrome/browser/resources/engagement/site_engagement.html
@@ -44,12 +44,14 @@
min-width: 500px;
}
- .score-cell {
+ .base-score-cell,
+ .bonus-score-cell,
+ .total-score-cell {
background-color: rgba(230, 230, 230, 0.5);
text-align: right;
}
- .score-input {
+ .base-score-input {
border: 1px solid #ccc;
border-radius: 2px;
text-align: right;
@@ -83,8 +85,14 @@
<th sort-key="origin">
Origin
</th>
+ <th sort-key="base_score" class="sort-column" sort-reverse>
+ Base
+ </th>
+ <th sort-key="bonus_score" class="sort-column" sort-reverse>
+ Bonus
+ </th>
<th sort-key="total_score" class="sort-column" sort-reverse>
- Points
+ Total
</th>
</tr>
</thead>

Powered by Google App Engine
This is Rietveld 408576698