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

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

Issue 2639893006: [MD Bookmarks] Add lines between items and no search results message. (Closed)
Patch Set: Empty list message reevaluates on searchTerm changing. Created 3 years, 11 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
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/shared_style.html"> 6 <link rel="import" href="chrome://bookmarks/shared_style.html">
7 7
8 <dom-module id="bookmarks-item"> 8 <dom-module id="bookmarks-item">
9 <template> 9 <template>
10 <style include="shared-style"> 10 <style include="shared-style">
11 :host { 11 :host {
12 -webkit-padding-start: 20px; 12 -webkit-padding-start: 20px;
13 align-items: center; 13 align-items: center;
14 display: flex; 14 display: flex;
15 flex-direction: row; 15 flex-direction: row;
16 height: 40px; 16 height: 40px;
17 } 17 }
18 18
19 :host(:not(:last-of-type)) {
20 border-bottom: 1px solid rgba(0, 0, 0, 0.06);
tsergeant 2017/01/23 04:52:54 One last little thing (sorry!) Change this to bo
angelayang 2017/01/23 05:58:39 Oh of course, thats important
21 }
22
19 #website-title { 23 #website-title {
20 color: var(--primary-text-color); 24 color: var(--primary-text-color);
21 cursor: pointer; 25 cursor: pointer;
22 flex: 1; 26 flex: 1;
23 overflow: hidden; 27 overflow: hidden;
24 text-decoration: none; 28 text-decoration: none;
25 text-overflow: ellipsis; 29 text-overflow: ellipsis;
26 white-space: nowrap; 30 white-space: nowrap;
27 } 31 }
28 32
(...skipping 30 matching lines...) Expand all
59 </div> 63 </div>
60 <button is="paper-icon-button-light" class="more-vert-button" 64 <button is="paper-icon-button-light" class="more-vert-button"
61 on-tap="onMenuButtonOpenTap_"> 65 on-tap="onMenuButtonOpenTap_">
62 <div></div> 66 <div></div>
63 <div></div> 67 <div></div>
64 <div></div> 68 <div></div>
65 </button> 69 </button>
66 </template> 70 </template>
67 <script src="chrome://bookmarks/item.js"></script> 71 <script src="chrome://bookmarks/item.js"></script>
68 <dom-module> 72 <dom-module>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_bookmarks/folder_node.js ('k') | chrome/browser/resources/md_bookmarks/item.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698