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

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

Issue 8298019: Implement InputWindowDialog with WebUI for bookmark folder management. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 'Address comments' Created 9 years, 2 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) 2011 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
6 html, body {
xiyuan 2011/10/18 16:11:32 nit: split into two lines. It's good to keep each
mazda 2011/10/18 17:32:02 Done.
7 background-color: #EEE;
8 height: 100%;
9 margin: 0;
10 overflow: hidden;
11 }
12
13 .vbox {
14 height: 100%;
15 width: 100%;
16 }
17
18 .input-area {
19 -webkit-box-align: center;
20 -webkit-box-pack: center;
21 display: -webkit-box;
22 height: 60%;
23 }
24
25 .buttons-area {
26 display: table;
27 float: right;
28 height: 100%;
29 margin-right: 8px;
30 width: auto;
31 }
32
33 .buttons-area > div {
34 display: table-cell;
35 padding: 3px;
36 vertical-align: top;
37 width: 50%;
38 }
39
40 button {
41 white-space: nowrap;
42 width: 100%;
43 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698