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

Unified 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: 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/input_window_dialog.css
diff --git a/chrome/browser/resources/input_window_dialog.css b/chrome/browser/resources/input_window_dialog.css
index c7eadac80d2d3862253638f324ea0ee80bb36a8c..f83890e90ba8257bd7204869a8b54641c4b0572e 100644
--- a/chrome/browser/resources/input_window_dialog.css
+++ b/chrome/browser/resources/input_window_dialog.css
@@ -12,33 +12,31 @@ body {
}
.vbox {
+ -webkit-box-align: center;
+ -webkit-box-pack: center;
+ -webkit-box-orient: vertical;
flackr 2011/11/02 15:38:18 nit: Sort properties.
mazda 2011/11/07 09:59:23 Done.
+ display: -webkit-box;
height: 100%;
width: 100%;
}
-.input-area {
+.vbox > div {
-webkit-box-align: center;
+ -webkit-box-flex: 1;
-webkit-box-pack: center;
display: -webkit-box;
- height: 60%;
+ width: 80%;
}
-.buttons-area {
- display: table;
- float: right;
- height: 100%;
- margin-right: 8px;
- width: auto;
+.vbox > div.buttons-area {
+ -webkit-box-pack: end;
}
.buttons-area > div {
- display: table-cell;
padding: 3px;
- vertical-align: top;
- width: 50%;
+ width: 30%;
}
button {
- white-space: nowrap;
width: 100%;
}

Powered by Google App Engine
This is Rietveld 408576698