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

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

Issue 3010683002: Update Polymer components. (Closed)
Patch Set: Rebase Created 3 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) 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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698