2 Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
3 This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
4 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
5 The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
6 Code distributed by Google as part of the polymer project is also
7 subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
11 display: inline-block
;
16 padding: 16px 24px 12px;
17 box-sizing: border-box
;
18 -moz-box-sizing: border-box
;
19 box-shadow: 0 2px 5px 0 rgba
(0, 0, 0, 0.26);
39 :host
(.core-transition
.dragging
) {
43 :host
(.core-transition
.fade-out-down
),
44 :host
(.core-transition
.fade-out-up
),
45 :host
(.core-transition
.fade-out-right
),
46 :host
(.core-transition
.fade-out-left
) {
48 transition: -webkit-transform
0.08s ease-in-out
, opacity
0.08s ease-in-out
;
49 transition: transform
0.08s ease-in-out
, opacity
0.08s ease-in-out
;
52 :host
(.core-transition
.fade-out-down
) {
53 -webkit-transform: translate
(0, 100%);
54 transform: translate
(0, 100%);
57 :host
(.core-transition
.fade-out-up
) {
58 -webkit-transform: translate
(0, -100%);
59 transform: translate
(0, -100%);
62 :host
(.core-transition
.fade-out-right
) {
63 -webkit-transform: translate
(100%, 0);
64 transform: translate
(100%, 0);
67 :host
(.core-transition
.fade-out-left
) {
68 -webkit-transform: translate
(-100%, 0);
69 transform: translate
(-100%, 0);
79 text-transform: uppercase
;