| 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>
|
|
|