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

Unified Diff: chrome/browser/resources/options/add_startup_page_overlay.html

Issue 6372010: DOMUI: Refactor the new overlay style and apply it to all overlays. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/options/add_startup_page_overlay.html
diff --git a/chrome/browser/resources/options/add_startup_page_overlay.html b/chrome/browser/resources/options/add_startup_page_overlay.html
index c2f97d2667a951b71e5394e61d8b4591abb487c3..f5d059592747ef9487d5850f18904454c4960e1a 100644
--- a/chrome/browser/resources/options/add_startup_page_overlay.html
+++ b/chrome/browser/resources/options/add_startup_page_overlay.html
@@ -1,18 +1,22 @@
<div class="page hidden" id="addStartupPageOverlay">
<h1 i18n-content="addStartupPageTitle"></h1>
-
<form id="addStartupPageForm">
- <label id="addURLBlock"><span
- i18n-content="addStartupPageURLLabel"></span>
- <input type="url" id="addStartupPageURL"></label>
-
- <list id="addStartupRecentPageList"></list>
-
- <div class="action-area button-strip">
- <button type="reset"
- i18n-content="addStartupPageCancelButton"></button>
- <button type="submit" id="addStartupPageAddButton" disabled
- i18n-content="addStartupPageAddButton"></button>
+ <div class="content-area">
+ <label id="addURLBlock"><span
+ i18n-content="addStartupPageURLLabel"></span>
+ <input type="url" id="addStartupPageURL"></label>
+ <list id="addStartupRecentPageList"></list>
+ </div>
+ <div class="action-area">
+ <span class="action-area-left"></span>
stuartmorgan 2011/01/22 00:48:05 The empty element shouldn't be necessary everywher
James Hawkins 2011/01/22 01:39:22 Fixed, though using design per off-list.
+ <span>
stuartmorgan 2011/01/22 00:48:05 Span is an inline element; this should be div.
James Hawkins 2011/01/22 01:39:22 Done.
+ <div class="button-strip">
+ <button type="reset"
+ i18n-content="addStartupPageCancelButton"></button>
+ <button type="submit" id="addStartupPageAddButton" disabled
+ i18n-content="addStartupPageAddButton"></button>
+ </div>
+ </span>
</div>
</form>
</div>

Powered by Google App Engine
This is Rietveld 408576698