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

Unified Diff: chrome/browser/resources/chromeos/chromevox/cvox2/background/panel.css

Issue 2454213002: Use modes to switch cvox panel between collapsed, menus, focused, and tutorial (Closed)
Patch Set: 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/chromeos/chromevox/cvox2/background/panel.css
diff --git a/chrome/browser/resources/chromeos/chromevox/cvox2/background/panel.css b/chrome/browser/resources/chromeos/chromevox/cvox2/background/panel.css
index a24a10c00f71a40fbfbba3fa0cec622bbc2ed559..04b315f495d87fd052b13250ccf96606423e095d 100644
--- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/panel.css
+++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/panel.css
@@ -311,3 +311,11 @@ table#braille-table * {
table#braille-table tr:first-child {
font-size: 85%;
}
+
+/*
+ * The html hidden attribute doesn't make elements not focusable by default.
+ * This rule ensures that elements that are hidden truly don't show up.
+ */
+*[hidden] {
+ display: none !important;
+}

Powered by Google App Engine
This is Rietveld 408576698