Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | |
| 2 <link rel="import" href="/direction_delegate.html"> | |
| 3 | |
| 4 <dom-module id="settings-action-menu"> | |
| 5 <template> | |
| 6 <style> | |
| 7 :host { | |
| 8 background-color: white; | |
| 9 border: none; | |
| 10 box-shadow: 0 2px 6px var(--paper-grey-500); | |
|
Dan Beam
2016/10/13 05:03:01
is it possible to share this somehow with wherever
dpapad
2016/10/13 18:18:00
This is copied from https://cs.chromium.org/chromi
| |
| 11 margin: 0; | |
| 12 outline: none; | |
| 13 padding: 0; | |
| 14 } | |
| 15 | |
| 16 :host::backdrop { | |
| 17 background-color: transparent; | |
| 18 } | |
| 19 </style> | |
| 20 <content select=".dropdown-item,hr"></content> | |
| 21 </template> | |
| 22 <script src="settings_action_menu.js"></script> | |
| 23 </dom-module> | |
| OLD | NEW |