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

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

Issue 2434823002: arc: Add Goolge Privacy Policy link to OptIn UI. (Closed)
Patch Set: 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 html, 5 html,
6 body, 6 body,
7 webview, 7 webview,
8 .section { 8 .section {
9 font-family: 'Roboto'; 9 font-family: 'Roboto';
10 height: 100%; 10 height: 100%;
(...skipping 16 matching lines...) Expand all
27 ::-webkit-scrollbar-thumb:hover { 27 ::-webkit-scrollbar-thumb:hover {
28 background: rgba(0, 0, 0, 0.2); 28 background: rgba(0, 0, 0, 0.2);
29 } 29 }
30 30
31 #arc-support { 31 #arc-support {
32 flex: auto; 32 flex: auto;
33 overflow: hidden; 33 overflow: hidden;
34 width: 960px; 34 width: 960px;
35 } 35 }
36 36
37 #privacy-policy-link {
38 margin: 0;
39 padding: 0;
40 text-align: left;
xiyuan 2016/10/19 16:17:51 Consider removing this and putting #privacy-policy
khmel 2016/10/19 16:33:30 I removed it. It is not required in either case. A
41 }
42
37 #terms-view { 43 #terms-view {
38 width: 640px; 44 width: 640px;
39 } 45 }
40 46
41 .bubble-button > div { 47 .bubble-button > div {
42 height: 12px; 48 height: 12px;
43 top: -8px; 49 top: -8px;
44 width: 12px; 50 width: 12px;
45 } 51 }
46 52
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 209
204 a:link { 210 a:link {
205 color: rgb(51, 103, 214); 211 color: rgb(51, 103, 214);
206 text-decoration: none; 212 text-decoration: none;
207 } 213 }
208 214
209 a:visited { 215 a:visited {
210 color: rgb(51, 103, 214); 216 color: rgb(51, 103, 214);
211 text-decoration: none; 217 text-decoration: none;
212 } 218 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698