Console: tweak router id presentation

This commit is contained in:
dr|z3d 2021-08-15 15:54:27 +00:00
parent 5a7c199eec
commit 1022a43407
2 changed files with 30 additions and 1 deletions

View file

@ -1100,7 +1100,7 @@ namespace http {
{ {
s << "<tr><th class=\"sectiontitle configuration\" colspan=\"2\"><span>" << tr("Router Configuration") << "</span></th></tr>"; s << "<tr><th class=\"sectiontitle configuration\" colspan=\"2\"><span>" << tr("Router Configuration") << "</span></th></tr>";
s << "<tr id=\"version\"><td>" << tr("Version") << "</td><td>" VERSION "</td></tr>\r\n"; s << "<tr id=\"version\"><td>" << tr("Version") << "</td><td>" VERSION "</td></tr>\r\n";
s << "<tr><td>" << tr("Router Ident") << "</td><td><span class=\"sensitive\" hidden>" s << "<tr><td>" << tr("Router Identity") << "</td><td class=\"nopadding\"><span id=\"rid\" class=\"sensitive\" hidden>"
<< i2p::context.GetRouterInfo().GetIdentHashBase64() << "</span></td></tr>\r\n"; << i2p::context.GetRouterInfo().GetIdentHashBase64() << "</span></td></tr>\r\n";
s << "<tr><td>" << tr("Router Caps") << "</td><td>" << i2p::context.GetRouterInfo().GetProperty("caps") << "</td></tr>\r\n"; s << "<tr><td>" << tr("Router Caps") << "</td><td>" << i2p::context.GetRouterInfo().GetProperty("caps") << "</td></tr>\r\n";
if (!i2p::context.GetRouterInfo().GetProperty("family").empty()) if (!i2p::context.GetRouterInfo().GetProperty("family").empty())

View file

@ -71,6 +71,11 @@
--textshadow: 0 1px 1px rgba(0,0,0.7); --textshadow: 0 1px 1px rgba(0,0,0.7);
} }
::selection {
background: #d50;
color: #fff;
}
html, body { html, body {
min-height: 100%; min-height: 100%;
background: var(--page); background: var(--page);
@ -379,6 +384,7 @@ select, option:hover, option:focus, option:active {
background: radial-gradient(at bottom center, rgba(48,8,48,.3), rgba(0,0,0,0) 70%), background: radial-gradient(at bottom center, rgba(48,8,48,.3), rgba(0,0,0,0) 70%),
linear-gradient(to bottom, rgba(32,0,32,.2), rgba(24,0,24,.2)); linear-gradient(to bottom, rgba(32,0,32,.2), rgba(24,0,24,.2));
box-shadow: inset 0 0 0 1px rgba(96,0,96,.2), 0 0 0 1px #000; box-shadow: inset 0 0 0 1px rgba(96,0,96,.2), 0 0 0 1px #000;
white-space: normal;
} }
.note::before { .note::before {
@ -1033,6 +1039,17 @@ input[type=checkbox]:checked + label::after {
width: 100%; width: 100%;
} }
#rid {
margin: 5px 8px;
padding: 2px 4px;
display: inline-block;
font-size: 80%;
border-radius: 2px;
background: #202;
user-select: all;
word-break: break-all;
}
@media screen and (max-width: 1000px) { @media screen and (max-width: 1000px) {
body { body {
font-size: 13pt !important; font-size: 13pt !important;
@ -1097,6 +1114,18 @@ input[type=checkbox]:checked + label::after {
width: auto; width: auto;
} }
#rid {
margin: 5px 10px;
padding: 0;
width: 200px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-size: 90%;
background: none;
vertical-align: middle;
}
.b32, .listitem a[href*="local_destination&b32"] { .b32, .listitem a[href*="local_destination&b32"] {
max-width: 300px; max-width: 300px;
} }