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

Side by Side Diff: content/browser/resources/accessibility/accessibility.css

Issue 2552203005: Enable toggling of new accessibility modes in chrome://accessibility (Closed)
Patch Set: Rebase 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 /* 1 /*
2 * Copyright (c) 2013 The Chromium Authors. All rights reserved. 2 * Copyright (c) 2013 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 body { 7 body {
8 font-family: Arial, sans-serif; 8 font-family: Arial, sans-serif;
9 font-size: 12px; 9 font-size: 12px;
10 margin: 10px; 10 margin: 10px 20px;
11 min-width: 47em; 11 min-width: 47em;
12 padding-bottom: 65px; 12 padding-bottom: 65px;
13 } 13 }
14 14
15 img { 15 img {
16 float: left; 16 float: left;
17 height: 16px; 17 height: 16px;
18 padding-right: 5px; 18 padding-right: 5px;
19 width: 16px; 19 width: 16px;
20 } 20 }
21 21
22 .row { 22 .row {
23 border-bottom: 1px solid #A0A0A0; 23 border-bottom: 1px solid #A0A0A0;
24 padding: 5px; 24 padding: 5px;
25 } 25 }
26 26
27 .url { 27 .url {
28 color: #A0A0A0; 28 color: #A0A0A0;
29 } 29 }
30 30
31 p {
32 line-height: 1.2em;
33 }
34
35 .columns {
36 display: flex;
37 }
38
39 .column {
40 flex-basis: 50%;
41 }
42
43 .checkbox_row {
44 display: flex;
45 align-items: center;
46 }
47
48 .checkbox_wrapper {
49 width: 32px;
50 margin: 0 0 2px 0;
51 padding: 0;
52 flex-grow: 0;
53 }
54
55 .secondary {
56 margin: 0 0 12px 32px;
57 color: #696969;
58 }
59
60 label {
61 margin: 0 0 2px 0;
62 padding: 0;
63 flex-grow: 1;
64 }
65
66 label.disabled {
67 color: #696969;
68 }
69
70 label input[type="checkbox"] {
71 margin-right: 6px;
72 }
OLDNEW
« no previous file with comments | « content/browser/accessibility/accessibility_ui.cc ('k') | content/browser/resources/accessibility/accessibility.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698