From d95c85cdbed14ee5c04260092ba1b1465d61f1a6 Mon Sep 17 00:00:00 2001 From: idk <hankhill19580@gmail.com> Date: Thu, 21 Jan 2021 12:35:13 -0500 Subject: [PATCH] Fix the border-radius on the buttons and textareas in Address Book. Make the usage of Address Book agree on the titles. --- apps/routerconsole/jsp/dns.jsp | 2 +- apps/susidns/src/themes/light/susidns.css | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/routerconsole/jsp/dns.jsp b/apps/routerconsole/jsp/dns.jsp index 2ac829022b..5706c705fd 100644 --- a/apps/routerconsole/jsp/dns.jsp +++ b/apps/routerconsole/jsp/dns.jsp @@ -41,7 +41,7 @@ </script> </head><body> <%@include file="summary.jsi" %> -<h1><%=intl._t("I2P Addressbook")%> <span class="newtab"><a href="/susidns/index" target="_blank" title="<%=intl._t("Open in new tab")%>"><img src="<%=intl.getTheme(request.getHeader("User-Agent"))%>images/newtab.png" /></a></span></h1> +<h1><%=intl._t("I2P Address Book")%> <span class="newtab"><a href="/susidns/index" target="_blank" title="<%=intl._t("Open in new tab")%>"><img src="<%=intl.getTheme(request.getHeader("User-Agent"))%>images/newtab.png" /></a></span></h1> <div class="main" id="dns"> <iframe src="/susidns/index" width="100%" height="100%" frameborder="0" border="0" name="susidnsframe" id="susidnsframe" allowtransparency="true"> <%=intl._t("Your browser does not support iFrames.")%> diff --git a/apps/susidns/src/themes/light/susidns.css b/apps/susidns/src/themes/light/susidns.css index f41740e13a..75c4338cd5 100644 --- a/apps/susidns/src/themes/light/susidns.css +++ b/apps/susidns/src/themes/light/susidns.css @@ -520,7 +520,7 @@ textarea { font-family: "Droid Sans Mono", "Noto Mono", "Lucida Console", "DejaVu Sans Mono", monospace; font-size: 9pt; width: 100%; - border-radius: 2px; + border-radius: 6px; border: 1px solid #999daf; padding: 1px 3px; color: #33333f; @@ -542,7 +542,7 @@ textarea { } textarea[name="config"], textarea[name="content"] { - border-radius: 0; + border-radius: 6; box-shadow: none; border: 1px solid #dee2e6; background: #fafaff; @@ -1050,7 +1050,7 @@ input[type="submit"], input[type="reset"], .fakebutton { font: 9pt "Droid Sans", "Noto Sans", Ubuntu, "Segoe UI", "Lucida Grande", "Bitstream Vera Sans", Verdana, sans-serif; padding: 4px 3px; text-decoration: none; - border-radius: 2px; + border-radius: 12px; border: 1px solid #999daf; box-shadow: inset 0 0 0 1px #fff; background: #eee; -- GitLab