I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit d13e3d95 authored by z3d's avatar z3d
Browse files

The taming of the textarea. Part 1.

parent 64f1fe0b
Branches
Tags
No related merge requests found
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
<% if ("true".equals(System.getProperty("net.i2p.router.web.UpdateHandler.updateInProgress", "false"))) { %> <% if ("true".equals(System.getProperty("net.i2p.router.web.UpdateHandler.updateInProgress", "false"))) { %>
<i>Update In Progress</i><br /><br /> <i>Update In Progress</i><br /><br />
<% } else { %> <% } else { %>
<input type="submit" name="action" value="Check for update now" /><br /><br /> <input type="submit" name="action" value="Check for update now" /><hr />
<% } %> <% } %>
<tr><td><td> <tr><td><td>
<tr><td><b>News URL:</b> <tr><td><b>News URL:</b>
...@@ -47,11 +47,11 @@ ...@@ -47,11 +47,11 @@
<tr><td><b>eepProxy port:</b> <tr><td><b>eepProxy port:</b>
<td><input type="text" size="4" name="proxyPort" value="<jsp:getProperty name="updatehelper" property="proxyPort" />" /> <td><input type="text" size="4" name="proxyPort" value="<jsp:getProperty name="updatehelper" property="proxyPort" />" />
<tr><td><b>Update URLs:</b> <tr><td><b>Update URLs:</b>
<td><textarea name="updateURL" cols="90" rows="4" wrap="off"><jsp:getProperty name="updatehelper" property="updateURL" /></textarea> <td><textarea name="updateURL" cols="80" rows="8" wrap="off"><jsp:getProperty name="updatehelper" property="updateURL" /></textarea>
<tr><td><b>Trusted keys:</b> <tr><td><b>Trusted keys:</b>
<td><textarea name="trustedKeys" cols="90" rows="4" wrap="off"><jsp:getProperty name="updatehelper" property="trustedKeys" /></textarea> <td><textarea name="trustedKeys" cols="80" rows="8" wrap="off"><jsp:getProperty name="updatehelper" property="trustedKeys" /></textarea>
<tr><td><td> <tr><td><td>
<tr><td><td><input type="submit" name="action" value="Save" /> <input type="reset" value="Cancel" /> <tr><td><td><hr /><input type="submit" name="action" value="Save" /> <input type="reset" value="Cancel" />
</table> </table>
</form> </form>
</div> </div>
......
...@@ -477,13 +477,14 @@ textarea { ...@@ -477,13 +477,14 @@ textarea {
background-color: #001; background-color: #001;
color: #eef; color: #eef;
padding: 5px; padding: 5px;
margin: 5px -10px; margin: 0 0 5px 0;
border-radius: 4px; border-radius: 4px;
-moz-border-radius: 4px; -moz-border-radius: 4px;
-webkit-border-radius: 4px; -webkit-border-radius: 4px;
font-family: "Lucida Console", "DejaVu Sans Mono", Courier, mono; font-family: "Lucida Console", "DejaVu Sans Mono", Courier, mono;
font-size: 9pt; font-size: 9pt;
min-height: 100px; min-height: 100px;
border: 1px solid #99f;
} }
form {} form {}
\ No newline at end of file
...@@ -432,6 +432,7 @@ input:active { ...@@ -432,6 +432,7 @@ input:active {
color: #f60; color: #f60;
border: 1px solid #f60; border: 1px solid #f60;
} }
submit { submit {
background-color: #f00; background-color: #f00;
color: #eef; color: #eef;
...@@ -461,7 +462,7 @@ select { ...@@ -461,7 +462,7 @@ select {
textarea { textarea {
padding: 5px; padding: 5px;
margin: 5px -20px; margin: 0 10px 5px 10px;
background-color: #eef; background-color: #eef;
color: #003; color: #003;
border-radius: 4px; border-radius: 4px;
...@@ -470,6 +471,7 @@ textarea { ...@@ -470,6 +471,7 @@ textarea {
font-family: "Lucida Console", "DejaVu Sans Mono", Courier, mono; font-family: "Lucida Console", "DejaVu Sans Mono", Courier, mono;
font-size: 8pt; font-size: 8pt;
min-height: 128px; min-height: 128px;
border: 1px solid #001;
} }
form {} form {}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment