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

Side by Side Diff: chrome/browser/resources/chromeos/login/oobe_eula.css

Issue 2269433002: ChromeOS: Add more controls to OOBE EULA screen. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update. Created 4 years, 3 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 #crosEulaFrame { 5 #crosEulaFrame,
6 #installationSettings,
7 #logging {
8 font: 13px Roboto, sans-serif;
6 margin: 0 20px; 9 margin: 0 20px;
7 } 10 }
11
12 a {
13 color: var(--google-blue-500);
14 text-decoration: none;
15 }
stevenjb 2016/08/23 16:45:17 We should group CSS by specificity, e.g. element t
Alexander Alekseev 2016/08/25 01:28:22 Done.
16
17 #installationSettings {
18 padding-top: 31px; /* = 44 - font size */
19 }
20
21 #logging {
22 color: rgba(0, 0, 0, 0.54);
23 padding-top: 21px; /* = 36 - font size */
24 }
25
26 #usageStats {
27 --paper-checkbox-size: 16px;
28 max-width: 550px;
29 padding-bottom: 20px;
30 padding-right: 16px; /* Must be greater than --paper-checkbox-label-spacing */
31 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698