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

Side by Side Diff: chrome/browser/resources/shared/css/about_version.css

Issue 10821026: Make about:version android friendly. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Resolve presubmit warning. Created 8 years, 5 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
« no previous file with comments | « chrome/browser/resources/about_version_android.css ('k') | chrome/browser/ui/webui/about_ui.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 * found in the LICENSE file. */
4
5 body {
6 background-color: white;
7 color: black;
8 font-family: Helvetica,Arial,sans-serif;
9 margin: 0;
10 }
11
12 #outer {
13 margin-left: auto;
14 margin-right: auto;
15 margin-top: 10px;
16 width: 800px;
17 }
18
19 #inner {
20 padding-top: 10px;
21 width: 550px;
22 }
23
24 .label {
25 -webkit-padding-end: 5px;
26 font-size: 0.9em;
27 font-weight: bold;
28 text-align: end;
29 white-space: nowrap;
30 }
31
32 .label:after {
33 content: ':';
34 }
35
36 #logo {
37 float: right;
38 margin-left: 40px;
39 text-align: right;
40 width: 180px;
41 }
42
43 #logo-img {
44 /* TODO: Remove once http://crbug.com/135179 is fixed */
45 content: url('chrome://theme/IDR_PRODUCT_LOGO');
46 }
47
48 #company {
49 font-size: 0.7em;
50 text-align: right;
51 }
52
53 #copyright {
54 font-size: 0.7em;
55 text-align: right;
56 }
57
58 #useragent {
59 font-family: monospace;
60 }
61
62 .version {
63 font-family: monospace;
64 max-width: 430px;
65 padding-left: 5px;
66 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/about_version_android.css ('k') | chrome/browser/ui/webui/about_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698