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

Unified Diff: bower_components/paper-menu-button/paper-menu-button.css

Issue 786953007: npm_modules: Fork bower_components into Polymer 0.4.0 and 0.5.0 versions (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 5 years, 11 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: bower_components/paper-menu-button/paper-menu-button.css
diff --git a/bower_components/paper-menu-button/paper-menu-button.css b/bower_components/paper-menu-button/paper-menu-button.css
deleted file mode 100644
index d17f8a912c7adea5a07c40840ddb33d2a6cfdc28..0000000000000000000000000000000000000000
--- a/bower_components/paper-menu-button/paper-menu-button.css
+++ /dev/null
@@ -1,100 +0,0 @@
-/*
-Copyright 2013 The Polymer Authors. All rights reserved.
-Use of this source code is governed by a BSD-style
-license that can be found in the LICENSE file.
-*/
-
-:host {
- display: inline-block;
- padding: 8px;
- position: relative;
- background-image: none;
- outline: none;
- user-select: none;
- -webkit-user-select: none;
- cursor: pointer;
-}
-
-:host([disabled]) {
- cursor: auto;
-}
-
-core-icon {
- position: relative;
-}
-
-core-icon::shadow svg {
- transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
- -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
- transform-origin: 50% 50%;
- -webkit-transform-origin: 50% 50%;
-}
-
-:host(:hover) core-icon::shadow svg {
- transform: scale(1.2);
- -webkit-transform: scale(1.2);
-}
-
-:host([disabled]:hover) core-icon::shadow svg {
- transform: none;
- -webkit-transform: none;
-}
-
-:host([disabled]) core-icon::shadow path {
- fill: #c9c9c9;
-}
-
-#dropdown {
- background-color: transparent;
- margin: 12px;
- color: #000;
-}
-
-#menu {
- padding-top: 8px;
- padding-bottom: 8px;
- margin: 0;
-}
-
-.paper-menu-button-overlay-ink {
- position: absolute;
- top: 0;
- left: 0;
- width: 40px;
- height: 40px;
- border-radius: 20px;
- opacity: 0;
- transform: scale(0);
- -webkit-transform: scale(0);
-}
-
-:host([halign="right"]) .paper-menu-button-overlay-ink {
- left: auto;
- right: 0;
-}
-
-:host([valign="bottom"]) .paper-menu-button-overlay-ink {
- top: auto;
- bottom: 0;
-}
-
-.paper-menu-button-overlay-bg {
- position: absolute;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- border-radius: 3px;
- opacity: 0;
- z-index: -1;
-}
-
-:host([noTransition]) .paper-menu-button-overlay-bg {
- opacity: 1;
-}
-
-.paper-menu-button-menu-container {
- overflow: auto;
- max-height: 100%;
- max-width: 100%;
-}
« no previous file with comments | « bower_components/paper-menu-button/metadata.html ('k') | bower_components/paper-menu-button/paper-menu-button.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698