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

Unified Diff: third_party/polymer/components/core-icons/demo.html

Issue 592603004: Revert "Polymer elements added to third_party/polymer." (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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/components/core-icons/demo.html
diff --git a/third_party/polymer/components/core-icons/demo.html b/third_party/polymer/components/core-icons/demo.html
deleted file mode 100644
index ea91b453c50ffe64f720b268bd73aca45678cd6b..0000000000000000000000000000000000000000
--- a/third_party/polymer/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 | « third_party/polymer/components/core-icons/core-icons.html ('k') | third_party/polymer/components/core-icons/device-icons.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698