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

@ -71,6 +71,11 @@
--textshadow: 0 1px 1px rgba(0,0,0.7);
}
::selection {
background: #d50;
color: #fff;
}
html, body {
min-height: 100%;
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%),
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;
white-space: normal;
}
.note::before {
@ -1033,6 +1039,17 @@ input[type=checkbox]:checked + label::after {
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) {
body {
font-size: 13pt !important;
@ -1097,6 +1114,18 @@ input[type=checkbox]:checked + label::after {
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"] {
max-width: 300px;
}