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

Side by Side Diff: chrome/browser/resources/snippets_internals.html

Issue 2893933002: [NTP] Mobile friendly buttons on snippets internals. (Closed)
Patch Set: clean rebase. Created 3 years, 7 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
« no previous file with comments | « chrome/browser/resources/snippets_internals.css ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!-- 1 <!--
2 Copyright 2016 The Chromium Authors. All rights reserved. 2 Copyright 2016 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. 4 found in the LICENSE file.
5 --> 5 -->
6 <!DOCTYPE html> 6 <!DOCTYPE html>
7 <meta charset="utf-8"> 7 <meta charset="utf-8">
8 <if expr="is_android or is_ios"> 8 <if expr="is_android or is_ios">
9 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 9 <meta name="viewport" content="width=device-width, initial-scale=1.0">
10 </if> 10 </if>
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 Fetch remote suggestions in the background 114 Fetch remote suggestions in the background
115 </button> 115 </button>
116 </div> 116 </div>
117 117
118 <div id="content-suggestions"> 118 <div id="content-suggestions">
119 <h2>Content suggestions by category 119 <h2>Content suggestions by category
120 <span class="detail">(click for details)</span> 120 <span class="detail">(click for details)</span>
121 <button id="submit-dump" type="button">Dump the list</button> 121 <button id="submit-dump" type="button">Dump the list</button>
122 </h2> 122 </h2>
123 <div jsselect="list" style="display:none"> 123 <div jsselect="list" style="display:none">
124 <h3> 124 <div>
125 <span jscontent="title"></span> 125 <h3 style="margin-bottom: 0px; padding-bottom: 0px;">
126 <span class="detail"> 126 <span jscontent="title"></span>
127 (id = <span jscontent="categoryId"></span>, 127 <span class="detail">
128 <span jscontent="status"></span>) 128 (id = <span jscontent="categoryId"></span>,
129 </span> 129 <span jscontent="status"></span>)
130 130 </span>
131 </h3>
132 </div>
133 <div class="vertical-buttons">
131 <button jsvalues="category-id:categoryId" type="button" 134 <button jsvalues="category-id:categoryId" type="button"
132 class="submit-clear-cached-suggestions"> 135 class="submit-clear-cached-suggestions">
133 Clear cached suggestions 136 Clear cached suggestions
134 </button> 137 </button>
135 <button jsvalues="category-id:categoryId" type="button" 138 <button jsvalues="category-id:categoryId" type="button"
136 class="toggle-dismissed-suggestions"> 139 class="toggle-dismissed-suggestions">
137 Show dismissed suggestions 140 Show dismissed suggestions
138 </button> 141 </button>
139 <button jsvalues="category-id:categoryId" type="button" 142 <button jsvalues="category-id:categoryId" type="button"
140 class="submit-clear-dismissed-suggestions"> 143 class="submit-clear-dismissed-suggestions">
141 Clear dismissed suggestions 144 Clear dismissed suggestions
142 </button> 145 </button>
143 </h3> 146 </div>
144 147
145 <table class="section-details"> 148 <table class="section-details">
146 <tr jsselect="suggestions" style="display:none"> 149 <tr jsselect="suggestions" style="display:none">
147 <td class="title-link"> 150 <td class="title-link">
148 <span class="hidden-toggler content-suggestion-title" 151 <span class="hidden-toggler content-suggestion-title"
149 jsvalues="hidden-id:id"> 152 jsvalues="hidden-id:id">
150 <span jscontent="title"></span>&gt;&gt; 153 <span jscontent="title"></span>&gt;&gt;
151 </span> 154 </span>
152 <div jsvalues="id:id" class="content-suggestion-detail hidden"> 155 <div jsvalues="id:id" class="content-suggestion-detail hidden">
153 <table> 156 <table>
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 <tr> 209 <tr>
207 <td>Publisher name 210 <td>Publisher name
208 <td jscontent="publisherName"> 211 <td jscontent="publisherName">
209 </table> 212 </table>
210 </div> 213 </div>
211 </table> 214 </table>
212 </div> 215 </div>
213 <div class="detail" id="content-suggestions-empty"></div> 216 <div class="detail" id="content-suggestions-empty"></div>
214 </div> 217 </div>
215 </div> 218 </div>
OLDNEW
« no previous file with comments | « chrome/browser/resources/snippets_internals.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698