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

Side by Side Diff: ui/webui/resources/cr_elements/cr_profile_avatar_selector/cr_profile_avatar_selector_grid.html

Issue 2586113002: MD Settings: ignore modified key events in the profile avatar grid (Closed)
Patch Set: closure Created 4 years 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
1 <link rel="import" href="chrome://resources/html/assert.html"> 1 <link rel="import" href="chrome://resources/html/assert.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/polymer/v1_0/iron-menu-behavior/iron -menubar-behavior.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-menu-behavior/iron -menubar-behavior.html">
4 5
5 <dom-module id="cr-profile-avatar-selector-grid"> 6 <dom-module id="cr-profile-avatar-selector-grid">
6 <template> 7 <template>
7 <style> 8 <style>
8 :host { 9 :host {
9 display: inline-flex; 10 display: inline-flex;
10 flex-wrap: wrap; 11 flex-wrap: wrap;
11 margin: calc(var(--avatar-spacing) / -2); 12 margin: calc(var(--avatar-spacing) / -2);
12 } 13 }
13 </style> 14 </style>
14 <content></content> 15 <content></content>
15 </template> 16 </template>
16 <script src="cr_profile_avatar_selector_grid.js"></script> 17 <script src="cr_profile_avatar_selector_grid.js"></script>
17 </dom-module> 18 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698