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

Side by Side Diff: chrome/browser/resources/ntp4/new_tab.html

Issue 2726793004: [Resources] Use the new product logo in several places
Patch Set: Remove top margin on newtab logo Created 3 years, 9 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
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html class="starting-up" i18n-values="dir:textdirection; 2 <html class="starting-up" i18n-values="dir:textdirection;
3 bookmarkbarattached:bookmarkbarattached; 3 bookmarkbarattached:bookmarkbarattached;
4 lang:language"> 4 lang:language">
5 <head> 5 <head>
6 <meta charset="utf-8"> 6 <meta charset="utf-8">
7 <title i18n-content="title"></title> 7 <title i18n-content="title"></title>
8 <!-- Don't scale the viewport in either portrait or landscape mode. 8 <!-- Don't scale the viewport in either portrait or landscape mode.
9 Note that this means apps will be reflowed when rotated (like iPad). 9 Note that this means apps will be reflowed when rotated (like iPad).
10 If we wanted to maintain position we could remove 'maximum-scale' so 10 If we wanted to maintain position we could remove 'maximum-scale' so
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 <img src="app_launcher_promo.png"> 88 <img src="app_launcher_promo.png">
89 <button class="close-button custom-appearance" 89 <button class="close-button custom-appearance"
90 id="app-launcher-promo-close-button"> 90 id="app-launcher-promo-close-button">
91 </button> 91 </button>
92 </div> 92 </div>
93 93
94 <div id="footer"> 94 <div id="footer">
95 <div id="footer-border"></div> 95 <div id="footer-border"></div>
96 <div id="footer-content"> 96 <div id="footer-content">
97 <div id="logo-img"> 97 <div id="logo-img">
98 <img alt="" src="chrome://theme/IDR_PRODUCT_LOGO"> 98 <img alt="" src="chrome://theme/IDR_PRODUCT_LOGO_NAME_22">
99 </div> 99 </div>
100 100
101 <ul id="dot-list"> 101 <ul id="dot-list">
102 </ul> 102 </ul>
103 103
104 <div id="footer-menu-container" class="menu-container"> 104 <div id="footer-menu-container" class="menu-container">
105 <a id="chrome-web-store-link"> 105 <a id="chrome-web-store-link">
106 <span id="chrome-web-store-title" i18n-content="webStoreTitleShort"> 106 <span id="chrome-web-store-title" i18n-content="webStoreTitleShort">
107 </span> 107 </span>
108 </a> 108 </a>
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 </div> 151 </div>
152 <span class="title"></span> 152 <span class="title"></span>
153 </div> 153 </div>
154 154
155 </div> 155 </div>
156 156
157 <!-- This is used to measure text in the current locale. It is not visible. --> 157 <!-- This is used to measure text in the current locale. It is not visible. -->
158 <div id="fontMeasuringDiv"></div> 158 <div id="fontMeasuringDiv"></div>
159 159
160 </html> 160 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698