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

Side by Side Diff: third_party/polymer/components-chromium/paper-tabs/paper-tab.html

Issue 592593002: Inline scripts were extracted from Polymer elements. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: s/echo ""/echo/ Created 6 years, 2 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!--
2 Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
3 This code may only be used under the BSD style license found at http://polymer.g ithub.io/LICENSE.txt
4 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
5 The complete set of contributors may be found at http://polymer.github.io/CONTRI BUTORS.txt
6 Code distributed by Google as part of the polymer project is also
7 subject to an additional IP rights grant found at http://polymer.github.io/PATEN TS.txt
8 -->
9
10 <!--
11 `paper-tab` is styled to look like a tab. It should be used in conjunction with
12 `paper-tabs`.
13
14 Example:
15
16 <paper-tabs selected="0">
17 <paper-tab>TAB 1</paper-tab>
18 <paper-tab>TAB 2</paper-tab>
19 <paper-tab>TAB 3</paper-tab>
20 </paper-tabs>
21
22 Styling tab:
23
24 To change the ink color:
25
26 .pink paper-tab::shadow #ink {
27 color: #ff4081;
28 }
29
30 @group Paper Elements
31 @element paper-tab
32 @homepage github.io
33 -->
34
35 <link rel="import" href="../paper-ripple/paper-ripple.html">
36
37 <polymer-element name="paper-tab" attributes="noink" role="tab" assetpath="">
38 <template>
39
40 <link rel="stylesheet" href="paper-tab.css">
41
42 <div id="tabContainer" center-justified="" center="" horizontal="" layout="">
43
44 <div class="tab-content"><content></content></div>
45 <paper-ripple id="ink" initialopacity="0.95" opacitydecayvelocity="0.98"></p aper-ripple>
46
47 </div>
48
49 </template>
50
51 </polymer-element>
52 <script src="paper-tab-extracted.js"></script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698