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

Unified Diff: ui/webui/resources/cr_elements/cr_profile_avatar_selector/cr_profile_avatar_selector_grid.html

Issue 2269743002: Profile Avatar Selector: Allow arrow keys to be used for moving between avatars. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: ui/webui/resources/cr_elements/cr_profile_avatar_selector/cr_profile_avatar_selector_grid.html
diff --git a/ui/webui/resources/cr_elements/cr_profile_avatar_selector/cr_profile_avatar_selector_grid.html b/ui/webui/resources/cr_elements/cr_profile_avatar_selector/cr_profile_avatar_selector_grid.html
new file mode 100644
index 0000000000000000000000000000000000000000..ecbbcd768ccde2cea885bac334fb6d8c6cadeb37
--- /dev/null
+++ b/ui/webui/resources/cr_elements/cr_profile_avatar_selector/cr_profile_avatar_selector_grid.html
@@ -0,0 +1,17 @@
+<link rel="import" href="chrome://resources/html/assert.html">
+<link rel="import" href="chrome://resources/html/polymer.html">
+<link rel="import" href="chrome://resources/polymer/v1_0/iron-menu-behavior/iron-menubar-behavior.html">
+
+<dom-module id="cr-profile-avatar-selector-grid">
+ <template>
+ <style>
+ :host {
+ display: inline-flex;
+ flex-wrap: wrap;
+ margin: calc(var(--avatar-spacing) / -2);
+ }
+ </style>
+ <content></content>
+ </template>
+ <script src="cr_profile_avatar_selector_grid.js"></script>
+</dom-module>

Powered by Google App Engine
This is Rietveld 408576698