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

Side by Side Diff: ui/webui/resources/cr_elements/cr_action_menu/cr_action_menu.html

Issue 2801453002: MD Settings: mouse movements should focus cr-action-menu items (Closed)
Patch Set: add missing import Created 3 years, 8 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 <link rel="import" href="chrome://resources/html/util.html">
1 <link rel="import" href="chrome://resources/html/polymer.html"> 2 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="chrome://resources/cr_elements/shared_vars_css.html"> 3 <link rel="import" href="chrome://resources/cr_elements/shared_vars_css.html">
3 4
4 <dom-module id="cr-action-menu"> 5 <dom-module id="cr-action-menu">
5 <template> 6 <template>
6 <style> 7 <style>
7 :host { 8 :host {
8 background-color: white; 9 background-color: white;
9 border: none; 10 border: none;
10 box-shadow: 0 2px 6px var(--paper-grey-500); 11 box-shadow: 0 2px 6px var(--paper-grey-500);
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 .item-wrapper { 52 .item-wrapper {
52 outline: none; 53 outline: none;
53 } 54 }
54 </style> 55 </style>
55 <div class="item-wrapper" tabindex="-1"> 56 <div class="item-wrapper" tabindex="-1">
56 <content select=".dropdown-item,hr"></content> 57 <content select=".dropdown-item,hr"></content>
57 </div> 58 </div>
58 </template> 59 </template>
59 <script src="cr_action_menu.js"></script> 60 <script src="cr_action_menu.js"></script>
60 </dom-module> 61 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698