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

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

Issue 2480913002: Fix a variety of panel issues (Closed)
Patch Set: Fix bad js annotation, indent, finalizeDom_, etc. 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 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
284 right: 15%; 284 right: 15%;
285 top: 15%; 285 top: 15%;
286 } 286 }
287 287
288 #tutorial_main h2 { 288 #tutorial_main h2 {
289 font-family: 'Roboto', sans-serif; 289 font-family: 'Roboto', sans-serif;
290 font-size: 30pt; 290 font-size: 30pt;
291 font-weight: bold; 291 font-weight: bold;
292 } 292 }
293 293
294 #tutorial_main h2:focus {
295 outline: none
296 }
297
294 #tutorial_main p, 298 #tutorial_main p,
295 #tutorial_main a { 299 #tutorial_main a {
296 display: block; 300 display: block;
297 font-family: 'Roboto', sans-serif; 301 font-family: 'Roboto', sans-serif;
298 font-size: 16pt; 302 font-size: 16pt;
299 line-height: 150%; 303 line-height: 150%;
300 } 304 }
301 305
302 #tutorial_footer { 306 #tutorial_footer {
303 display: flex; 307 display: flex;
(...skipping 22 matching lines...) Expand all
326 border: 1px solid black; 330 border: 1px solid black;
327 } 331 }
328 332
329 /* 333 /*
330 * The html hidden attribute doesn't make elements not focusable by default. 334 * The html hidden attribute doesn't make elements not focusable by default.
331 * This rule ensures that elements that are hidden truly don't show up. 335 * This rule ensures that elements that are hidden truly don't show up.
332 */ 336 */
333 *[hidden] { 337 *[hidden] {
334 display: none !important; 338 display: none !important;
335 } 339 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698