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

Side by Side Diff: experimental/webtry/templates/sidebar.html

Issue 638003008: Re-land ganesh checkbox. I needed to increase the size of the address (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 2 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 | « experimental/webtry/setup/setup_jail.sh ('k') | experimental/webtry/templates/template.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <section id="sidebar"> 1 <section id="sidebar">
2 <div class="panel panel-primary"> 2 <div class="panel panel-primary">
3 <div class="panel-heading"> 3 <div class="panel-heading">
4 <h3 class="panel-title"> 4 <h3 class="panel-title">
5 Options 5 Options
6 </h3> 6 </h3>
7 </div> 7 </div>
8 <div class="panel-body"> 8 <div class="panel-body">
9 <form class="form-horizontal" role="form"> 9 <form class="form-horizontal" role="form">
10 <div class="form-group"> 10 <div class="form-group">
11 <label for="image-width" class="col-sm-4 control-label">Width</label> 11 <label for="image-width" class="col-sm-4 control-label">Width</label>
12 <div class="col-sm-8"> 12 <div class="col-sm-8">
13 <input type="number" class="form-control" id="image-width" value="{{ .Width}}"> 13 <input type="number" class="form-control" id="image-width" value="{{ .Width}}">
14 </div> 14 </div>
15 </div> 15 </div>
16 <div class="form-group"> 16 <div class="form-group">
17 <label for="image-height" class="col-sm-4 control-label">Height</label > 17 <label for="image-height" class="col-sm-4 control-label">Height</label >
18 <div class="col-sm-8"> 18 <div class="col-sm-8">
19 <input type="number" class="form-control" id="image-height" value="{ {.Height}}"> 19 <input type="number" class="form-control" id="image-height" value="{ {.Height}}">
20 </div> 20 </div>
21 </div> 21 </div>
22 <div class="checkbox">
23 <label>
24 <input id="use-gpu" type="checkbox" value=""{{if .GPU}} checked{{end }}>
25 Ganesh
26 </label>
27 </div>
22 </form> 28 </form>
23 </div> 29 </div>
24 </div> 30 </div>
25 </section> 31 </section>
OLDNEW
« no previous file with comments | « experimental/webtry/setup/setup_jail.sh ('k') | experimental/webtry/templates/template.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698