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

Side by Side Diff: third_party/polymer/v1_0/components-chromium/paper-dropdown-menu/paper-dropdown-menu-shared-styles.html

Issue 2346073003: [Polymer] updating (Closed)
Patch Set: Created 4 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 unified diff | Download patch
OLDNEW
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698