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

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: Fix tests 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..2bac3449832ceeed5ab7aa1126e269bdbe5a7879 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%;
@@ -24,13 +25,6 @@
#dialog .body {
white-space: pre-wrap;
}
-
- paper-item {
- -webkit-user-select: none;
- cursor: pointer;
- font: inherit;
- white-space: nowrap;
- }
</style>
<iron-pages id="content" attr-for-selected="id"
selected="[[selectedPage_]]">
@@ -61,10 +55,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>
« no previous file with comments | « chrome/browser/resources/md_history/compiled_resources2.gyp ('k') | chrome/browser/resources/md_history/shared_style.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698