OLD | NEW |
| 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 Loading... |
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> |
OLD | NEW |