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

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

Issue 2948943002: MD Bookmarks: Add full support for cut/copy/paste keyboard shortcuts (Closed)
Patch Set: Review comments Created 3 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
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;
13 overflow: hidden; 12 overflow: hidden;
14 text-overflow: ellipsis; 13 text-overflow: ellipsis;
15 white-space: nowrap; 14 white-space: nowrap;
16 } 15 }
17 16
18 paper-button { 17 paper-button {
18 -webkit-margin-end: 0;
19 -webkit-margin-start: 32px;
19 color: var(--google-blue-300); 20 color: var(--google-blue-300);
20 font-weight: 500; 21 font-weight: 500;
21 height: 32px; 22 height: 32px;
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 overflow: hidden; 28 overflow: hidden;
29 text-overflow: ellipsis; 29 text-overflow: ellipsis;
30 } 30 }
31 31
32 span { 32 span {
(...skipping 28 matching lines...) Expand all
61 </style> 61 </style>
62 <div id="toast" aria-live="polite"> 62 <div id="toast" aria-live="polite">
63 <div id="content"></div> 63 <div id="content"></div>
64 <paper-button id="button" hidden$="[[!showUndo_]]" on-tap="onUndoTap_"> 64 <paper-button id="button" hidden$="[[!showUndo_]]" on-tap="onUndoTap_">
65 $i18n{undo} 65 $i18n{undo}
66 </paper-button> 66 </paper-button>
67 </div> 67 </div>
68 </template> 68 </template>
69 <script src="chrome://bookmarks/toast_manager.js"></script> 69 <script src="chrome://bookmarks/toast_manager.js"></script>
70 </dom-module> 70 </dom-module>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_bookmarks/constants.js ('k') | chrome/browser/ui/webui/md_bookmarks/md_bookmarks_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698