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

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: Rebase again Created 9 years, 1 month 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/browser_resources.grd ('k') | chrome/browser/resources/input_window_dialog.html » ('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) 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,
7 body {
8 background-color: #EEE;
9 height: 100%;
10 margin: 0;
11 overflow: hidden;
12 }
13
14 .vbox {
15 height: 100%;
16 width: 100%;
17 }
18
19 .input-area {
20 -webkit-box-align: center;
21 -webkit-box-pack: center;
22 display: -webkit-box;
23 height: 60%;
24 }
25
26 .buttons-area {
27 display: table;
28 float: right;
29 height: 100%;
30 margin-right: 8px;
31 width: auto;
32 }
33
34 .buttons-area > div {
35 display: table-cell;
36 padding: 3px;
37 vertical-align: top;
38 width: 50%;
39 }
40
41 button {
42 white-space: nowrap;
43 width: 100%;
44 }
OLDNEW
« no previous file with comments | « chrome/browser/browser_resources.grd ('k') | chrome/browser/resources/input_window_dialog.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698