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

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: Latest review fixes and added tooltips. 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 body {
6 font-family: 'Chrome Droid Sans', 'Droid Sans Fallback', sans-serif;
7 font-size: 12px;
8 }
9
10 button {
11 background-image: -webkit-linear-gradient(#E7E7E7, #E7E7E7 38%, #D7D7D7);
12 border: 1px solid rgba(0, 0, 0, 0.25);
13 border-radius: 2px;
14 color: #444;
15 float: right;
16 margin-top: 15px;
17 min-height: 2em;
18 min-width: 7em;
19 padding-left: 10px;
20 padding-right: 10px;
21 }
22
23
24 .buttons-pane {
25 width: 90%;
26 }
27
28 form {
29 width: 610px;
30 }
31
32 h2 {
33 color: rgb(48, 57, 66);
34 font-size: 1.3em;
35 font-weight: normal;
36 }
37
38 input {
39 border: solid 1px rgb(170, 207, 228);
40 display: block;
41 float: left;
42 margin: 2px 0 8px 10px;
43 padding: 4px 2px;
44 text-align: right;
45 width: 110px;
46 }
47
48 label {
49 color: black;
50 display: block;
51 float: left;
52 font-size: 16px;
53 font-weight: normal;
54 padding-top: 4px;
55 text-align: right;
56 width: 370px;
57 }
58
59 .row-units {
60 display: block;
61 float: left;
62 margin-left: 7px;
63 padding-top: 7px;
64 text-align: left;
65 width: 100px;
66 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698