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

Unified Diff: chrome/browser/resources/md_bookmarks/toast.html

Issue 2898303004: [MD Bookmarks] Add toasts. (Closed)
Patch Set: address comments Created 3 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/md_bookmarks/toast.html
diff --git a/chrome/browser/resources/md_bookmarks/toast.html b/chrome/browser/resources/md_bookmarks/toast.html
new file mode 100644
index 0000000000000000000000000000000000000000..de35c06f4bbeebc97603455e57f732409305908c
--- /dev/null
+++ b/chrome/browser/resources/md_bookmarks/toast.html
@@ -0,0 +1,35 @@
+<link rel="import" href="chrome://resources/html/polymer.html">
+
+<dom-module id="bookmarks-toast">
tsergeant 2017/06/01 08:25:00 To be honest, I don't really see the need to make
calamity 2017/06/02 05:34:22 Done.
+ <template>
+ <style>
+ :host {
+ align-items: center;
+ background-color: var(--bookmarks-toast-background-color, #323232);
tsergeant 2017/06/01 08:25:00 Relatedly, I don't think we need to have these unu
calamity 2017/06/02 05:34:22 Done.
+ border-radius: 4px;
+ bottom: 0;
+ box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.28);
+ box-sizing: border-box;
+ color: var(--bookmarks-toast-color, #fff);
+ display: flex;
+ margin: 24px;
+ max-width: 568px;
+ min-height: 52px;
+ min-width: 288px;
+ opacity: 0;
+ padding: 0 24px;
+ position: fixed;
+ transform: translateY(100px);
+ transition: transform 300ms, opacity 300ms;
+ white-space: nowrap;
+ }
+
+ :host([open]) {
+ opacity: 1;
+ transform: translateY(0);
+ }
+ </style>
+ <slot></slot>
+ </template>
+ <script src="chrome://bookmarks/toast.js"></script>
+</dom-module>

Powered by Google App Engine
This is Rietveld 408576698