Skip to content

Commit

Permalink
[WebUI] 1/2 Services - Removing the colon symbol to the right of a co…
Browse files Browse the repository at this point in the history
…ntrol label (librenms#13704)

In order to make the Services Add or Edit pages while adding a Service more visually consistent with other pages in the system, removed the colon simbol ":" to the very right of each control description, where present.

Regards
GG
  • Loading branch information
ilGino authored Jan 24, 2022
1 parent 8b67fea commit aaf8e37
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions includes/html/print-service-add.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<div class='alert alert-info'>Service will created for the specified Device.</div>
<div class='well well-lg'>
<div class='form-group'>
<label for='name' class='col-sm-2 control-label'>Name:</label>
<label for='name' class='col-sm-2 control-label'>Name</label>
<div class='col-sm-5'>
<input name='name' id='name' class='form-control input-sm'>
</div>
Expand All @@ -16,7 +16,7 @@
</div>
<div class='form-group'>
<input type='hidden' name='addsrv' value='yes'>
<label for='device' class='col-sm-2 control-label'>Device:</label>
<label for='device' class='col-sm-2 control-label'>Device</label>
<div class='col-sm-5'>
<select name='device' class='form-control input-sm'>
$devicesform
Expand All @@ -26,7 +26,7 @@
</div>
</div>
<div class='form-group'>
<label for='type' class='col-sm-2 control-label'>Check Type:</label>
<label for='type' class='col-sm-2 control-label'>Check Type</label>
<div class='col-sm-5'>
<select name='type' id='type' class='form-control input-sm'>
$servicesform
Expand All @@ -36,23 +36,23 @@
</div>
</div>
<div class='form-group'>
<label for='descr' class='col-sm-2 control-label'>Description:</label>
<label for='descr' class='col-sm-2 control-label'>Description</label>
<div class='col-sm-5'>
<textarea name='descr' id='descr' class='form-control input-sm' rows='5'></textarea>
</div>
<div class='col-sm-5'>
</div>
</div>
<div class='form-group'>
<label for='ip' class='col-sm-2 control-label'>Remote Host:</label>
<label for='ip' class='col-sm-2 control-label'>Remote Host</label>
<div class='col-sm-5'>
<input name='ip' id='ip' class='form-control input-sm' placeholder='IP Address or Hostname'>
</div>
<div class='col-sm-5'>
</div>
</div>
<div class='form-group'>
<label for='params' class='col-sm-2 control-label'>Parameters:</label>
<label for='params' class='col-sm-2 control-label'>Parameters</label>
<div class='col-sm-5'>
<input name='params' id='params' class='form-control input-sm'>
</div>
Expand All @@ -63,13 +63,13 @@
</div>
</div>
<div class='form-group'>
<label for='ignore' class='col-sm-2 control-label'>Ignore Alert Tag:</label>
<label for='ignore' class='col-sm-2 control-label'>Ignore Alert Tag</label>
<div class='col-sm-5'>
<input name='ignore' id='ignore' type='checkbox'>
</div>
</div>
<div class='form-group'>
<label for='disabled' class='col-sm-2 control-label'>Disable Polling and Alerting: </label>
<label for='disabled' class='col-sm-2 control-label'>Disable Polling and Alerting </label>
<div class='col-sm-5'>
<input name='disabled' id='disabled' type='checkbox'>
</div>
Expand Down

0 comments on commit aaf8e37

Please sign in to comment.