Console: 2 column display of transit tunnels if > 8 & width > 1200px

This commit is contained in:
dr|z3d 2021-08-25 06:36:21 +00:00
parent ebb0c4c9e9
commit e481e8b267
2 changed files with 27 additions and 5 deletions

View file

@ -955,7 +955,7 @@ a:hover .host, a:focus .host, a:active .host {
text-align: right;
}
.latency {
.latency, .expiry {
padding: 2px 5px 2px 20px;
min-width: 40px;
display: inline-block;
@ -966,6 +966,11 @@ a:hover .host, a:focus .host, a:active .host {
border-radius: 2px;
}
.expiry {
margin-left: 10px;
float: none;
}
.latency.unknown {
color: var(--ink-faded);
}
@ -1410,6 +1415,12 @@ input[type=checkbox]:checked + label::after {
text-align: center;
}
#transit.list {
columns: 2;
column-gap: 1px;
column-rule: 1px solid var(--border2);
}
.hops {
min-width: 280px;
display: inline-block;
@ -1469,12 +1480,16 @@ input[type=checkbox]:checked + label::after {
background-position: 5px center;
}
.latency {
.latency, .expiry {
padding-top: 3px;
padding-bottom: 3px;
margin-left: 12px;
}
.expiry {
float: right;
}
.transferred {
min-width: 48px;
}