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

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

Issue 2104893003: Adds a new checkbox for backup and restore in opt-in flow. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adds a new checkbox for backup and restore in opt-in flow. 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 padding: 0;
20 } 20 }
21 21
22 .button-separator { 22 .button-separator {
23 width: 1px; 23 width: 1px;
24 } 24 }
25 25
26 .checkbox-backup-restore,
khmel 2016/06/28 23:09:54 Can we use one class for this? for example: .check
malaykeshav 2016/06/29 01:29:07 Done
26 .checkbox-metrics { 27 .checkbox-metrics {
27 height: 16px; 28 height: 16px;
28 margin: 0; 29 margin: 0;
29 padding: 0 8px 0 0; 30 padding: 0 8px 0 0;
30 width: 16px; 31 width: 16px;
31 } 32 }
32 33
33 .image-header { 34 .image-header {
34 display: block; 35 display: block;
35 height: 300px; 36 height: 300px;
(...skipping 10 matching lines...) Expand all
46 padding: 16px 0 24px 0; 47 padding: 16px 0 24px 0;
47 width: 468px; 48 width: 468px;
48 } 49 }
49 50
50 .section-flex { 51 .section-flex {
51 display: flex; 52 display: flex;
52 flex-direction: column; 53 flex-direction: column;
53 height: 688px; 54 height: 688px;
54 } 55 }
55 56
57 .section-backup-restore,
56 .section-metrics { 58 .section-metrics {
57 margin: auto; 59 margin: auto;
58 padding: 16px 0 0 0; 60 padding: 16px 0 0 0;
59 text-align: left; 61 text-align: left;
60 width: 468px; 62 width: 468px;
61 } 63 }
62 64
63 .section-terms { 65 .section-terms {
64 border: 1px solid #e6e6e6; 66 border: 1px solid #e6e6e6;
65 color: rgba(0, 0, 0, 0.54); 67 color: rgba(0, 0, 0, 0.54);
66 flex: auto; 68 flex: auto;
67 margin: auto; 69 margin: auto;
68 overflow: hidden; 70 overflow: hidden;
69 padding: 0; 71 padding: 0;
70 width: 468px; 72 width: 468px;
71 } 73 }
72 74
73 .text-desc { 75 .text-desc {
74 color: rgba(0, 0, 0, 0.54); 76 color: rgba(0, 0, 0, 0.54);
75 font-size: 18px; 77 font-size: 18px;
76 font-weight: 300; 78 font-weight: 300;
77 line-height: 24px; 79 line-height: 24px;
78 margin: auto; 80 margin: auto;
79 padding: 16px 0 0 0; 81 padding: 16px 0 0 0;
80 width: 600px; 82 width: 600px;
81 } 83 }
82 84
85 .text-backup-restore,
83 .text-metrics { 86 .text-metrics {
84 color: rgba(0, 0, 0, 0.54); 87 color: rgba(0, 0, 0, 0.54);
85 font-size: 10px; 88 font-size: 10px;
86 font-weight: 400; 89 font-weight: 400;
87 line-height: 16px; 90 line-height: 16px;
88 margin: 0; 91 margin: 0;
89 padding: 0; 92 padding: 0;
90 } 93 }
91 94
92 .text-status { 95 .text-status {
(...skipping 26 matching lines...) Expand all
119 122
120 a:link { 123 a:link {
121 color: rgb(51, 103, 214); 124 color: rgb(51, 103, 214);
122 text-decoration: none; 125 text-decoration: none;
123 } 126 }
124 127
125 a:visited { 128 a:visited {
126 color: rgb(51, 103, 214); 129 color: rgb(51, 103, 214);
127 text-decoration: none; 130 text-decoration: none;
128 } 131 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698