| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/util.html"> |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | 2 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 <link rel="import" href="chrome://resources/cr_elements/shared_vars_css.html"> | 3 <link rel="import" href="chrome://resources/cr_elements/shared_vars_css.html"> |
| 3 | 4 |
| 4 <dom-module id="cr-action-menu"> | 5 <dom-module id="cr-action-menu"> |
| 5 <template> | 6 <template> |
| 6 <style> | 7 <style> |
| 7 :host { | 8 :host { |
| 8 background-color: white; | 9 background-color: white; |
| 9 border: none; | 10 border: none; |
| 10 box-shadow: 0 2px 6px var(--paper-grey-500); | 11 box-shadow: 0 2px 6px var(--paper-grey-500); |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 .item-wrapper { | 52 .item-wrapper { |
| 52 outline: none; | 53 outline: none; |
| 53 } | 54 } |
| 54 </style> | 55 </style> |
| 55 <div class="item-wrapper" tabindex="-1"> | 56 <div class="item-wrapper" tabindex="-1"> |
| 56 <content select=".dropdown-item,hr"></content> | 57 <content select=".dropdown-item,hr"></content> |
| 57 </div> | 58 </div> |
| 58 </template> | 59 </template> |
| 59 <script src="cr_action_menu.js"></script> | 60 <script src="cr_action_menu.js"></script> |
| 60 </dom-module> | 61 </dom-module> |
| OLD | NEW |