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

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

Issue 10532005: Initial check-in of gesture config WebUI. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Removed debugging code and added comments. Created 8 years, 6 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 /* 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 button {
6 background: #888;
7 color: #FFF;
8 font-size: 11px;
9 font-weight: bold;
10 height: 31px;
11 line-height: 31px;
12 margin-left: 20px;
13 margin-top: 20px;
14 width: 125px;
flackr 2012/06/06 14:50:54 Use 2 space indent.
Kevin Greer 2012/06/06 20:26:20 Done.
15 }
16
17 .buttons-pane {
18 float: right;
19 }
20
21 form {
22 width: 650px;
23 }
24
25 input {
26 border: solid 1px rgb(170, 207, 228);
27 display: block;
28 float: left;
29 font-size: 12px;
30 margin: 2px 0 8px 10px;
31 padding: 4px 2px;
32 text-align: right;
33 width: 150px;
34 }
35
36 label {
37 display: block;
38 float: left;
39 font-weight: bold;
40 padding-top: 4px;
41 text-align: right;
42 width: 350px;
43 }
44
45 .units {
46 display: block;
47 float: left;
48 margin-left: 7px;
49 padding-top: 4px;
50 text-align: left;
51 width: 100px;
52 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698