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

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

Issue 2842303004: MD Settings: update dialogs to focus without ink when using mouse (Closed)
Patch Set: merge Created 3 years, 7 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/assert.html">
2 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html">
1 <link rel="import" href="chrome://resources/html/util.html"> 3 <link rel="import" href="chrome://resources/html/util.html">
2 <link rel="import" href="chrome://resources/html/polymer.html"> 4 <link rel="import" href="chrome://resources/html/polymer.html">
3 <link rel="import" href="chrome://resources/cr_elements/shared_vars_css.html"> 5 <link rel="import" href="chrome://resources/cr_elements/shared_vars_css.html">
4 6
5 <dom-module id="cr-action-menu"> 7 <dom-module id="cr-action-menu">
6 <template> 8 <template>
7 <style> 9 <style>
8 :host { 10 :host {
9 background-color: white; 11 background-color: white;
10 border: none; 12 border: none;
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 .item-wrapper { 54 .item-wrapper {
53 outline: none; 55 outline: none;
54 } 56 }
55 </style> 57 </style>
56 <div class="item-wrapper" tabindex="-1"> 58 <div class="item-wrapper" tabindex="-1">
57 <content select=".dropdown-item,hr"></content> 59 <content select=".dropdown-item,hr"></content>
58 </div> 60 </div>
59 </template> 61 </template>
60 <script src="cr_action_menu.js"></script> 62 <script src="cr_action_menu.js"></script>
61 </dom-module> 63 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698