Skip to content
This repository was archived by the owner on Apr 7, 2026. It is now read-only.

Commit a30ee3b

Browse files
committed
UI tweaks for consistency across browsers
1 parent acc6336 commit a30ee3b

2 files changed

Lines changed: 10 additions & 5 deletions

File tree

webapp/static/styles/style.css

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,9 @@ pre {
117117
max-height: 300px;
118118
}
119119

120+
select {
121+
width: 100%;
122+
}
120123

121124
.benchmarking-options {
122125
border: 2px solid #080808;
@@ -181,7 +184,7 @@ pre {
181184
.logo{
182185
color: #ddd;
183186
font-size: 35px;
184-
font-weight: 100;
187+
font-weight: 300;
185188
}
186189
.navbar-toggle {
187190
color: #fff;

webapp/templates/components/configuration.html

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@
2121
<!-- Problem Selection -->
2222
<div class="form-group">
2323
<label>Problem</label>
24-
<select name="problems" id="problems" class="form-control problem-cfg input-sm">
24+
<select name="problems" id="problems" class="problem-cfg">
2525
<option value="custom" selected="selected">Custom</option>
2626
</select>
2727
</div> <!-- Close Problem -->
2828

2929
<div class="form-group">
3030
<label>Robot Type</label>
31-
<select name="robot.type" id="robot_type" class="form-control problem-cfg input-sm">
31+
<select name="robot.type" id="robot_type" class="problem-cfg">
3232
</select>
3333
</div> <!-- Close Problem -->
3434
<!-- Custom problem upload -->
@@ -166,7 +166,7 @@
166166
<div role="tabpanel" class="tab-pane fade" id="planner">
167167
<div class="form-group">
168168
<label>Planner</label>
169-
<select name="planners" id="planners" class="form-control problem-cfg input-sm">
169+
<select name="planners" id="planners" class="problem-cfg">
170170
<!-- These options are filled in by loadPlanners() in configuration.js -->
171171
</select>
172172
</div>
@@ -178,7 +178,7 @@
178178
<!-- Optimization -->
179179
<div class="form-group">
180180
<label>Optimization Objective</label>
181-
<select name="objective" id="objective" class="form-control problem-cfg input-sm">
181+
<select name="objective" id="objective" class="problem-cfg">
182182
<option value="length" selected>Length</option>
183183
<option value="max_min_clearance">Maximize Min Clearance</option>
184184
<option value="mechanical_work">Mechanical Work</option>
@@ -188,6 +188,8 @@
188188
<label>Cost Threshold</label>
189189
<input type='number' name='objective.threshold' id='objective.threshold' value='10000' class="form-control problem-cfg input-sm"></input>
190190
</div>
191+
192+
More information about planners and their parameters can be found <a target="none" href="http://ompl.kavrakilab.org/planners.html">here</a>.
191193
</div>
192194
<!-- End Planner Configuration Tab -->
193195

0 commit comments

Comments
 (0)