Chromium Code Reviews| Index: chrome/browser/resources/gesture_config.css |
| diff --git a/chrome/browser/resources/gesture_config.css b/chrome/browser/resources/gesture_config.css |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..d3afe3fdb9124f743f8c907b8f45b54dbb1a61f7 |
| --- /dev/null |
| +++ b/chrome/browser/resources/gesture_config.css |
| @@ -0,0 +1,66 @@ |
| +/* Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| + * Use of this source code is governed by a BSD-style license that can be |
| + * found in the LICENSE file. */ |
| + |
| +body { |
| + font-family: 'Chrome Droid Sans', 'Droid Sans Fallback', sans-serif; |
| + font-size: 12px; |
| +} |
| + |
| +button { |
| + background-image: -webkit-linear-gradient(#E7E7E7, #E7E7E7 38%, #D7D7D7); |
|
James Hawkins
2012/06/12 15:48:14
nit: rgb should be lowercase.
Kevin Greer
2012/06/12 18:01:53
Done.
|
| + border: 1px solid rgba(0, 0, 0, 0.25); |
| + border-radius: 2px; |
| + color: #444; |
| + float: right; |
| + margin-top: 15px; |
| + min-height: 2em; |
| + min-width: 7em; |
| + padding-left: 10px; |
| + padding-right: 10px; |
| +} |
| + |
| + |
|
James Hawkins
2012/06/12 15:48:14
nit: Remove extra blank line.
Kevin Greer
2012/06/12 18:01:53
Done.
|
| +.buttons-pane { |
| + width: 90%; |
| +} |
| + |
| +form { |
| + width: 610px; |
| +} |
| + |
| +h2 { |
| + color: rgb(48, 57, 66); |
| + font-size: 1.3em; |
| + font-weight: normal; |
| +} |
| + |
| +input { |
| + border: solid 1px rgb(170, 207, 228); |
| + display: block; |
|
James Hawkins
2012/06/12 15:48:14
nit: Wrap the input in a div if you want it to blo
Kevin Greer
2012/06/12 18:01:53
Removed. Not needed.
On 2012/06/12 15:48:14, James
|
| + float: left; |
| + margin: 2px 0 8px 10px; |
| + padding: 4px 2px; |
| + text-align: right; |
| + width: 110px; |
| +} |
| + |
| +label { |
| + color: black; |
| + display: block; |
|
James Hawkins
2012/06/12 15:48:14
nit: Wrap the label in a div if you want it to blo
Kevin Greer
2012/06/12 18:01:53
Removed.
On 2012/06/12 15:48:14, James Hawkins wro
|
| + float: left; |
| + font-size: 16px; |
| + font-weight: normal; |
| + padding-top: 4px; |
| + text-align: right; |
| + width: 370px; |
| +} |
| + |
| +.row-units { |
| + display: block; |
|
James Hawkins
2012/06/12 15:48:14
nit: display: block is unnecessary since row-units
Kevin Greer
2012/06/12 18:01:53
Removed
On 2012/06/12 15:48:14, James Hawkins wrot
|
| + float: left; |
| + margin-left: 7px; |
| + padding-top: 7px; |
| + text-align: left; |
| + width: 100px; |
| +} |