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

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

Issue 2319123002: Profile Avatar Selector: Allow arrow keys to be used for moving between avatars (2nd edition) (Closed)
Patch Set: 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_listbox.html
diff --git a/ui/webui/resources/cr_elements/cr_profile_avatar_selector/cr_profile_avatar_selector_listbox.html b/ui/webui/resources/cr_elements/cr_profile_avatar_selector/cr_profile_avatar_selector_listbox.html
new file mode 100644
index 0000000000000000000000000000000000000000..bcbf9a1e299c6775fb3237164b4793f47f11548c
--- /dev/null
+++ b/ui/webui/resources/cr_elements/cr_profile_avatar_selector/cr_profile_avatar_selector_listbox.html
@@ -0,0 +1,18 @@
+<link rel="import" href="chrome://resources/html/polymer.html">
+<link rel="import" href="chrome://resources/polymer/v1_0/iron-menu-behavior/iron-menu-behavior.html">
+<link rel="import" href="chrome://resources/polymer/v1_0/iron-menu-behavior/iron-menubar-behavior.html">
+
+<dom-module id="cr-profile-avatar-selector-listbox">
+ <template>
+ <style>
+ :host {
+ display: flex;
+ flex-wrap: wrap;
+
+ @apply(--cr-profile-avatar-selector-listbox);
+ }
+ </style>
+ <content></content>
+ </template>
+ <script src="cr_profile_avatar_selector_listbox.js"></script>
+</dom-module>

Powered by Google App Engine
This is Rietveld 408576698