Blame view

bower_components/paper-tabs/paper-tab.html 3.59 KB
73bcce88   luigser   COMPONENTS
1
2
3
4
5
6
7
8
9
10
11
  <!--
  @license
  Copyright (c) 2015 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
  -->
  
  <link rel="import" href="../polymer/polymer.html">
c5169e0e   Renato De Donato   a new hope
12
  <link rel="import" href="../iron-flex-layout/classes/iron-flex-layout.html">
a1a3bc73   Luigi Serra   graphs updates
13
  <link rel="import" href="../iron-flex-layout/iron-flex-layout.html">
c5169e0e   Renato De Donato   a new hope
14
15
16
  <link rel="import" href="../iron-behaviors/iron-control-state.html">
  <link rel="import" href="../iron-behaviors/iron-button-state.html">
  <link rel="import" href="../paper-ripple/paper-ripple.html">
73bcce88   luigser   COMPONENTS
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
  
  <!--
  `paper-tab` is styled to look like a tab.  It should be used in conjunction with
  `paper-tabs`.
  
  Example:
  
      <paper-tabs selected="0">
        <paper-tab>TAB 1</paper-tab>
        <paper-tab>TAB 2</paper-tab>
        <paper-tab>TAB 3</paper-tab>
      </paper-tabs>
  
  ### Styling
  
  The following custom properties and mixins are available for styling:
  
  Custom property | Description | Default
  ----------------|-------------|----------
  `--paper-tab-ink` | Ink color | `--paper-yellow-a100`
  `--paper-tab` | Mixin applied to the tab | `{}`
  `--paper-tab-content` | Mixin applied to the tab content | `{}`
73bcce88   luigser   COMPONENTS
39
40
41
42
  
  -->
  
  <dom-module id="paper-tab">
c5169e0e   Renato De Donato   a new hope
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
  
    <style>
  
      :host {
        @apply(--layout-inline);
        @apply(--layout-center);
        @apply(--layout-center-justified);
        @apply(--layout-flex);
  
        position: relative;
        padding: 0 12px;
        overflow: hidden;
        cursor: pointer;
  
        @apply(--paper-tab);
      }
  
      :host(:focus) {
        outline: none;
      }
  
      :host([link]) {
        padding: 0;
      }
  
      .tab-content {
        height: 100%;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        transition: opacity 0.1s cubic-bezier(0.4, 0.0, 1, 1);
  
        @apply(--paper-tab-content);
      }
  
      :host(:not(.iron-selected)) > .tab-content {
        opacity: 0.8;
      }
  
      :host(:focus) .tab-content {
        opacity: 1;
        font-weight: 700;
      }
  
      #ink {
        color: var(--paper-tab-ink, --paper-yellow-a100);
        pointer-events: none;
      }
  
      .tab-content > ::content > a {
        height: 100%;
        /* flex */
        -ms-flex: 1 1 0.000000001px;
        -webkit-flex: 1;
        flex: 1;
        -webkit-flex-basis: 0.000000001px;
        flex-basis: 0.000000001px;
      }
  
    </style>
  
73bcce88   luigser   COMPONENTS
103
    <template>
73bcce88   luigser   COMPONENTS
104
  
c5169e0e   Renato De Donato   a new hope
105
106
107
      <div class="tab-content flex-auto center-center horizontal layout">
        <content></content>
      </div>
73bcce88   luigser   COMPONENTS
108
  
c5169e0e   Renato De Donato   a new hope
109
110
111
      <template is="dom-if" if="[[!noink]]">
        <paper-ripple id="ink" initial-opacity="0.95" opacity-decay-velocity="0.98"></paper-ripple>
      </template>
73bcce88   luigser   COMPONENTS
112
  
c5169e0e   Renato De Donato   a new hope
113
    </template>
73bcce88   luigser   COMPONENTS
114
  
c5169e0e   Renato De Donato   a new hope
115
  </dom-module>
73bcce88   luigser   COMPONENTS
116
  
c5169e0e   Renato De Donato   a new hope
117
  <script>
73bcce88   luigser   COMPONENTS
118
  
c5169e0e   Renato De Donato   a new hope
119
    Polymer({
73bcce88   luigser   COMPONENTS
120
  
c5169e0e   Renato De Donato   a new hope
121
      is: 'paper-tab',
73bcce88   luigser   COMPONENTS
122
  
c5169e0e   Renato De Donato   a new hope
123
124
125
126
      behaviors: [
        Polymer.IronControlState,
        Polymer.IronButtonState
      ],
73bcce88   luigser   COMPONENTS
127
  
c5169e0e   Renato De Donato   a new hope
128
      properties: {
73bcce88   luigser   COMPONENTS
129
  
c5169e0e   Renato De Donato   a new hope
130
131
132
133
134
135
136
137
138
        /**
         * If true, ink ripple effect is disabled.
         *
         * @attribute noink
         */
        noink: {
          type: Boolean,
          value: false
        }
73bcce88   luigser   COMPONENTS
139
  
c5169e0e   Renato De Donato   a new hope
140
      },
73bcce88   luigser   COMPONENTS
141
  
c5169e0e   Renato De Donato   a new hope
142
143
144
      hostAttributes: {
        role: 'tab'
      },
e619a3b0   Luigi Serra   Controllet cross ...
145
  
c5169e0e   Renato De Donato   a new hope
146
147
148
      listeners: {
        down: '_updateNoink'
      },
73bcce88   luigser   COMPONENTS
149
  
c5169e0e   Renato De Donato   a new hope
150
151
152
      attached: function() {
        this._updateNoink();
      },
73bcce88   luigser   COMPONENTS
153
  
c5169e0e   Renato De Donato   a new hope
154
155
156
157
      get _parentNoink () {
        var parent = Polymer.dom(this).parentNode;
        return !!parent && !!parent.noink;
      },
73bcce88   luigser   COMPONENTS
158
  
c5169e0e   Renato De Donato   a new hope
159
160
161
162
      _updateNoink: function() {
        this.noink = !!this.noink || !!this._parentNoink;
      }
    });
a1a3bc73   Luigi Serra   graphs updates
163
  
c5169e0e   Renato De Donato   a new hope
164
  </script>