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