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

Side by Side Diff: chrome/browser/resources/help/help.css

Issue 9413028: Help: Show the platform version and firmware on CrOS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 10 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 | Annotate | Revision Log
OLDNEW
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 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 5
6 body { 6 body {
7 -webkit-user-select: text; 7 -webkit-user-select: text;
8 } 8 }
9 9
10 h2 { 10 h2 {
11 color: rgb(48, 57, 66); 11 color: rgb(48, 57, 66);
12 font-size: 16px; 12 font-size: 16px;
13 font-weight: normal; 13 font-weight: normal;
14 margin-bottom: 3px; 14 margin-bottom: 3px;
15 } 15 }
16 16
17 #about-container { 17 #about-container {
18 -webkit-box-align: center; 18 -webkit-box-align: center;
19 display: -webkit-box; 19 display: -webkit-box;
20 margin-top: 10px;
20 } 21 }
21 22
22 #product-description { 23 #product-description {
23 -webkit-margin-start: 10px; 24 -webkit-margin-start: 10px;
24 } 25 }
25 26
26 #version-container { 27 #version-container {
28 font-size: 90%;
csilv 2012/02/17 01:21:49 not required, but we should start thinking in em's
29 line-height: 1.5em;
27 margin-top: 20px; 30 margin-top: 20px;
28 } 31 }
29 32
33 #update-status-container {
34 margin-top: 5px;
35 }
36
30 #update-status { 37 #update-status {
31 vertical-align: middle; 38 vertical-align: middle;
32 } 39 }
33 40
34 #update-percentage { 41 #update-percentage {
35 font-size: 90%; 42 font-size: 90%;
36 position: absolute; 43 position: absolute;
37 } 44 }
38 45
39 #relaunch { 46 #relaunch {
(...skipping 17 matching lines...) Expand all
57 #help-container { 64 #help-container {
58 /* 32px icon + 10px margin-left to match #product-container */ 65 /* 32px icon + 10px margin-left to match #product-container */
59 -webkit-margin-start: 42px; 66 -webkit-margin-start: 42px;
60 } 67 }
61 68
62 #product-container { 69 #product-container {
63 line-height: 1.8em; 70 line-height: 1.8em;
64 margin-top: 200px; 71 margin-top: 200px;
65 } 72 }
66 73
67 #browser-version {
68 font-size: 90%;
69 margin-bottom: 5px;
70 }
71
72 #update-status-icon { 74 #update-status-icon {
73 background-repeat: no-repeat; 75 background-repeat: no-repeat;
74 display: inline-block; 76 display: inline-block;
75 height: 17px; 77 height: 17px;
76 margin-right: 13px; 78 margin-right: 13px;
77 vertical-align: middle; 79 vertical-align: middle;
78 width: 17px; 80 width: 17px;
79 } 81 }
80 82
81 #update-status-icon.available { 83 #update-status-icon.available {
82 background-image: url('chrome://theme/IDR_UPDATE_AVAILABLE'); 84 background-image: url('chrome://theme/IDR_UPDATE_AVAILABLE');
83 } 85 }
84 86
85 #update-status-icon.up-to-date { 87 #update-status-icon.up-to-date {
86 background-image: url('chrome://theme/IDR_UPDATE_UPTODATE'); 88 background-image: url('chrome://theme/IDR_UPDATE_UPTODATE');
87 } 89 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/help/help.html » ('j') | chrome/browser/resources/help/help.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698