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

Side by Side Diff: chrome/browser/resources/chromeos/arc_support/main.css

Issue 2137713002: arc: Provide progress to load TOS content for OptIn. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 /** 1 /**
2 * Copyright 2016 The Chromium Authors. All rights reserved. 2 * Copyright 2016 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 html, 7 html,
8 body, 8 body,
9 webview, 9 webview,
10 .section { 10 .section {
11 font-family: 'Roboto'; 11 font-family: 'Roboto';
12 height: 100%; 12 height: 100%;
13 margin: 0; 13 margin: 0;
14 padding: 0; 14 padding: 0;
15 width: 100%; 15 width: 100%;
16 } 16 }
17 17
18 #arc-support { 18 #arc-support {
19 padding: 0; 19 width: 960px;
khmel 2016/07/08 21:59:34 Please see comments in .js
xiyuan 2016/07/08 22:33:29 Acknowledged.
20 }
21
22 #terms-view {
23 width: 468px;
khmel 2016/07/08 21:59:34 the same as above.
xiyuan 2016/07/08 22:33:29 Acknowledged.
20 } 24 }
21 25
22 .button-separator { 26 .button-separator {
23 width: 1px; 27 width: 1px;
24 } 28 }
25 29
26 .checkbox-option { 30 .checkbox-option {
27 height: 16px; 31 height: 16px;
28 margin: 0; 32 margin: 0;
29 padding: 0 8px 0 0; 33 padding: 0 8px 0 0;
(...skipping 18 matching lines...) Expand all
48 } 52 }
49 53
50 .section-flex { 54 .section-flex {
51 display: flex; 55 display: flex;
52 flex-direction: column; 56 flex-direction: column;
53 height: 688px; 57 height: 688px;
54 } 58 }
55 59
56 .section-checkbox-container { 60 .section-checkbox-container {
57 margin: auto; 61 margin: auto;
58 padding: 16px 0 0 0; 62 padding: 8px 0 0 0;
khmel 2016/07/08 21:59:33 Second checkbox section was added recently. Howeve
xiyuan 2016/07/08 22:33:29 Acknowledged.
59 text-align: left; 63 text-align: left;
60 width: 468px; 64 width: 468px;
61 } 65 }
62 66
63 .section-terms { 67 .section-terms {
64 border: 1px solid #e6e6e6; 68 border: 1px solid #e6e6e6;
65 color: rgba(0, 0, 0, 0.54); 69 color: rgba(0, 0, 0, 0.54);
66 flex: auto; 70 flex: auto;
67 margin: auto; 71 margin: 0 auto 8px auto;
68 overflow: hidden; 72 overflow: hidden;
69 padding: 0; 73 padding: 0;
70 width: 468px; 74 width: 468px;
71 } 75 }
72 76
73 .text-desc { 77 .text-desc {
74 color: rgba(0, 0, 0, 0.54); 78 color: rgba(0, 0, 0, 0.54);
75 font-size: 18px; 79 font-size: 18px;
76 font-weight: 300; 80 font-weight: 300;
77 line-height: 24px; 81 line-height: 24px;
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 123
120 a:link { 124 a:link {
121 color: rgb(51, 103, 214); 125 color: rgb(51, 103, 214);
122 text-decoration: none; 126 text-decoration: none;
123 } 127 }
124 128
125 a:visited { 129 a:visited {
126 color: rgb(51, 103, 214); 130 color: rgb(51, 103, 214);
127 text-decoration: none; 131 text-decoration: none;
128 } 132 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698