tweaking for ports sidebar layout css

This commit is contained in:
Oliver Gorwits
2012-03-03 21:29:03 +00:00
parent 6efdfc8300
commit e9e84c817e
3 changed files with 47 additions and 24 deletions

View File

@@ -5,7 +5,7 @@
<a class="field_clear_icon" href="#"
rel="tooltip" data-placement="top" data-offset="3" title="Show all Ports">
<img src="[% uri_base %]/images/tango_sweep.png"/></a>
<input class="nd_port_query" placeholder="Port, Name or VLAN"
<input id="nd_port_query" placeholder="Port, Name or VLAN"
name="f" value="[% params.f %]" type="text"
rel="tooltip" data-placement="left" data-offset="5" title="Filter by Port, Name or VLAN"/>
</div>
@@ -62,18 +62,17 @@
Only Show Free Ports
</label>
</li>
<p></p>
<li>
<span rel="tooltip" data-placement="left"
data-offset="5" title="Free if Down for this period of time">
<select class="nd_days_select" name="age_num"/>
<select id="nd_days_select" name="age_num"/>
[% SET count = 1 %]
[% WHILE count < 32 %]
<option[% ' selected="selected"' IF params.age_num == count %]>[% count %]</option>
[% SET count = count + 1 %]
[% END %]
</select>
<select class="span2" name="age_unit"/>
<select id="nd_age_select" name="age_unit"/>
[% FOREACH unit IN [ 'days', 'weeks', 'months', 'years' ] %]
<option[% ' selected="selected"' IF params.age_unit == unit %]>[% unit %]</option>
[% END %]