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

Side by Side Diff: chrome/browser/resources/md_history/history_list.html

Issue 2169433003: MD History: remove underline/bgcolor change on :hover (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/md_history/shared_style.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <link rel="import" href="chrome://resources/html/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-list/iron-list.htm l"> 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-list/iron-list.htm l">
3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-scroll-threshold/i ron-scroll-threshold.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-scroll-threshold/i ron-scroll-threshold.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-item/paper-item.h tml"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-item/paper-item.h tml">
5 <link rel="import" href="chrome://resources/cr_elements/cr_shared_menu/cr_shared _menu.html"> 5 <link rel="import" href="chrome://resources/cr_elements/cr_shared_menu/cr_shared _menu.html">
6 <link rel="import" href="chrome://history/browser_service.html"> 6 <link rel="import" href="chrome://history/browser_service.html">
7 <link rel="import" href="chrome://history/constants.html"> 7 <link rel="import" href="chrome://history/constants.html">
8 <link rel="import" href="chrome://history/history_item.html"> 8 <link rel="import" href="chrome://history/history_item.html">
9 <link rel="import" href="chrome://history/shared_style.html"> 9 <link rel="import" href="chrome://history/shared_style.html">
10 10
11 <dom-module id="history-list"> 11 <dom-module id="history-list">
12 <template> 12 <template>
13 <style include="shared-style"> 13 <style include="shared-style">
14 :host { 14 :host {
15 display: block; 15 display: block;
16 } 16 }
17 17
18 #infinite-list { 18 #infinite-list {
19 height: 100%; 19 height: 100%;
20 } 20 }
21 21
22 paper-item { 22 paper-item {
23 -webkit-user-select: none; 23 -webkit-user-select: none;
24 cursor: pointer; 24 cursor: pointer;
25 font: inherit; 25 font: inherit;
26 white-space: nowrap; 26 white-space: nowrap;
27 } 27 }
28 28
29 paper-item:hover {
tsergeant 2016/07/21 07:12:17 You lost a race with calamity, you'll need to reba
Dan Beam 2016/07/21 21:45:14 Done.
30 background: #eaeaea;
31 }
32
33 history-item { 29 history-item {
34 --history-item-padding-side: var(--card-padding-side); 30 --history-item-padding-side: var(--card-padding-side);
35 } 31 }
36 </style> 32 </style>
37 <div id="no-results" class="centered-message" 33 <div id="no-results" class="centered-message"
38 hidden$="[[hasResults(historyData_.length)]]"> 34 hidden$="[[hasResults(historyData_.length)]]">
39 {{noResultsMessage_(searchedTerm, querying)}} 35 {{noResultsMessage_(searchedTerm, querying)}}
40 </div> 36 </div>
41 <iron-list items="{{historyData_}}" as="item" id="infinite-list" 37 <iron-list items="{{historyData_}}" as="item" id="infinite-list"
42 hidden$="[[!hasResults(historyData_.length)]]"> 38 hidden$="[[!hasResults(historyData_.length)]]">
(...skipping 17 matching lines...) Expand all
60 <paper-item id="menuMoreButton" on-tap="onMoreFromSiteTap_"> 56 <paper-item id="menuMoreButton" on-tap="onMoreFromSiteTap_">
61 $i18n{moreFromSite} 57 $i18n{moreFromSite}
62 </paper-item> 58 </paper-item>
63 <paper-item id="menuRemoveButton" on-tap="onRemoveFromHistoryTap_"> 59 <paper-item id="menuRemoveButton" on-tap="onRemoveFromHistoryTap_">
64 $i18n{removeFromHistory} 60 $i18n{removeFromHistory}
65 </paper-item> 61 </paper-item>
66 </cr-shared-menu> 62 </cr-shared-menu>
67 </template> 63 </template>
68 <script src="chrome://history/history_list.js"></script> 64 <script src="chrome://history/history_list.js"></script>
69 </dom-module> 65 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/md_history/shared_style.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698