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

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

Issue 9320056: Help: Implement the initial version of the cross-platform help/about page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: String fix. 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
(Empty)
1 body {
2 -webkit-user-select: text;
3 }
4
5 h2 {
6 color: rgb(48, 57, 66);
7 font-size: 16px;
8 font-weight: normal;
9 margin-bottom: 3px;
10 }
11
12 #about-container {
13 -webkit-box-align: center;
14 display: -webkit-box;
15 }
16
17 #product-description {
18 -webkit-margin-start: 10px;
19 }
20
21 #version-container {
22 margin-top: 20px;
23 }
24
25 #update-status {
26 vertical-align: middle;
27 }
28
29 #update-percentage {
30 font-size: 90%;
31 position: absolute;
32 }
33
34 #relaunch {
35 margin-top: 5px;
36 position: absolute;
37 }
38
39 #help-container {
40 margin-top: 40px;
41 }
42
43 #update-percentage {
44 -webkit-margin-start: 33px;
45 }
46
47 #get-help {
48 -webkit-margin-end: 10px;
49 }
50
51 #version-container,
52 #help-container {
53 /* 32px icon + 10px margin-left to match #product-container */
54 -webkit-margin-start: 42px;
55 }
56
57 #product-container {
58 line-height: 1.8em;
59 margin-top: 200px;
60 }
61
62 #browser-version {
63 font-size: 90%;
64 margin-bottom: 5px;
65 }
66
67 #update-status-icon {
68 background-repeat: no-repeat;
69 display: inline-block;
70 height: 17px;
71 margin-right: 13px;
72 vertical-align: middle;
73 width: 17px;
74 }
75
76 #update-status-icon.available {
77 background-image: url('chrome://theme/IDR_UPDATE_AVAILALBE');
78 }
79
80 #update-status-icon.up-to-date {
81 background-image: url('chrome://theme/IDR_UPDATE_UPTODATE');
82 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698