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

Unified Diff: third_party/polymer/components/paper-tabs/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/paper-tabs/demo.html
diff --git a/third_party/polymer/components/paper-tabs/demo.html b/third_party/polymer/components/paper-tabs/demo.html
deleted file mode 100644
index 3067fe793730f51d451fae208eb6ae79ee696980..0000000000000000000000000000000000000000
--- a/third_party/polymer/components/paper-tabs/demo.html
+++ /dev/null
@@ -1,157 +0,0 @@
-<!doctype html>
-<html>
-<head>
- <title>paper-tabs</title>
- <meta name="viewport" content="width=device-width; initial-scale=1.0; max-scale=1.0; user-scalable=yes">
- <script src="../platform/platform.js"></script>
-
- <link rel="import" href="../core-icons/core-icons.html">
- <link rel="import" href="paper-tabs.html">
- <link rel="import" href="../core-toolbar/core-toolbar.html">
- <link rel="import" href="../paper-icon-button/paper-icon-button.html">
- <link rel="import" href="../font-roboto/roboto.html">
-
- <style shim-shadowdom>
-
- body {
- font-family: RobotoDraft, 'Helvetica Neue', Helvetica, Arial;
- margin: 0;
- padding: 24px;
- color: #333;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- -webkit-tap-highlight-color: rgba(0,0,0,0);
- -webkit-touch-callout: none;
- }
-
- paper-tabs, core-toolbar {
- background-color: #00bcd4;
- color: #fff;
- box-shadow: 0px 3px 2px rgba(0, 0, 0, 0.2);
- }
-
- core-toolbar paper-tabs {
- box-shadow: none;
- }
-
- paper-tabs[noink][nobar] paper-tab.core-selected {
- color: #ffff8d;
- }
-
- paper-tabs.transparent-teal {
- background-color: transparent;
- color: #00bcd4;
- box-shadow: none;
- }
-
- paper-tabs.transparent-teal::shadow #selectionBar {
- background-color: #00bcd4;
- }
-
- paper-tabs.transparent-teal paper-tab::shadow #ink {
- color: #00bcd4;
- }
-
- h3 {
- font-size: 16px;
- font-weight: 400;
- }
-
- </style>
-
-</head>
-<body unresolved>
-
- <h3>A. No ink effect and no sliding bar</h3>
-
- <paper-tabs selected="0" noink nobar>
-
- <paper-tab>ITEM ONE</paper-tab>
- <paper-tab>ITEM TWO</paper-tab>
- <paper-tab>ITEM THREE</paper-tab>
-
- </paper-tabs>
-
- <br>
- <br>
-
- <h3>B. The bar slides to the selected tab</h3>
-
- <paper-tabs selected="0" noink>
-
- <paper-tab>ITEM ONE</paper-tab>
- <paper-tab>ITEM TWO</paper-tab>
- <paper-tab>ITEM THREE</paper-tab>
-
- </paper-tabs>
-
- <br>
- <br>
-
- <h3>C. Inky Tabs</h3>
-
- <paper-tabs selected="0">
-
- <paper-tab>ITEM ONE</paper-tab>
- <paper-tab>ITEM TWO</paper-tab>
- <paper-tab>ITEM THREE</paper-tab>
-
- </paper-tabs>
-
- <br>
- <br>
-
- <paper-tabs selected="0" class="transparent-teal">
-
- <paper-tab>ITEM ONE</paper-tab>
- <paper-tab>ITEM TWO</paper-tab>
- <paper-tab>ITEM THREE</paper-tab>
-
- </paper-tabs>
-
- <br>
- <br>
-
- <core-toolbar class="medium-tall">
-
- <paper-icon-button icon="menu"></paper-icon-button>
- <div flex>Title</div>
- <paper-icon-button icon="search"></paper-icon-button>
- <paper-icon-button icon="more-vert"></paper-icon-button>
-
- <div class="bottom fit" horizontal layout>
-
- <paper-tabs selected="0" flex style="max-width: 600px;">
-
- <paper-tab>ITEM ONE</paper-tab>
- <paper-tab>ITEM TWO</paper-tab>
- <paper-tab>ITEM THREE</paper-tab>
-
- </paper-tabs>
-
- </div>
-
- </core-toolbar>
-
- <br>
- <br>
-
- <core-toolbar class="tall">
-
- <paper-tabs selected="0" class="bottom indent" style="width: 200px;" self-end>
-
- <paper-tab>ITEM ONE</paper-tab>
- <paper-tab>ITEM TWO</paper-tab>
-
- </paper-tabs>
-
- <div class="bottom" flex></div>
-
- <paper-icon-button class="bottom" icon="search"></paper-icon-button>
-
- </core-toolbar>
-
-</body>
-</html>
« no previous file with comments | « third_party/polymer/components/paper-tabs/bower.json ('k') | third_party/polymer/components/paper-tabs/index.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698