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

Side by Side Diff: chrome/browser/resources/chromeos/wallpaper_manager/main.html

Issue 10919253: Fix img misalign and hide "by" when nothing selected in new wallpaepr picker ui (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address reviews Created 8 years, 3 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 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <!-- 2 <!--
3 ------ 3 ------
4 Copyright (c) 2012 The Chromium Authors. All rights reserved. 4 Copyright (c) 2012 The Chromium Authors. All rights reserved.
5 Use of this source code is governed by a BSD-style license that can be 5 Use of this source code is governed by a BSD-style license that can be
6 found in the LICENSE file. 6 found in the LICENSE file.
7 --> 7 -->
8 <html i18n-values="dir:textdirection;"> 8 <html i18n-values="dir:textdirection;">
9 <head> 9 <head>
10 <title>Placeholder for Wallpaper Manager Main page</title> 10 <title>Placeholder for Wallpaper Manager Main page</title>
(...skipping 27 matching lines...) Expand all
38 <body> 38 <body>
39 <div class="dialog-container"> 39 <div class="dialog-container">
40 <div class="dialog-sidebar"> 40 <div class="dialog-sidebar">
41 <list id="categories-list"></list> 41 <list id="categories-list"></list>
42 </div> 42 </div>
43 <div class="sidebar-splitter"></div> 43 <div class="sidebar-splitter"></div>
44 <div class="dialog-main"> 44 <div class="dialog-main">
45 <div id="category-container"> 45 <div id="category-container">
46 <grid id="wallpaper-grid" class="image-picker"></grid> 46 <grid id="wallpaper-grid" class="image-picker"></grid>
47 <div class="bottom-bar"> 47 <div class="bottom-bar">
48 <div class="wallpaper-attr"> 48 <div id="wallpaper-attribute" hidden>
49 <div> 49 <div>
50 <label> 50 <label>
51 <span i18n-content="authorLabel"></span> 51 <span i18n-content="authorLabel"></span>
52 <strong id="author-name"></strong> 52 <strong id="author-name"></strong>
53 </label> 53 </label>
54 </div> 54 </div>
55 <div> 55 <div>
56 <a id="author-website"></a> 56 <a id="author-website"></a>
57 </div> 57 </div>
58 </div> 58 </div>
(...skipping 10 matching lines...) Expand all
69 i18n-content="centerCroppedLayout"></option> 69 i18n-content="centerCroppedLayout"></option>
70 <option value="STRETCH" i18n-content="stretchLayout"></option> 70 <option value="STRETCH" i18n-content="stretchLayout"></option>
71 </select> 71 </select>
72 <div i18n-content="previewLabel"></div> 72 <div i18n-content="previewLabel"></div>
73 <img id="preview"> 73 <img id="preview">
74 </div> 74 </div>
75 </div> 75 </div>
76 </div> 76 </div>
77 </body> 77 </body>
78 </html> 78 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698