OLD | NEW |
1 <!-- | 1 <!-- |
2 @license | 2 @license |
3 Copyright (c) 2016 The Polymer Project Authors. All rights reserved. | 3 Copyright (c) 2016 The Polymer Project Authors. All rights reserved. |
4 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt | 4 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt |
5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt | 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt |
6 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt | 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt |
7 Code distributed by Google as part of the polymer project is also | 7 Code distributed by Google as part of the polymer project is also |
8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt | 8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt |
9 --> | 9 --> |
10 | 10 |
11 <link rel="import" href="../paper-styles/default-theme.html"> | 11 <link rel="import" href="../paper-styles/default-theme.html"> |
12 | 12 |
13 <dom-module id="paper-dropdown-menu-shared-styles"> | 13 <dom-module id="paper-dropdown-menu-shared-styles"> |
14 <template> | 14 <template> |
15 <style> | 15 <style> |
16 :host { | 16 :host { |
17 display: inline-block; | 17 display: inline-block; |
18 position: relative; | 18 position: relative; |
19 text-align: left; | 19 text-align: left; |
20 cursor: pointer; | |
21 | 20 |
22 /* NOTE(cdata): Both values are needed, since some phones require the | 21 /* NOTE(cdata): Both values are needed, since some phones require the |
23 * value to be `transparent`. | 22 * value to be `transparent`. |
24 */ | 23 */ |
25 -webkit-tap-highlight-color: rgba(0,0,0,0); | 24 -webkit-tap-highlight-color: rgba(0,0,0,0); |
26 -webkit-tap-highlight-color: transparent; | 25 -webkit-tap-highlight-color: transparent; |
27 | 26 |
28 --paper-input-container-input: { | 27 --paper-input-container-input: { |
29 overflow: hidden; | 28 overflow: hidden; |
30 white-space: nowrap; | 29 white-space: nowrap; |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 } | 69 } |
71 | 70 |
72 iron-icon { | 71 iron-icon { |
73 color: var(--disabled-text-color); | 72 color: var(--disabled-text-color); |
74 | 73 |
75 @apply(--paper-dropdown-menu-icon); | 74 @apply(--paper-dropdown-menu-icon); |
76 } | 75 } |
77 </style> | 76 </style> |
78 </template> | 77 </template> |
79 </dom-module> | 78 </dom-module> |
OLD | NEW |