| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 @license | 2 @license |
| 3 Copyright (c) 2015 The Polymer Project Authors. All rights reserved. | 3 Copyright (c) 2015 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="../iron-flex-layout/iron-flex-layout.html"> |
| 12 <link rel="import" href="../paper-styles/color.html"> |
| 13 <link rel="import" href="../paper-styles/default-theme.html"> |
| 14 |
| 11 <dom-module id="paper-menu-shared-styles"> | 15 <dom-module id="paper-menu-shared-styles"> |
| 12 <template> | 16 <template> |
| 13 <style> | 17 <style> |
| 14 /* need a wrapper element to make this higher specificity than the :host r
ule in paper-item */ | 18 /* need a wrapper element to make this higher specificity than the :host r
ule in paper-item */ |
| 15 .selectable-content > ::content > .iron-selected { | 19 .selectable-content > ::content > .iron-selected { |
| 16 font-weight: bold; | 20 font-weight: bold; |
| 17 | 21 |
| 18 @apply(--paper-menu-selected-item); | 22 @apply(--paper-menu-selected-item); |
| 19 } | 23 } |
| 20 | 24 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 38 | 42 |
| 39 @apply(--paper-menu-focused-item-after); | 43 @apply(--paper-menu-focused-item-after); |
| 40 } | 44 } |
| 41 | 45 |
| 42 .selectable-content > ::content > *[colored]:focus:after { | 46 .selectable-content > ::content > *[colored]:focus:after { |
| 43 opacity: 0.26; | 47 opacity: 0.26; |
| 44 } | 48 } |
| 45 </style> | 49 </style> |
| 46 </template> | 50 </template> |
| 47 </dom-module> | 51 </dom-module> |
| OLD | NEW |