fixing line break problem, changing Cirrus' font url to protocol-relative URL
This commit is contained in:
parent
9fab39129a
commit
edbcd4b817
@ -64,7 +64,7 @@
|
|||||||
<td><div class="checkboxSwitch"><input type="checkbox" name="<? VAR Name ?>" id="opt_<? VAR Name ?>" value="true"<? IF Checked ?> checked="checked"<? ENDIF ?><? IF Disabled ?> disabled="disabled"<? ENDIF ?> /> <label for="opt_<? VAR Name ?>"></label> </div></td>
|
<td><div class="checkboxSwitch"><input type="checkbox" name="<? VAR Name ?>" id="opt_<? VAR Name ?>" value="true"<? IF Checked ?> checked="checked"<? ENDIF ?><? IF Disabled ?> disabled="disabled"<? ENDIF ?> /> <label for="opt_<? VAR Name ?>"></label> </div></td>
|
||||||
<td><? VAR DisplayName ?></td>
|
<td><? VAR DisplayName ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
<? ENDLOOP ?>
|
<? ENDLOOP ?>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
@ -77,7 +77,7 @@
|
|||||||
<? INC *Embed ?>
|
<? INC *Embed ?>
|
||||||
</div>
|
</div>
|
||||||
<? ENDIF ?>
|
<? ENDIF ?>
|
||||||
<? ENDLOOP ?>
|
<? ENDLOOP ?>
|
||||||
|
|
||||||
<div class="btn-group pull-right">
|
<div class="btn-group pull-right">
|
||||||
<input class="btn btn-danger" type="reset" value="Reset">
|
<input class="btn btn-danger" type="reset" value="Reset">
|
||||||
|
@ -58,7 +58,7 @@
|
|||||||
<option value="">Default</option>
|
<option value="">Default</option>
|
||||||
<? LOOP BindHostLoop ?>
|
<? LOOP BindHostLoop ?>
|
||||||
<option value="<? VAR BindHost ?>"<? IF Checked ?> selected="selected"<? ENDIF ?>><? VAR BindHost ?></option>
|
<option value="<? VAR BindHost ?>"<? IF Checked ?> selected="selected"<? ENDIF ?>><? VAR BindHost ?></option>
|
||||||
<? ENDLOOP ?>
|
<? ENDLOOP ?>
|
||||||
</select>
|
</select>
|
||||||
<? ELSE ?>
|
<? ELSE ?>
|
||||||
<input class="form-control" type="text" name="bindhost" value="<? VAR BindHost ?>"/>
|
<input class="form-control" type="text" name="bindhost" value="<? VAR BindHost ?>"/>
|
||||||
@ -81,7 +81,8 @@
|
|||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="inputServers" class="col-sm-2 control-label">Servers of this IRC network:</label>
|
<label for="inputServers" class="col-sm-2 control-label">Servers of this IRC network:</label>
|
||||||
<div class="col-sm-10">
|
<div class="col-sm-10">
|
||||||
<textarea class="form-control" name="servers" rows="5"><? LOOP ServerLoop ?><? VAR Server ?><? ENDLOOP ?></textarea>
|
<textarea class="form-control" name="servers" rows="5"><? LOOP ServerLoop ?><? VAR Server ?>
|
||||||
|
<? ENDLOOP ?></textarea>
|
||||||
<span class="help-block">One server per line, "host [[+]port] [password]", + means SSL</span>
|
<span class="help-block">One server per line, "host [[+]port] [password]", + means SSL</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -157,7 +158,7 @@
|
|||||||
<td><? VAR BufferCount ?></td>
|
<td><? VAR BufferCount ?></td>
|
||||||
<td><? VAR Options ?></td>
|
<td><? VAR Options ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
<? ENDLOOP ?>
|
<? ENDLOOP ?>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<? ENDIF ?>
|
<? ENDIF ?>
|
||||||
@ -196,7 +197,7 @@
|
|||||||
</td>
|
</td>
|
||||||
<td><? VAR Description ?></td>
|
<td><? VAR Description ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
<? ENDLOOP ?>
|
<? ENDLOOP ?>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
@ -205,7 +206,7 @@
|
|||||||
<h3>Module <? VAR ModName ?></h3>
|
<h3>Module <? VAR ModName ?></h3>
|
||||||
<? INC *Embed ?>
|
<? INC *Embed ?>
|
||||||
<? ENDIF ?>
|
<? ENDIF ?>
|
||||||
<? ENDLOOP ?>
|
<? ENDLOOP ?>
|
||||||
|
|
||||||
<div class="btn-group pull-right">
|
<div class="btn-group pull-right">
|
||||||
<input class="btn btn-danger" type="reset" value="Reset">
|
<input class="btn btn-danger" type="reset" value="Reset">
|
||||||
|
@ -46,7 +46,8 @@
|
|||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="inputAllowedIP" class="col-sm-2 control-label">Allowed IPs:</label>
|
<label for="inputAllowedIP" class="col-sm-2 control-label">Allowed IPs:</label>
|
||||||
<div class="col-sm-10">
|
<div class="col-sm-10">
|
||||||
<textarea class="form-control class="form-control" data-provide="markdown" id="inputAllowedIP" name="allowedips" cols="70" rows="5"><? LOOP AllowedHostLoop ?><? VAR Host ?><? ENDLOOP ?></textarea>
|
<textarea class="form-control class="form-control" data-provide="markdown" id="inputAllowedIP" name="allowedips" cols="70" rows="5"><? LOOP AllowedHostLoop ?><? VAR Host ?>
|
||||||
|
<? ENDLOOP ?></textarea>
|
||||||
<div class="alert alert-info help-block">Leave empty to allow connections from all IPs. Otherwise, one entry per line, wildcards * and ? are available.</div>
|
<div class="alert alert-info help-block">Leave empty to allow connections from all IPs. Otherwise, one entry per line, wildcards * and ? are available.</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -160,7 +161,7 @@
|
|||||||
<td><? VAR Server DEFAULT="-N/A-" ?></td>
|
<td><? VAR Server DEFAULT="-N/A-" ?></td>
|
||||||
<td><? VAR IRCNick ?></td>
|
<td><? VAR IRCNick ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
<? ENDLOOP ?>
|
<? ENDLOOP ?>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<? ELSE ?>
|
<? ELSE ?>
|
||||||
@ -203,7 +204,7 @@
|
|||||||
</td>
|
</td>
|
||||||
<td><? VAR Description ?></td>
|
<td><? VAR Description ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
<? ENDLOOP ?>
|
<? ENDLOOP ?>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
@ -251,7 +252,7 @@
|
|||||||
<b><? VAR DisplayName ?></b>
|
<b><? VAR DisplayName ?></b>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<? ENDLOOP ?>
|
<? ENDLOOP ?>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
@ -300,7 +301,8 @@
|
|||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="inputCTCPreplies" class="col-sm-2 control-label">CTCP Replies:</label>
|
<label for="inputCTCPreplies" class="col-sm-2 control-label">CTCP Replies:</label>
|
||||||
<div class="col-sm-10">
|
<div class="col-sm-10">
|
||||||
<textarea class="form-control" id="inputCTCPreplies" name="ctcpreplies" cols="70" rows="3"><? LOOP CTCPLoop ?><? VAR CTCP ?><? ENDLOOP ?></textarea>
|
<textarea class="form-control" id="inputCTCPreplies" name="ctcpreplies" cols="70" rows="3"><? LOOP CTCPLoop ?><? VAR CTCP ?>
|
||||||
|
<? ENDLOOP ?></textarea>
|
||||||
<div class="alert alert-info help-block">One reply per line. Example: TIME Buy a watch!</div>
|
<div class="alert alert-info help-block">One reply per line. Example: TIME Buy a watch!</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -313,7 +315,7 @@
|
|||||||
<option value="">- Global -</option>
|
<option value="">- Global -</option>
|
||||||
<? LOOP SkinLoop ?>
|
<? LOOP SkinLoop ?>
|
||||||
<option value="<? VAR Name ?>"<? IF Checked ?> selected="selected"<? ENDIF ?>><? IF Name == "_default_" ?>Default<? ELSE ?><? VAR Name ?><? ENDIF ?></option>
|
<option value="<? VAR Name ?>"<? IF Checked ?> selected="selected"<? ENDIF ?>><? IF Name == "_default_" ?>Default<? ELSE ?><? VAR Name ?><? ENDIF ?></option>
|
||||||
<? ENDLOOP ?>
|
<? ENDLOOP ?>
|
||||||
</select>
|
</select>
|
||||||
<? ELSE ?>
|
<? ELSE ?>
|
||||||
<p>No other skins found!</p>
|
<p>No other skins found!</p>
|
||||||
@ -333,7 +335,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<? ENDIF ?>
|
<? ENDIF ?>
|
||||||
<? ENDLOOP ?>
|
<? ENDLOOP ?>
|
||||||
|
|
||||||
<div class="btn-group pull-right">
|
<div class="btn-group pull-right">
|
||||||
<input class="btn btn-danger" type="reset" value="Reset">
|
<input class="btn btn-danger" type="reset" value="Reset">
|
||||||
|
@ -65,7 +65,7 @@
|
|||||||
<? ENDIF ?>
|
<? ENDIF ?>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<? ENDLOOP ?>
|
<? ENDLOOP ?>
|
||||||
<tr>
|
<tr>
|
||||||
<form action="add_listener" method="post">
|
<form action="add_listener" method="post">
|
||||||
<? INC _csrf_check.tmpl ?>
|
<? INC _csrf_check.tmpl ?>
|
||||||
@ -121,7 +121,7 @@
|
|||||||
<select class="form-control" id="inputSkins" name="skin">
|
<select class="form-control" id="inputSkins" name="skin">
|
||||||
<? LOOP SkinLoop ?>
|
<? LOOP SkinLoop ?>
|
||||||
<option value="<? VAR Name ?>"<? IF Checked ?> selected="selected"<? ENDIF ?>><? IF Name == "_default_" ?>Default<? ELSE ?><? VAR Name ?><? ENDIF ?></option>
|
<option value="<? VAR Name ?>"<? IF Checked ?> selected="selected"<? ENDIF ?>><? IF Name == "_default_" ?>Default<? ELSE ?><? VAR Name ?><? ENDIF ?></option>
|
||||||
<? ENDLOOP ?>
|
<? ENDLOOP ?>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -176,7 +176,8 @@
|
|||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="inputMOTD" class="col-sm-2 control-label">MOTD:</label>
|
<label for="inputMOTD" class="col-sm-2 control-label">MOTD:</label>
|
||||||
<div class="col-sm-10">
|
<div class="col-sm-10">
|
||||||
<textarea type="text" class="form-control" id="inputMOTD" name="motd" cols="70" rows="5" class="monospace"><? LOOP MOTDLoop ?><? VAR Line ?><? ENDLOOP ?></textarea>
|
<textarea type="text" class="form-control" id="inputMOTD" name="motd" cols="70" rows="5" class="monospace"><? LOOP MOTDLoop ?><? VAR Line ?>
|
||||||
|
<? ENDLOOP ?></textarea>
|
||||||
<div class="alert alert-info help-block">"Message of the Day", sent to all ZNC users on connect.</div>
|
<div class="alert alert-info help-block">"Message of the Day", sent to all ZNC users on connect.</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -184,10 +185,8 @@
|
|||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="inputBindHosts" class="col-sm-2 control-label">BindHosts:</label>
|
<label for="inputBindHosts" class="col-sm-2 control-label">BindHosts:</label>
|
||||||
<div class="col-sm-10">
|
<div class="col-sm-10">
|
||||||
<textarea type="text" class="form-control" id="inputBindHosts" name="bindhosts" rows="5">
|
<textarea type="text" class="form-control" id="inputBindHosts" name="bindhosts" rows="5"><? LOOP BindHostLoop ?><? VAR BindHost ?>
|
||||||
<? LOOP BindHostLoop ?>
|
<? ENDLOOP ?>
|
||||||
<? VAR BindHost ?>
|
|
||||||
<? ENDLOOP ?>
|
|
||||||
</textarea>
|
</textarea>
|
||||||
<div class="alert alert-info help-block">One host name or IP entry per line.</div>
|
<div class="alert alert-info help-block">One host name or IP entry per line.</div>
|
||||||
</div>
|
</div>
|
||||||
@ -225,7 +224,7 @@
|
|||||||
</td>
|
</td>
|
||||||
<td class="mod_descr"><? VAR Description ?></td>
|
<td class="mod_descr"><? VAR Description ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
<? ENDLOOP ?>
|
<? ENDLOOP ?>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
@ -239,4 +238,4 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<? INC Footer.tmpl ?>
|
<? INC Footer.tmpl ?>
|
||||||
|
@ -126,7 +126,7 @@
|
|||||||
<td><? VAR AllTotal TOP ?></td>
|
<td><? VAR AllTotal TOP ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
<? ENDIF ?>
|
<? ENDIF ?>
|
||||||
<? ENDLOOP ?>
|
<? ENDLOOP ?>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<? ENDIF ?>
|
<? ENDIF ?>
|
||||||
|
2
webskins/Cirrus/pub/bootstrap.css
vendored
2
webskins/Cirrus/pub/bootstrap.css
vendored
@ -1,4 +1,4 @@
|
|||||||
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,700,300,600);
|
@import url(//fonts.googleapis.com/css?family=Open+Sans:400,700,300,600);
|
||||||
/*!
|
/*!
|
||||||
* Cirrus v0.3.0
|
* Cirrus v0.3.0
|
||||||
*
|
*
|
||||||
|
4
webskins/Cirrus/pub/bootstrap.min.css
vendored
4
webskins/Cirrus/pub/bootstrap.min.css
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user