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

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

Issue 2362673004: Aligns text to braille in chromevox. (Closed)
Patch Set: Addressed all presubmit issues. 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 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 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
291 291
292 #tutorial_footer button { 292 #tutorial_footer button {
293 background-color: #fff; 293 background-color: #fff;
294 border: 1px solid #000; 294 border: 1px solid #000;
295 font-family: 'Roboto', sans-serif; 295 font-family: 'Roboto', sans-serif;
296 font-size: 20pt; 296 font-size: 20pt;
297 height: 2em; 297 height: 2em;
298 margin: 0 24px; 298 margin: 0 24px;
299 width: 8em; 299 width: 8em;
300 } 300 }
301 table {
dmazzoni 2016/09/26 04:53:49 nit: blank line before Also make this: table#brai
ultimatedbz 2016/09/27 22:56:24 Done.
302 border: none;
303 border-spacing: 0;
304 }
305
306 table * {
dmazzoni 2016/09/26 04:53:49 Same here, and below
ultimatedbz 2016/09/27 22:56:24 Done.
307 color: #fff;
308 }
309
310 table tr:first-child {
311 font-size: 85%;
312 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698