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

Unified Diff: third_party/polymer/v0_8/components-chromium/paper-toast/paper-toast.html

Issue 1162563004: Upgrade to 1.0 and switch clients to dom-repeat where needed. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix a layout import and remove the gzipped webanimation in reproduce.sh Created 5 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: third_party/polymer/v0_8/components-chromium/paper-toast/paper-toast.html
diff --git a/third_party/polymer/v0_8/components-chromium/paper-toast/paper-toast.html b/third_party/polymer/v0_8/components-chromium/paper-toast/paper-toast.html
new file mode 100644
index 0000000000000000000000000000000000000000..4c2e9c6d512b67058ca79a1c2e99588ff157a121
--- /dev/null
+++ b/third_party/polymer/v0_8/components-chromium/paper-toast/paper-toast.html
@@ -0,0 +1,73 @@
+<!--
+@license
+Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
+This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
+The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
+The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
+Code distributed by Google as part of the polymer project is also
+subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
+--><html><head><link rel="import" href="../polymer/polymer.html">
+<link rel="import" href="../paper-styles/typography.html">
+<link rel="import" href="../iron-a11y-announcer/iron-a11y-announcer.html">
+
+<!--
+`paper-toast` provides a subtle notification toast.
+
+@group Paper Elements
+@element paper-toast
+@demo demo/index.html
+@hero hero.svg
+-->
+</head><body><dom-module id="paper-toast">
+ <style>
+ :host {
+ display: inline-block;
+ position: fixed;
+
+ background: #323232;
+ color: #f1f1f1;
+ min-height: 48px;
+ min-width: 288px;
+ padding: 16px 24px 12px;
+ box-sizing: border-box;
+ box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
+ border-radius: 2px;
+ bottom: 12px;
+ left: 12px;
+ font-size: 14px;
+ cursor: default;
+
+ -webkit-transition: visibility 0.3s, -webkit-transform 0.3s;
+ transition: visibility 0.3s, transform 0.3s;
+
+ -webkit-transform: translateY(100px);
+ transform: translateY(100px);
+
+ visibility: hidden;
+ }
+
+ :host(.capsule) {
+ border-radius: 24px;
+ }
+
+ :host(.fit-bottom) {
+ bottom: 0;
+ left: 0;
+ width: 100%;
+ min-width: 0;
+ border-radius: 0;
+ }
+
+ :host(.paper-toast-open){
+ visibility: visible;
+
+ -webkit-transform: translateY(0px);
+ transform: translateY(0px);
+ }
+ </style>
+ <template>
+ <span id="label">{{text}}</span>
+ <content></content>
+ </template>
+</dom-module>
+<script src="paper-toast-extracted.js"></script></body></html>

Powered by Google App Engine
This is Rietveld 408576698