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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <div class="page hidden" id="addStartupPageOverlay"> 1 <div class="page hidden" id="addStartupPageOverlay">
2 <h1 i18n-content="addStartupPageTitle"></h1> 2 <h1 i18n-content="addStartupPageTitle"></h1>
3
4 <form id="addStartupPageForm"> 3 <form id="addStartupPageForm">
5 <label id="addURLBlock"><span 4 <div class="content-area">
6 i18n-content="addStartupPageURLLabel"></span> 5 <label id="addURLBlock"><span
7 <input type="url" id="addStartupPageURL"></label> 6 i18n-content="addStartupPageURLLabel"></span>
8 7 <input type="url" id="addStartupPageURL"></label>
9 <list id="addStartupRecentPageList"></list> 8 <list id="addStartupRecentPageList"></list>
10 9 </div>
11 <div class="action-area button-strip"> 10 <div class="action-area">
12 <button type="reset" 11 <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.
13 i18n-content="addStartupPageCancelButton"></button> 12 <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.
14 <button type="submit" id="addStartupPageAddButton" disabled 13 <div class="button-strip">
15 i18n-content="addStartupPageAddButton"></button> 14 <button type="reset"
15 i18n-content="addStartupPageCancelButton"></button>
16 <button type="submit" id="addStartupPageAddButton" disabled
17 i18n-content="addStartupPageAddButton"></button>
18 </div>
19 </span>
16 </div> 20 </div>
17 </form> 21 </form>
18 </div> 22 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698