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

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

Issue 8438037: Change 'Add Page' to show a simple input dialog with --use-more-webui. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Address comments 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
OLDNEW
1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. 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 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. 3 * found in the LICENSE file.
4 */ 4 */
5 5
6 html, 6 html,
7 body { 7 body {
8 background-color: #EEE; 8 background-color: #EEE;
9 height: 100%; 9 height: 100%;
10 margin: 0; 10 margin: 0;
11 overflow: hidden; 11 overflow: hidden;
12 } 12 }
13 13
14 .vbox { 14 .vbox {
15 -webkit-box-align: center;
16 -webkit-box-orient: vertical;
17 -webkit-box-pack: center;
18 display: -webkit-box;
15 height: 100%; 19 height: 100%;
16 width: 100%; 20 width: 100%;
17 } 21 }
18 22
19 .input-area { 23 .vbox > div {
20 -webkit-box-align: center; 24 -webkit-box-align: center;
25 -webkit-box-flex: 1;
21 -webkit-box-pack: center; 26 -webkit-box-pack: center;
22 display: -webkit-box; 27 display: -webkit-box;
23 height: 60%; 28 width: 80%;
24 } 29 }
25 30
26 .buttons-area { 31 .vbox > div.area-hidden {
27 display: table; 32 display: none;
28 float: right; 33 }
29 height: 100%; 34
30 margin-right: 8px; 35 .vbox > div.buttons-area {
31 width: auto; 36 -webkit-box-pack: end;
32 } 37 }
33 38
34 .buttons-area > div { 39 .buttons-area > div {
35 display: table-cell;
36 padding: 3px; 40 padding: 3px;
37 vertical-align: top; 41 width: 30%;
38 width: 50%;
39 } 42 }
40 43
41 button { 44 button {
42 white-space: nowrap;
43 width: 100%; 45 width: 100%;
44 } 46 }
OLDNEW
« no previous file with comments | « chrome/browser/bookmarks/bookmark_input_window_dialog_controller.cc ('k') | chrome/browser/resources/input_window_dialog.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698