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

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

Issue 2668893002: [MD Bookmarks] Remove separator lines between list items. (Closed)
Patch Set: Created 3 years, 10 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_bookmarks/shared_vars.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/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: var(--cr-separator-line);
21 }
22
23 #website-title { 19 #website-title {
24 color: var(--primary-text-color); 20 color: var(--primary-text-color);
25 cursor: pointer; 21 cursor: pointer;
26 flex: 1; 22 flex: 1;
27 overflow: hidden; 23 overflow: hidden;
28 text-decoration: none; 24 text-decoration: none;
29 text-overflow: ellipsis; 25 text-overflow: ellipsis;
30 white-space: nowrap; 26 white-space: nowrap;
31 } 27 }
32 28
(...skipping 30 matching lines...) Expand all
63 </div> 59 </div>
64 <button is="paper-icon-button-light" class="more-vert-button" 60 <button is="paper-icon-button-light" class="more-vert-button"
65 on-tap="onMenuButtonOpenTap_"> 61 on-tap="onMenuButtonOpenTap_">
66 <div></div> 62 <div></div>
67 <div></div> 63 <div></div>
68 <div></div> 64 <div></div>
69 </button> 65 </button>
70 </template> 66 </template>
71 <script src="chrome://bookmarks/item.js"></script> 67 <script src="chrome://bookmarks/item.js"></script>
72 <dom-module> 68 <dom-module>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/md_bookmarks/shared_vars.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698