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

Unified Diff: chrome/browser/resources/md_user_manager/user_manager_pages.html

Issue 1944463002: MD User Manager: fixes accessibility issues (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@md-user-manager-user-pods-css
Patch Set: Replaced paper-menu with lighter weight paper-listbox Created 4 years, 8 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: chrome/browser/resources/md_user_manager/user_manager_pages.html
diff --git a/chrome/browser/resources/md_user_manager/user_manager_pages.html b/chrome/browser/resources/md_user_manager/user_manager_pages.html
index 9e5276f12d2366470deb40f88c423af4413b9de0..f85d1a67230c965897c188922e7025fc10b48474 100644
--- a/chrome/browser/resources/md_user_manager/user_manager_pages.html
+++ b/chrome/browser/resources/md_user_manager/user_manager_pages.html
@@ -17,6 +17,10 @@
display: flex;
justify-content: center;
}
+
+ neon-animated-pages > div:not(.iron-selected) > ::content > * {
tommycli 2016/05/04 17:04:11 Hmm... why is this necessary? I thought not-select
Moe 2016/05/04 17:33:52 neon-animated-pages works as expected. Note that i
tommycli 2016/05/04 17:56:02 Hmm... I see. Do you still need this rule if the i
tommycli 2016/05/04 18:58:12 I just spoke to michaelpg about this topic. Basica
Moe 2016/05/04 19:37:40 I took content out of dom-if. user-pods-page is th
tommycli 2016/05/04 20:16:57 Okay that's fine, can you just add a comment above
+ display: none !important;
+ }
</style>
<neon-animated-pages id="animatedPages" attr-for-selected="id"
selected="[[selectedPage_]]" entry-animation="slide-from-left-animation"
@@ -42,12 +46,12 @@
</div>
<div id="supervised-create-confirm-page">
<template is="dom-if"
- if="[[isPageVisible_(selectedPage_, 'supervised-create-confirm-page')]]">
+ if="[[isPageVisible_(selectedPage_,
+ 'supervised-create-confirm-page')]]">
<supervised-user-create-confirm profile-info="[[pageData_]]">
</supervised-user-create-confirm>
</template>
</div>
- <content></content>
</neon-animated-pages>
</template>
<script src="chrome://md-user-manager/user_manager_pages.js"></script>

Powered by Google App Engine
This is Rietveld 408576698