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

Side by Side 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, 1 month 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 /* Copyright 2016 The Chromium Authors. All rights reserved. 1 /* Copyright 2016 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 body { 5 body {
6 border: 0; 6 border: 0;
7 height: 35px; 7 height: 35px;
8 margin: 0; 8 margin: 0;
9 overflow: hidden; 9 overflow: hidden;
10 padding: 0; 10 padding: 0;
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after
304 border-spacing: 0; 304 border-spacing: 0;
305 } 305 }
306 306
307 table#braille-table * { 307 table#braille-table * {
308 color: #fff; 308 color: #fff;
309 } 309 }
310 310
311 table#braille-table tr:first-child { 311 table#braille-table tr:first-child {
312 font-size: 85%; 312 font-size: 85%;
313 } 313 }
314
315 /*
316 * The html hidden attribute doesn't make elements not focusable by default.
317 * This rule ensures that elements that are hidden truly don't show up.
318 */
319 *[hidden] {
320 display: none !important;
321 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698