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

Unified Diff: bower_components/core-icon-button/core-icon-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/core-icon-button/core-icon-button.css
diff --git a/bower_components/core-icon-button/core-icon-button.css b/bower_components/core-icon-button/core-icon-button.css
deleted file mode 100644
index 60202c36465461a425259bcc45bcb012fcc26e9b..0000000000000000000000000000000000000000
--- a/bower_components/core-icon-button/core-icon-button.css
+++ /dev/null
@@ -1,75 +0,0 @@
-/*
-Copyright (c) 2014 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
-The complete set of authors may be found at http://polymer.github.io/AUTHORS
-The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS
-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
-*/
-
-:host {
- display: inline-block;
- box-sizing: border-box;
- -moz-box-sizing: border-box;
- user-select: none;
- -moz-user-select: none;
- -webkit-user-select: none;
- border-radius: 2px;
- padding: 7px;
- margin: 2px;
- vertical-align: middle;
- font-size: 1rem;
- cursor: pointer;
-}
-
-:host([disabled]) {
- opacity: 0.6;
- pointer-events: none;
-}
-
-:host(.outline) {
- box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
-}
-
-:host(:hover:not([disabled])) {
- box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.1);
-}
-
-:host(.selected:not([disabled])) {
- background-color: rgba(0, 0, 0, 0.05);
- box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.12);
-}
-
-:host(:active:not([disabled]), .selected:active:not([disabled])) {
- background-color: rgba(0, 0, 0, 0.05);
- box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.12);
-}
-
-:host(.core-dark-theme.outline) {
- background-color: rgba(200, 200, 200, 0.05);
- box-shadow: 0 0 0 1px rgba(200, 200, 200, 0.1);
-}
-
-:host(.core-dark-theme:hover) {
- background-color: rgba(200, 200, 200, 0.05);
- box-shadow: 0 1px 0 0 rgba(200, 200, 200, 0.12), 0 0 0 1px rgba(200, 200, 200, 0.1);
-}
-
-:host(.core-dark-theme.selected) {
- background-color: rgba(220, 220, 220, 0.05);
- box-shadow: inset 0 1px 0 0 rgba(200, 200, 200, 0.05), 0 0 0 1px rgba(200, 200, 200, 0.12);
-}
-
-:host(.core-dark-theme:active, .core-dark-theme.selected:active) {
- background-color: rgba(200, 200, 200, 0.05);
- box-shadow: inset 0 1px 0 0 rgba(200, 200, 200, 0.1), 0 0 0 1px rgba(200, 200, 200, 0.12);
-}
-
-core-icon {
- pointer-events: none;
-}
-
-/* note: this is a polyfill aware selector */
-:host ::content > :not(core-icon) {
- margin-left: 4px;
-}
« no previous file with comments | « bower_components/core-icon-button/bower.json ('k') | bower_components/core-icon-button/core-icon-button.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698