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

Side by Side Diff: perf/res/imp/cluster.html

Issue 747953003: Fix update button on cluster summary so it doesn't fall outside the box. (Closed) Base URL: https://skia.googlesource.com/buildbot@master
Patch Set: Created 6 years, 1 month 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 | « no previous file | 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 The common.js file must be included before this file. 2 The common.js file must be included before this file.
3 3
4 This in an HTML Import-able file that contains the definitions 4 This in an HTML Import-able file that contains the definitions
5 for the following elements: 5 for the following elements:
6 6
7 <cluster-summary-sk> 7 <cluster-summary-sk>
8 <toggle-display-sk> 8 <toggle-display-sk>
9 <word-cloud-sk> 9 <word-cloud-sk>
10 10
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 <paper-shadow z="1"> 178 <paper-shadow z="1">
179 <div id=clStatus class="clStatus {{ {hidden: summary.ID == -1} | token List }} disabled" vertical layout> 179 <div id=clStatus class="clStatus {{ {hidden: summary.ID == -1} | token List }} disabled" vertical layout>
180 <p class="disabledMessage">You must be logged in to change the statu s.</p> 180 <p class="disabledMessage">You must be logged in to change the statu s.</p>
181 <paper-radio-group id=status selected="{{cachedStatus}}" horizontal layout> 181 <paper-radio-group id=status selected="{{cachedStatus}}" horizontal layout>
182 <b class=status>Status:</b> 182 <b class=status>Status:</b>
183 <paper-radio-button name="New" label="New"></paper-radio-button> 183 <paper-radio-button name="New" label="New"></paper-radio-button>
184 <paper-radio-button name="Ignore" label="Ignore"></paper-radio-but ton> 184 <paper-radio-button name="Ignore" label="Ignore"></paper-radio-but ton>
185 <paper-radio-button name="Bug" label="Bug"></paper-radio-button> 185 <paper-radio-button name="Bug" label="Bug"></paper-radio-button>
186 </paper-radio-group> 186 </paper-radio-group>
187 <paper-input value="{{summary.Message}}" label="Note" id="message">< /paper-input> 187 <paper-input value="{{summary.Message}}" label="Note" id="message">< /paper-input>
188 <paper-button flex self-end id=update>Update</paper-button> 188 <paper-button self-end id=update>Update</paper-button>
189 </div> 189 </div>
190 </paper-shadow> 190 </paper-shadow>
191 <toggle-display-sk>Word Cloud</toggle-display-sk> 191 <toggle-display-sk>Word Cloud</toggle-display-sk>
192 <word-cloud-sk items="{{summary.ParamSummaries}}"></word-cloud-sk> 192 <word-cloud-sk items="{{summary.ParamSummaries}}"></word-cloud-sk>
193 </div> 193 </div>
194 </div> 194 </div>
195 </template> 195 </template>
196 <script> 196 <script>
197 (function() { 197 (function() {
198 198
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
300 truncHash: function(value) { 300 truncHash: function(value) {
301 if (value) { 301 if (value) {
302 return value.substring(0, 7); 302 return value.substring(0, 7);
303 } 303 }
304 }, 304 },
305 305
306 }); 306 });
307 })(); 307 })();
308 </script> 308 </script>
309 </polymer-element> 309 </polymer-element>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698