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

Side by Side Diff: chrome/browser/resources/md_bookmarks/item.html

Issue 2747833003: MD Bookmarks: Show pointer cursor on entire bookmark item. (Closed)
Patch Set: Created 3 years, 9 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 | no next file » | 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/cr_elements/icons.html"> 2 <link rel="import" href="chrome://resources/cr_elements/icons.html">
3 <link rel="import" href="chrome://resources/html/icon.html"> 3 <link rel="import" href="chrome://resources/html/icon.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l">
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html">
6 <link rel="import" href="chrome://bookmarks/actions.html"> 6 <link rel="import" href="chrome://bookmarks/actions.html">
7 <link rel="import" href="chrome://bookmarks/shared_style.html"> 7 <link rel="import" href="chrome://bookmarks/shared_style.html">
8 <link rel="import" href="chrome://bookmarks/store_client.html"> 8 <link rel="import" href="chrome://bookmarks/store_client.html">
9 9
10 <dom-module id="bookmarks-item"> 10 <dom-module id="bookmarks-item">
11 <template> 11 <template>
12 <style include="shared-style"> 12 <style include="shared-style">
13 :host { 13 :host {
14 -webkit-padding-start: 20px; 14 -webkit-padding-start: 20px;
15 -webkit-user-select: none; 15 -webkit-user-select: none;
16 align-items: center; 16 align-items: center;
17 cursor: pointer;
17 display: flex; 18 display: flex;
18 flex-direction: row; 19 flex-direction: row;
19 height: 40px; 20 height: 40px;
20 } 21 }
21 22
22 :host([is-selected-item_]) { 23 :host([is-selected-item_]) {
23 background-color: rgb(225, 235, 253); 24 background-color: rgb(225, 235, 253);
24 } 25 }
25 26
26 #website-title { 27 #website-title {
27 color: var(--primary-text-color); 28 color: var(--primary-text-color);
28 cursor: pointer;
29 flex: 1; 29 flex: 1;
30 overflow: hidden; 30 overflow: hidden;
31 text-decoration: none; 31 text-decoration: none;
32 text-overflow: ellipsis; 32 text-overflow: ellipsis;
33 white-space: nowrap; 33 white-space: nowrap;
34 } 34 }
35 35
36 #icon { 36 #icon {
37 background-repeat: no-repeat; 37 background-repeat: no-repeat;
38 height: 16px; 38 height: 16px;
(...skipping 27 matching lines...) Expand all
66 </div> 66 </div>
67 <button is="paper-icon-button-light" class="more-vert-button" 67 <button is="paper-icon-button-light" class="more-vert-button"
68 on-click="onMenuButtonOpenClick_"> 68 on-click="onMenuButtonOpenClick_">
69 <div></div> 69 <div></div>
70 <div></div> 70 <div></div>
71 <div></div> 71 <div></div>
72 </button> 72 </button>
73 </template> 73 </template>
74 <script src="chrome://bookmarks/item.js"></script> 74 <script src="chrome://bookmarks/item.js"></script>
75 <dom-module> 75 <dom-module>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698