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

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

Powered by Google App Engine
This is Rietveld 408576698