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

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

Issue 2755213002: MD WebUI: fix action menu initial focus to be more like context menus (Closed)
Patch Set: fix tests Created 3 years, 9 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/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="chrome://resources/cr_elements/shared_vars_css.html"> 2 <link rel="import" href="chrome://resources/cr_elements/shared_vars_css.html">
3 3
4 <dom-module id="cr-action-menu"> 4 <dom-module id="cr-action-menu">
5 <template> 5 <template>
6 <style> 6 <style>
7 :host { 7 :host {
8 background-color: white; 8 background-color: white;
9 border: none; 9 border: none;
10 box-shadow: 0 2px 6px var(--paper-grey-500); 10 box-shadow: 0 2px 6px var(--paper-grey-500);
(...skipping 24 matching lines...) Expand all
35 } 35 }
36 36
37 :host ::content .dropdown-item:not([disabled]) { 37 :host ::content .dropdown-item:not([disabled]) {
38 @apply(--cr-actionable); 38 @apply(--cr-actionable);
39 } 39 }
40 40
41 :host ::content .dropdown-item:focus { 41 :host ::content .dropdown-item:focus {
42 background-color: var(--paper-grey-300); 42 background-color: var(--paper-grey-300);
43 outline: none; 43 outline: none;
44 } 44 }
45
46 .item-wrapper {
47 outline: none;
48 }
45 </style> 49 </style>
46 <content select=".dropdown-item,hr"></content> 50 <div class="item-wrapper" tabindex="-1">
51 <content select=".dropdown-item,hr"></content>
52 </div>
47 </template> 53 </template>
48 <script src="cr_action_menu.js"></script> 54 <script src="cr_action_menu.js"></script>
49 </dom-module> 55 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698