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

Side by Side Diff: chrome/browser/resources/uber/uber_frame.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
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 body { 5 body {
6 overflow: hidden; 6 overflow: hidden;
7 padding-top: 20px; 7 padding-top: 20px;
8 } 8 }
9 9
10 h1 { 10 h1 {
11 -webkit-margin-before: 18px; 11 -webkit-margin-before: 18px;
12 -webkit-margin-start: 23px; 12 -webkit-margin-start: 23px;
13 color: rgb(92, 97, 102); 13 color: rgb(92, 97, 102);
14 } 14 }
15 15
16 ol { 16 ul {
17 list-style-type: none; 17 list-style-type: none;
18 padding: 0; 18 padding: 0;
19 } 19 }
20 20
21 li { 21 li {
22 -webkit-border-start: 6px solid white; 22 -webkit-border-start: 6px solid white;
23 -webkit-padding-start: 18px; 23 -webkit-padding-start: 18px;
24 color: #999; 24 color: #999;
25 cursor: pointer; 25 cursor: pointer;
26 line-height: 17px; 26 line-height: 17px;
27 margin: 5px 0; 27 margin: 5px 0;
28 text-transform: uppercase; 28 text-transform: uppercase;
29 } 29 }
30 30
31 li:hover { 31 li:hover {
32 color: #777; 32 color: #777;
33 } 33 }
34 34
35 li.selected { 35 li.selected {
36 -webkit-border-start-color: rgb(78, 87, 100); 36 -webkit-border-start-color: rgb(78, 87, 100);
37 color: rgb(70, 78, 90); 37 color: rgb(70, 78, 90);
38 } 38 }
39 39
40 #aboutPageNavItem { 40 #helpNavItem {
41 margin-top: 27px; 41 margin-top: 27px;
42 } 42 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698