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

Side by Side Diff: chrome/browser/resources/settings/settings_action_menu.html

Issue 2402553002: MD Settings: Implementing modal popup/action menus. (Closed)
Patch Set: Address comments. Created 4 years, 2 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
(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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698