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

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

Issue 2576833002: Make some updates to extension iconography. (Closed)
Patch Set: add test Created 4 years 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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 <div class="login-status-row"> 134 <div class="login-status-row">
135 <div id="login-status-advanced-container"> 135 <div id="login-status-advanced-container">
136 <a is="action-link" id="login-status-advanced" 136 <a is="action-link" id="login-status-advanced"
137 i18n-content="login_status_advanced"></a> 137 i18n-content="login_status_advanced"></a>
138 </div> 138 </div>
139 <button id="login-status-dismiss" i18n-content="login_status_dismiss"> 139 <button id="login-status-dismiss" i18n-content="login_status_dismiss">
140 </button> 140 </button>
141 </div> 141 </div>
142 </div> 142 </div>
143 143
144 <!-- App Contents w/ Large Icon --> 144 <!-- App Contents -->
145 <div id="app-large-icon-template" class="app-contents"> 145 <div id="app-icon-template" class="app-contents">
146 <div class="app-img-container" aria-hidden="true"> 146 <div class="app-img-container" aria-hidden="true">
147 <img class="invisible" alt=""> 147 <img class="invisible" alt="">
148 </div> 148 </div>
149 <span class="title"></span> 149 <span class="title"></span>
150 </div> 150 </div>
151 151
152 <!-- App Contents w/ Small Icon -->
153 <div id="app-small-icon-template" class="app-contents">
154 <div class="app-icon-div" aria-hidden="true">
155 <div class="app-img-container">
156 <img class="invisible" alt="">
157 </div>
158 <div class="color-stripe"></div>
159 </div>
160 <span class="title"></span>
161 </div>
162
163 </div> 152 </div>
164 153
165 <!-- This is used to measure text in the current locale. It is not visible. --> 154 <!-- This is used to measure text in the current locale. It is not visible. -->
166 <div id="fontMeasuringDiv"></div> 155 <div id="fontMeasuringDiv"></div>
167 156
168 </html> 157 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698