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

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

Issue 2948953002: MD Bookmarks: Fix spacing in the toast popup when deleting bookmarks (Closed)
Patch Set: Created 3 years, 6 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 2
3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
4 <link rel="import" href="chrome://bookmarks/shared_style.html"> 4 <link rel="import" href="chrome://bookmarks/shared_style.html">
5 5
6 <dom-module id="bookmarks-toast-manager"> 6 <dom-module id="bookmarks-toast-manager">
7 <template> 7 <template>
8 <style include="shared-style"> 8 <style include="shared-style">
9 #content { 9 #content {
10 display: flex; 10 display: flex;
11 flex: 1; 11 flex: 1;
12 margin-right: 32px; 12 margin-right: 32px;
13 overflow: hidden; 13 overflow: hidden;
14 text-overflow: ellipsis; 14 text-overflow: ellipsis;
15 white-space: nowrap; 15 white-space: nowrap;
16 } 16 }
17 17
18 paper-button { 18 paper-button {
19 color: var(--google-blue-300); 19 color: var(--google-blue-300);
20 font-weight: 500; 20 font-weight: 500;
21 height: 32px; 21 height: 32px;
22 margin: 0; 22 margin: 0;
23 min-width: 52px; 23 min-width: 52px;
24 padding: 8px; 24 padding: 8px;
25 } 25 }
26 26
27 .collapsible { 27 .collapsible {
28 flex: 1;
29 overflow: hidden; 28 overflow: hidden;
30 text-overflow: ellipsis; 29 text-overflow: ellipsis;
31 } 30 }
32 31
33 span { 32 span {
34 white-space: pre; 33 white-space: pre;
35 } 34 }
36 35
37 #toast { 36 #toast {
38 align-items: center; 37 align-items: center;
(...skipping 23 matching lines...) Expand all
62 </style> 61 </style>
63 <div id="toast" aria-live="polite"> 62 <div id="toast" aria-live="polite">
64 <div id="content"></div> 63 <div id="content"></div>
65 <paper-button id="button" hidden$="[[!showUndo_]]" on-tap="onUndoTap_"> 64 <paper-button id="button" hidden$="[[!showUndo_]]" on-tap="onUndoTap_">
66 $i18n{undo} 65 $i18n{undo}
67 </paper-button> 66 </paper-button>
68 </div> 67 </div>
69 </template> 68 </template>
70 <script src="chrome://bookmarks/toast_manager.js"></script> 69 <script src="chrome://bookmarks/toast_manager.js"></script>
71 </dom-module> 70 </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