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

Unified Diff: chrome/browser/resources/md_history/list_container.html

Issue 2204833003: MD History: Add menu to cards on Synced Tabs page (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@history_improve_collapse_button
Patch Set: 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: chrome/browser/resources/md_history/list_container.html
diff --git a/chrome/browser/resources/md_history/list_container.html b/chrome/browser/resources/md_history/list_container.html
index 1d4fade43ecc296e8341570cb8d256508dccfba2..f22a0d06d0a6774cac8ca96ffea6f1439478c75a 100644
--- a/chrome/browser/resources/md_history/list_container.html
+++ b/chrome/browser/resources/md_history/list_container.html
@@ -6,10 +6,11 @@
<link rel="import" href="chrome://resources/polymer/v1_0/paper-item/paper-item.html">
<link rel="import" href="chrome://history/grouped_list.html">
<link rel="import" href="chrome://history/history_list.html">
+<link rel="import" href="chrome://history/shared_style.html">
<dom-module id="history-list-container">
<template>
- <style include="cr-shared-style">
+ <style include="shared-style cr-shared-style">
:host {
display: block;
height: 100%;
@@ -61,10 +62,12 @@
</dialog>
<cr-shared-menu id="sharedMenu">
- <paper-item id="menuMoreButton" on-tap="onMoreFromSiteTap_">
+ <paper-item id="menuMoreButton" class="menu-item"
+ on-tap="onMoreFromSiteTap_">
$i18n{moreFromSite}
</paper-item>
- <paper-item id="menuRemoveButton" on-tap="onRemoveFromHistoryTap_">
+ <paper-item id="menuRemoveButton" class="menu-item"
+ on-tap="onRemoveFromHistoryTap_">
$i18n{removeFromHistory}
</paper-item>
</cr-shared-menu>

Powered by Google App Engine
This is Rietveld 408576698