fixing line break problem, changing Cirrus' font url to protocol-relative URL

This commit is contained in:
root 2015-01-10 20:23:08 +00:00
parent 9fab39129a
commit edbcd4b817
7 changed files with 29 additions and 27 deletions

View File

@ -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>

View File

@ -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>
@ -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>

View File

@ -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,9 +185,7 @@
<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 ?>
<? VAR BindHost ?>
<? ENDLOOP ?> <? 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>

View File

@ -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
* *

View File

@ -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
* *
* Copyright 2013 Divshot, Inc. * Copyright 2013 Divshot, Inc.