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

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

Issue 2496823002: Implement word wrapping and panning in multiline Braille. (Closed)
Patch Set: Addressed David's comments Created 4 years 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 108
109 #braille-container * { 109 #braille-container * {
110 border-spacing: 0; 110 border-spacing: 0;
111 color: #fff; 111 color: #fff;
112 } 112 }
113 113
114 #braille-table-holder-outer { 114 #braille-table-holder-outer {
115 display: flex; 115 display: flex;
116 height: 100%; 116 height: 100%;
117 overflow: scroll; 117 overflow: scroll;
118 padding-bottom: 17px;
119 padding-right: 17px; 118 padding-right: 17px;
120 width: 100%; 119 width: 100%;
121 } 120 }
122 121
123 .braille-table-holder { 122 .braille-table-holder {
124 flex-grow: 1; 123 flex-grow: 1;
125 } 124 }
126 125
127 #braille-text { 126 #braille-text {
128 font-family: 'Droid Sans Mono', Courier, monospace; 127 font-family: 'Droid Sans Mono', Courier, monospace;
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
330 border: 1px solid black; 329 border: 1px solid black;
331 } 330 }
332 331
333 /* 332 /*
334 * The html hidden attribute doesn't make elements not focusable by default. 333 * The html hidden attribute doesn't make elements not focusable by default.
335 * This rule ensures that elements that are hidden truly don't show up. 334 * This rule ensures that elements that are hidden truly don't show up.
336 */ 335 */
337 *[hidden] { 336 *[hidden] {
338 display: none !important; 337 display: none !important;
339 } 338 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698