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

Unified Diff: bower_components/core-icons/demo.html

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
« no previous file with comments | « bower_components/core-icons/core-icons.html ('k') | bower_components/core-icons/device-icons.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bower_components/core-icons/demo.html
diff --git a/bower_components/core-icons/demo.html b/bower_components/core-icons/demo.html
deleted file mode 100644
index ea91b453c50ffe64f720b268bd73aca45678cd6b..0000000000000000000000000000000000000000
--- a/bower_components/core-icons/demo.html
+++ /dev/null
@@ -1,96 +0,0 @@
-<!doctype html>
-<!--
-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.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>
-
- <title>core-icons</title>
- <script src="../platform/platform.js"></script>
- <!-- load default set -->
- <link rel="import" href="core-icons.html">
- <!-- load the rest -->
- <link rel="import" href="av-icons.html">
- <link rel="import" href="communication-icons.html">
- <link rel="import" href="device-icons.html">
- <link rel="import" href="editor-icons.html">
- <link rel="import" href="hardware-icons.html">
- <link rel="import" href="image-icons.html">
- <link rel="import" href="maps-icons.html">
- <link rel="import" href="notification-icons.html">
- <link rel="import" href="social-icons.html">
- <style>
- body {
- font-family: 'Helvetica Neue', Helvetica, Arial;
- }
-
- h2 {
- text-transform: capitalize;
- }
-
- core-icon {
- transition: all 0.2s;
- -webkit-transition: all 0.2s;
- }
-
- core-icon:hover {
- fill: #fb8c00;
- }
-
- .set {
- padding: 1em 0;
- border-bottom: 1px solid silver;
- }
-
- .set:nth-of-type(4n-3) {
- color: #656565;
- }
-
- .set:nth-of-type(4n-2) {
- color: #FDD835;
- }
-
- .set:nth-of-type(4n-1) {
- color: #0D904F;
- }
-
- .set:nth-of-type(4n) {
- color: #3B78E7;
- }
-
- .container {
- min-width: 10em;
- padding: 1em;
- }
-
- .container > div {
- color: black;
- }
- </style>
-</head>
-<body unresolved>
-
- <template is="auto-binding">
- <template repeat="{{iconset in $.meta.metaArray}}">
- <h2>{{iconset.id}}</h2>
- <h5>{{iconset.id === 'icons' ? 'The Default Set' : 'Import ' + iconset.id + '-icons.html'}}</h5>
- <div class="set" horizontal wrap justified layout>
- <template repeat="{{ icon in iconset.iconNames }}">
- <span class="container" vertical center layout>
- <core-icon icon="{{ iconset.id }}:{{ icon }}"></core-icon>
- <div>{{ icon }}</div>
- </span>
- </template>
- </div>
- </template>
- <core-iconset id="meta"></core-iconset>
- </template>
-
-</body>
-</html>
« no previous file with comments | « bower_components/core-icons/core-icons.html ('k') | bower_components/core-icons/device-icons.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698